Stéphane Bisinger | 1 Aug 17:35
Picon
Favicon

Re: UTF-8 and some issues...

Hi again,
I am back with some news and some new questions...

First,

Stéphane Bisinger <metal_kj@...> wrote:

> I am trying to see how hard it could be to make
> centericq working with utf-8.

Now I can see more clearly the whole issue and I think
that in a couple of months it could be feasible, even
less if somebody is to join me on this effort!

I downloaded utf8cpp (the library in the article
someone mentioned), but it is just for utf8 and it
does not work with wchar_t types (which is what I
need). I think I will do a string class on my own that
works just like the string class, but with wchar_t
instead of char as a type. This way we could handle
not only utf-8, but most (if not all) wide-character
encodings.

My next major issue is the following: how do you
recognise, for example, a ctrl-x key combination from
a normal x?
Searching for an answer I could only understand that
from ctrl-a to ctrl-z translate to ascii 01 through 26
and that from alt-q to alt-m translate in a 0016
through 0050 sequence of characters. I also found that
(Continue reading)

Petr Pisar | 1 Aug 21:29
Picon

Re: UTF-8 and some issues...


Stéphane Bisinger wrote:
> Does anybody have some information on how to use
> ncurses with wide-character support?

It's a long I looked on ncursesw. As I remember, in the source code tar
ball is subdirectory with examples. Some of them do excercise with
ncursesw (e.g. ins_wide).

--Petr
Stéphane Bisinger | 1 Aug 21:46
Picon
Favicon

Re: UTF-8 and some issues...


--- Petr Pisar <petr.pisar@...> wrote:
> It's a long I looked on ncursesw. As I remember, in
> the source code tar
> ball is subdirectory with examples. Some of them do
> excercise with
> ncursesw (e.g. ins_wide).

Found them, thanks.
I'm studying that now ;)

Stéphane

		
___________________________________________________________ 
Copy addresses and emails from any email account to Yahoo! Mail - quick, easy and free. http://uk.docs.yahoo.com/trueswitch2.html
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

James Colby | 9 Aug 23:27

IRC and CTCP

List Members - 

I am a big fan of centerICQ, and I use it as my main IM client.  I would
also like to use it as my IRC client, but cICQ does not play nicely with
the IRC network that I typically use (irc.sorcery.net).  I was looking
into the policies of the network and of them is that they request a CTCP
VERSION from all connecting clients.  I am guessing that the reason why
I can't connect to this network is because cICQ does not respond to the
request.  Is there something that I can enable with cICQ to get it to
answer to this request?

Thanks for any help you may be able to give me.

James

_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

Daniel | 10 Aug 22:29

Re: I have a few suggestions...

On Wed, Jul 26, 2006 at 08:00:19PM -0700, Stephen wrote:
> greeting:
> --- Chris Brown <iceowl@...> wrote:
> 
> > These are the things that I find bothersome about
> > centericq, and I hope some
> > day these ideas will be implemented:
> > 
> > 1. Human-readable history files. Why don't the
> > ~/.centericq/user/history
> > files appear exactly as they do in onscreen
> > scrollback in cicq? I find it very irritating to try
> > to copy and paste large
> > blocks of a conversation from history with the
> > way it's currently structured.
> 
> A nice script to read your history:
> http://centericq.de/misc/cicqhist

or use mine. It's attached. not sure why it never got put up
centericq.de

Attachment (cicq2html.pl): text/x-perl, 4955 bytes
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/
(Continue reading)

Tiger!P | 10 Aug 22:31

Re: IRC and CTCP

On Wed, Aug 09, 2006 at 05:27:58PM -0400, James Colby wrote:
> I was looking
> into the policies of the network and of them is that they request a CTCP
> VERSION from all connecting clients.  I am guessing that the reason why
> I can't connect to this network is because cICQ does not respond to the
> request.  Is there something that I can enable with cICQ to get it to
> answer to this request?

Currently (version 4.21.0) reply's with that version number when a "/ctcp
<nick> version" is done to that client.
But maybe it does not handle an other request. I think I have heard of
something like that, but don't recall what is was exactly :-(

You might want to to a tcpdump with an other client that can connect to
your irc network and then again with centericq and see what the
differences are.

Tiger!P
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

Tiger!P | 10 Aug 22:51

Re: I have a few suggestions...

On Thu, Aug 10, 2006 at 01:29:11PM -0700, Daniel wrote:
> or use mine. It's attached. not sure why it never got put up
> centericq.de

I don't know either, but now it is online at
http://centericq.de/mis/cicq2html.pl

Tiger!P

--

-- 
A random quote:
Alles hat ein ende, nur die wurst hat zwei
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

Stéphane Bisinger | 11 Aug 23:19
Picon
Favicon

Needed help to clarify some functions

Hi all,
I am going on with my work to make centericq
compatible with wide-character encodings, but I am
really slowed down by some "dark corners" in the code
which are really hard to understand without any
documentation. These are the things I am having
difficulties to understand:

File: kkconsui/include/texteditor.h
struct editfile
What do they mean exactly x, y, sx and sy?

class texteditor
What is the meaning of the properties outx and abscol?
What is the purpose of the mark related functions?
(startmark(), copymark(), endmark()...) What is the
final effect on the program? How can I test changes in
those functions?
Same question about highlight related functions...
Can somebody explain me briefly what is the function
showline supposed to do? (it is quite large and it is
taking me quite a long time to understand it...)

I would be grateful if anyone could help me with these
small issues, pointers to documentation I may have
overlooked are welcome.

One more question, is there any reason why such large
use of char pointer is made instead of using the
string class? I could not understand if it was by some
(Continue reading)

Robin Shannon | 14 Aug 14:18
Picon
Gravatar

the online FAQ


G'day,

The part of the online FAQ <http://centericq.de/docs/faq.php> that points to mailing list posts is broken. They all point to a prayer to Saint Anthony.

Secondly, the online README is non-operational (i'm guessing by the "under construction" that this is a known problem). It is mentioned that we should have a version with our distribution. Now i am sure this is a stupid question, but where might it be on a standard (k)ubuntu box? I whereis-ed centericq and it wasn't in any of the directories it listed.

paz,
-rjs.

--
Hit me: <http://robin.shannon.id.au>
Jab me: <robin-e7pqfG5fA3RWo+R/V/U2/g@public.gmane.org>
Upgrade to kubuntu linux: < http://kubuntu.org/download.php>
Faith is under the left nipple. -- Martin Luther
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/
FunkyFish | 14 Aug 18:18
Picon

Re: the online FAQ

Hi

Robin Shannon wrote:
> [...] It is mentioned that
> we should have a version with our distribution. Now i am sure this is a
> stupid question, but where might it be on a standard (k)ubuntu box? I
> whereis-ed centericq and it wasn't in any of the directories it listed.

I cannot help you with your other problems, but with the package ;)
[1] is always a good point to start searching packages... For dapper,
the package is within the universe repository. You have to add this repo
to your source.lst. See [2] how to do this.

Greetings
-Sascha-

[1] http://packages.ubuntu.com
[2] https://help.ubuntu.com/community/Repositories/Ubuntu
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/


Gmane