Menu

Tree [r1525] /
 History

HTTPS access


File Date Author Commit
 plugins 2013-03-01 lsitu [r1523] Fix the check for argument count in hook_fd.
 po 2012-06-19 zed [r1509] Typos in French
 src 2013-07-13 lifeispain [r1525] Avoid other potential hook problems
 AUTHORS 2002-11-28 zed [r2]
 COPYING 2002-11-28 zed [r2]
 ChangeLog 2012-07-07 lsitu [r1515] Make /ignore <nick> always add !*@* if <nick> d...
 HACKING 2004-06-27 zed [r585] HACKING: Mention nmake (Nigel Jones).
 INSTALL 2008-06-12 zed [r1303] === Bump to 2.8.6 ===
 INSTALL.w32 2007-07-01 zed [r1209] update
 Makefile.am 2003-06-12 zed [r355] add autogen.sh to EXTRA_DIST
 README 2012-07-14 lsitu [r1517] Slightly more up to date information. :)
 acinclude.m4 2006-07-29 zdra [r1052] missing updates.
 autogen.sh 2006-05-22 zed [r1009] * Update Automake & Autoconf macros (Brian Pepp...
 config.h.w32 2010-05-30 zed [r1439] === Bump version to 2.8.8 ===
 config.rpath 2005-06-20 zed [r769] faq.html: Mention Emacs bindings on Gnome 2.8+.
 configure.in 2012-07-14 lsitu [r1520] Add AC_USE_SYSTEM_EXTENSIONS since the extensio...
 faq.html 2010-05-16 zed [r1419] FAQ.HTML: Mention Vista/7, delete 98/ME.
 xchat.desktop 2010-06-18 zed [r1442] Add pl string to desktop file.
 xchat.ico 2003-01-18 zed [r108] *** empty log message ***
 xchat.png 2003-01-04 zed [r85] *** empty log message ***
 xchat.spec 2010-05-30 zed [r1438] Imported Fedora 13 spec file (minus ntlm and so...

Read Me

X-Chat README
~~~~~~~~~~~~~
 X-Chat ("xchat") Copyright (c) 1998-2010 By Peter Zelezny.

 This program is released under the GPL v2 with the additional exemption
 that compiling, linking, and/or using OpenSSL is allowed. You may
 provide binary packages linked to the OpenSSL libraries, provided that
 all other requirements of the GPL are met. 
 See file COPYING for details.


What is it?
~~~~~~~~~~~
 X-Chat is an IRC client for UNIX operating systems. I.R.C. is Internet
 Relay Chat, see http://irchelp.org for more information about IRC in
 general. Xchat runs on most BSD and POSIX compliant operating systems.


Requirements:
~~~~~~~~~~~~~
 * GTK+ 2.10 (this is available at http://www.gtk.org)
 * GLib 2.12 (GTK+ 2.10 requires GLib 2.12)

 X-Chat is known to work on, at least:

	* Linux
	* FreeBSD
	* OpenBSD
	* NetBSD
	* Solaris
	* AIX
	* IRIX
	* DEC/Compaq Tru64 UNIX
	* HP-UX 10.20 and 11
	* MacOS X
	* Windows XP/2000/Vista/7


Notes for packagers:
~~~~~~~~~~~~~~~~~~~~

 If you need your packages to work on i386, you don't need to compile with
 --disable-mmx, because it's also checked at run-time.


Python Scripts:
~~~~~~~~~~~~~~~
 Scripts for 1.8.x are not compatible, and a brand new interface has be
 written. Documentation can be found here: http://xchat.org/docs/.
 Consider using the Python interface for your scripts, it's a very nice
 API, allows for loading/unloading individual scripts, and gives you
 almost all the features of the C-Plugin API.


Perl Scripts:
~~~~~~~~~~~~~
 Perl 5.8 or newer is required.
 Scripts for 1.8.x are compatible with the following exceptions:

* IRC::command will not interpret %C, %B, %U etc.

* user_list and user_list_short:
  If a user has both op and voice, only the op flag will be 1.

* add_user_list/sub_user_list/clear_user_list
  These functions do nothing.

* notify_list
  Not implemented. Always returns an empty list.

* server_list
  Lists servers that are not connected aswell.

* Some print events may have new names and some were added.

* Text printed by scripts must now be UTF8.

* Text passed to scripts (via add_message_handler) will be encoded in UTF8.


Autoloading Perl Scripts and Plugins
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * X-Chat automatically loads, at startup:
	~/.xchat2/*.pl Perl scripts
	~/.xchat2/plugins/*.pl Perl scripts
	~/.xchat2/*.py Python scripts
	~/.xchat2/plugins/*.py Python scripts
	~/.xchat2/*.so Plugins
	$(libdir)/xchat/plugins/*.so plugins
	(this usually translates to /usr/lib/xchat/plugins/*.so)


Control Codes:
~~~~~~~~~~~~~~
 %%     -  A single percentage sign
 %C     -  Control-C (mIRC color code)
 %B     -  Bold Text
 %U     -  Underline Text
 %R     -  Reverse Text
 %O     -  Reset all Text attributes
 %XXX   -  ASCII XXX (where XXX is a decimal 3 digit number)
           (Eg: %007 sends a BEEP)

 %Cforeground,background will produce a color code, eg: %C03,10

 These are now disabled by default (see Settings > Prefs > Input Box).
 Instead you can insert the real codes via ctrl-k, ctrl-b and ctrl-o.