public
Description: X-Chat Aqua for Mac OS X
Homepage: http://xchataqua.sourceforge.net/
Clone URL: git://github.com/tycho/xchat-aqua.git
tycho (author)
Sat Jul 04 14:18:29 -0700 2009
commit  c075b9fb8d1f20d1e6e6c377cb6d9a36adffdb0d
tree    1d3427361ce4b8d254f24a349e830b28a0a65b65
parent  2932390c5608a04eb7d87dfa5949074c0389d75d
name age message
file .cvsignore Sat Dec 28 07:38:11 -0800 2002 *** empty log message *** [zed]
file .gitignore Loading commit data...
file AUTHORS Thu Nov 28 02:26:54 -0800 2002 Initial revision [zed]
file COPYING Thu Nov 28 02:26:54 -0800 2002 Initial revision [zed]
file ChangeLog Thu Mar 05 17:27:35 -0800 2009 Make xchat_send_modes available from Perl [lsitu]
file HACKING Sat Jun 26 22:44:12 -0700 2004 HACKING: Mention nmake (Nigel Jones). makefile.... [zed]
file INSTALL Thu Jun 12 01:37:44 -0700 2008 === Bump to 2.8.6 === [zed]
file INSTALL.w32 Sun Jul 01 04:13:55 -0700 2007 update [zed]
file Makefile.am Thu Jun 12 05:59:44 -0700 2003 add autogen.sh to EXTRA_DIST [zed]
file README Tue Feb 10 21:18:14 -0800 2009 README: updated to reflect X-Chat Aqua data Si... [tycho]
file acinclude.m4 Sat Jul 29 11:09:02 -0700 2006 missing updates. [zdra]
directory aqua/
file autogen.sh Mon May 22 07:47:10 -0700 2006 * Update Automake & Autoconf macros (Brian Pepp... [zed]
file config.h.w32 Thu Jun 12 01:37:44 -0700 2008 === Bump to 2.8.6 === [zed]
file config.rpath Mon Jun 20 07:09:49 -0700 2005 faq.html: Mention Emacs bindings on Gnome 2.8+.... [zed]
file configure.in Sun Mar 08 17:44:52 -0700 2009 add Polish translation [zed]
directory docs/ Sat Jul 26 02:40:43 -0700 2003 - added new section for server list [romanofski]
file faq.html Fri Aug 29 03:56:50 -0700 2008 faq.html: update TP URL. xtext.c: Make scrollin... [zed]
directory plugins/
directory po/ Sun Mar 08 17:44:52 -0700 2009 add Polish translation [zed]
directory src/
file xchat.desktop Sat Jun 30 21:32:37 -0700 2007 === Bump to 2.8.4 === [zed]
file xchat.ico Fri Jan 17 18:58:16 -0800 2003 *** empty log message *** [zed]
file xchat.png Sat Jan 04 00:55:32 -0800 2003 *** empty log message *** [zed]
file xchat.spec Thu Jun 12 01:37:44 -0700 2008 === Bump to 2.8.6 === [zed]
README
X-Chat Aqua README
~~~~~~~~~~~~~
 X-Chat ("xchat") Copyright (c) 1998-2006 By Peter Zelezny.
 X-Chat Aqua Copyright (c) 2003-2009 by Steve Green.

 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.

 X-Chat Aqua is a Mac OS X-specific version of X-Chat which utilizes the
 Cocoa API and is written in Objective-C.


Requirements:
~~~~~~~~~~~~~
 X-Chat Aqua is designed to run on Mac OS X 10.4 and above.


Python Scripts:
~~~~~~~~~~~~~~~
 Scripts for X-Chat 1.8.x are not compatible, and a brand new interface
 has been 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:
~~~~~~~~~~~~~
 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/*.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.