Added Lua

This commit is contained in:
Sebastien Helleu 2006-02-11 10:10:26 +00:00
parent e7f730387f
commit 321a8a65ad
8 changed files with 80 additions and 28 deletions

19
FAQ
View File

@ -1,4 +1,4 @@
WeeChat FAQ, 2006-01-14
WeeChat FAQ, 2006-02-11
=======================
Intended audience:
@ -53,7 +53,7 @@ A: Because WeeChat is very light and has new features.
* many GUI (Curses, Gtk, wxWidgets, Qt)
* available in many languages
* nicklist available in all GUI
* extensible with scripts (Perl, Python, Ruby)
* extensible with plugins (C, Perl, Python, Ruby, Lua)
* horizontal and vertical window split
* infobar highlight
* FIFO pipe for remote control
@ -101,6 +101,7 @@ A: You can use /perl command to load scripts (default path is
~/.weechat/perl).
Note that scripts in ~/.weechat/perl/autoload are automatically loaded
when WeeChat is starting up.
Perl scripts are not compatible with X-chat and Irssi.
2.6
@ -112,18 +113,32 @@ A: You can use /python command to load scripts (default path is
~/.weechat/python).
Note that scripts in ~/.weechat/python/autoload are automatically loaded
when WeeChat is starting up.
Python scripts are not compatible with X-chat and Irssi.
2.7
================================================================================
Q: How can I load Ruby scripts?
Are Ruby scripts compatible with X-chat or/and Irssi ?
A: You can use /ruby command to load scripts (default path is
~/.weechat/ruby).
Note that scripts in ~/.weechat/ruby/autoload are automatically loaded
when WeeChat is starting up.
Ruby scripts are not compatible with X-chat and Irssi.
2.8
================================================================================
Q: How can I load Lua scripts?
Are Lua scripts compatible with X-chat or/and Irssi ?
A: You can use /lua command to load scripts (default path is
~/.weechat/lua).
Note that scripts in ~/.weechat/lua/autoload are automatically loaded
when WeeChat is starting up.
Lua scripts are not compatible with X-chat and Irssi.
3.1
================================================================================
Q: How should I report bugs?

20
FAQ.fr
View File

@ -1,4 +1,4 @@
WeeChat FAQ, 2006-01-14
WeeChat FAQ, 2006-02-11
=======================
Public concerné :
@ -56,7 +56,7 @@ R: Parce que WeeChat est tr
* plusieurs interfaces (Curses, Gtk, wxWidgets, Qt)
* disponible en plusieurs langues
* liste des pseudos disponible dans toutes les interfaces
* extensible par des scripts (Perl, Python, Ruby)
* extensible par des extensions (C, Perl, Python, Ruby, Lua)
* découpage de la fenêtre horizontalement et verticalement
* highlight dans la barre d'infos
* tube FIFO pour contrôle à distance
@ -106,6 +106,7 @@ R: La commande /perl permet de charger les scripts Perl (le chemin par d
est ~/.weechat/perl).
Notez que les scripts dans ~/.weechat/perl/autoload sont automatiquement
chargés par WeeChat lorsqu'il démarre.
Les scripts Perl ne sont pas compatibles avec X-chat ni Irssi.
2.6
@ -117,16 +118,31 @@ R: La commande /python permet de charger les scripts Python (le chemin par
défaut est ~/.weechat/python).
Notez que les scripts dans ~/.weechat/python/autoload sont automatiquement
chargés par WeeChat lorsqu'il démarre.
Les scripts Python ne sont pas compatibles avec X-chat ni Irssi.
2.7
================================================================================
Q: Comment puis-je charger des scripts Ruby ?
Les scripts Ruby sont-ils compatibles avec X-chat et/ou Irssi ?
R: La commande /ruby permet de charger les scripts Ruby (le chemin par
défaut est ~/.weechat/ruby).
Notez que les scripts dans ~/.weechat/ruby/autoload sont automatiquement
chargés par WeeChat lorsqu'il démarre.
Les scripts Ruby ne sont pas compatibles avec X-chat ni Irssi.
2.8
================================================================================
Q: Comment puis-je charger des scripts Lua ?
Les scripts Lua sont-ils compatibles avec X-chat et/ou Irssi ?
R: La commande /lua permet de charger les scripts Lua (le chemin par
défaut est ~/.weechat/lua).
Notez que les scripts dans ~/.weechat/lua/autoload sont automatiquement
chargés par WeeChat lorsqu'il démarre.
Les scripts Lua ne sont pas compatibles avec X-chat ni Irssi.
3.1

View File

@ -2,11 +2,7 @@ WeeChat - Installation instructions
===================================
1) Run './configure'
options: --enable-perl : enable Perl scripts
--disable-curses : do not build Curses interface
--enable-gtk : build Gtk+ interface (under development!)
--enable-qt : build Qt interface (not developed!)
--with-debug=X : X=1 for debug compilation, 2 for debug messages
(./configure --help so see options)
2) Run 'make'
@ -14,4 +10,4 @@ WeeChat - Installation instructions
4) Enjoy ! :-)
See AUTHORS for support, feel free to contact us for any problem ;)
See AUTHORS for support, feel free to contact us for any problem.

7
README
View File

@ -12,10 +12,10 @@ Features
* IRC chat client with multi-server connection
* many GUI (curses, Gtk, Qt) (1)
* small, fast and very light
* customizable and extensible with plugins (scripts Perl, Python, Ruby) (2)
* customizable and extensible with plugins (C, Perl, Python, Ruby, Lua)
* compliant with RFC 1459,2810,2811,2812,2813
* developed from scratch
* multi-platform (GNU/Linux, *BSD, Mac OS X, QNX, Windows & other) (3)
* multi-platform (GNU/Linux, *BSD, Mac OS X, QNX, Windows & other) (2)
* 100% GPL & free
@ -44,5 +44,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
---
(1) only Curses interface is available today
(2) only Perl and Python plugins are available today
(3) Windows is under construction
(2) Windows version is under construction

View File

@ -1,4 +1,4 @@
WeeChat FAQ, 2006-01-14
WeeChat FAQ, 2006-02-11
=======================
Intended audience:
@ -53,7 +53,7 @@ A: Because WeeChat is very light and has new features.
* many GUI (Curses, Gtk, wxWidgets, Qt)
* available in many languages
* nicklist available in all GUI
* extensible with scripts (Perl, Python, Ruby)
* extensible with plugins (C, Perl, Python, Ruby, Lua)
* horizontal and vertical window split
* infobar highlight
* FIFO pipe for remote control
@ -101,6 +101,7 @@ A: You can use /perl command to load scripts (default path is
~/.weechat/perl).
Note that scripts in ~/.weechat/perl/autoload are automatically loaded
when WeeChat is starting up.
Perl scripts are not compatible with X-chat and Irssi.
2.6
@ -112,18 +113,32 @@ A: You can use /python command to load scripts (default path is
~/.weechat/python).
Note that scripts in ~/.weechat/python/autoload are automatically loaded
when WeeChat is starting up.
Python scripts are not compatible with X-chat and Irssi.
2.7
================================================================================
Q: How can I load Ruby scripts?
Are Ruby scripts compatible with X-chat or/and Irssi ?
A: You can use /ruby command to load scripts (default path is
~/.weechat/ruby).
Note that scripts in ~/.weechat/ruby/autoload are automatically loaded
when WeeChat is starting up.
Ruby scripts are not compatible with X-chat and Irssi.
2.8
================================================================================
Q: How can I load Lua scripts?
Are Lua scripts compatible with X-chat or/and Irssi ?
A: You can use /lua command to load scripts (default path is
~/.weechat/lua).
Note that scripts in ~/.weechat/lua/autoload are automatically loaded
when WeeChat is starting up.
Lua scripts are not compatible with X-chat and Irssi.
3.1
================================================================================
Q: How should I report bugs?

View File

@ -1,4 +1,4 @@
WeeChat FAQ, 2006-01-14
WeeChat FAQ, 2006-02-11
=======================
Public concerné :
@ -56,7 +56,7 @@ R: Parce que WeeChat est tr
* plusieurs interfaces (Curses, Gtk, wxWidgets, Qt)
* disponible en plusieurs langues
* liste des pseudos disponible dans toutes les interfaces
* extensible par des scripts (Perl, Python, Ruby)
* extensible par des extensions (C, Perl, Python, Ruby, Lua)
* découpage de la fenêtre horizontalement et verticalement
* highlight dans la barre d'infos
* tube FIFO pour contrôle à distance
@ -106,6 +106,7 @@ R: La commande /perl permet de charger les scripts Perl (le chemin par d
est ~/.weechat/perl).
Notez que les scripts dans ~/.weechat/perl/autoload sont automatiquement
chargés par WeeChat lorsqu'il démarre.
Les scripts Perl ne sont pas compatibles avec X-chat ni Irssi.
2.6
@ -117,16 +118,31 @@ R: La commande /python permet de charger les scripts Python (le chemin par
défaut est ~/.weechat/python).
Notez que les scripts dans ~/.weechat/python/autoload sont automatiquement
chargés par WeeChat lorsqu'il démarre.
Les scripts Python ne sont pas compatibles avec X-chat ni Irssi.
2.7
================================================================================
Q: Comment puis-je charger des scripts Ruby ?
Les scripts Ruby sont-ils compatibles avec X-chat et/ou Irssi ?
R: La commande /ruby permet de charger les scripts Ruby (le chemin par
défaut est ~/.weechat/ruby).
Notez que les scripts dans ~/.weechat/ruby/autoload sont automatiquement
chargés par WeeChat lorsqu'il démarre.
Les scripts Ruby ne sont pas compatibles avec X-chat ni Irssi.
2.8
================================================================================
Q: Comment puis-je charger des scripts Lua ?
Les scripts Lua sont-ils compatibles avec X-chat et/ou Irssi ?
R: La commande /lua permet de charger les scripts Lua (le chemin par
défaut est ~/.weechat/lua).
Notez que les scripts dans ~/.weechat/lua/autoload sont automatiquement
chargés par WeeChat lorsqu'il démarre.
Les scripts Lua ne sont pas compatibles avec X-chat ni Irssi.
3.1

View File

@ -2,11 +2,7 @@ WeeChat - Installation instructions
===================================
1) Run './configure'
options: --enable-perl : enable Perl scripts
--disable-curses : do not build Curses interface
--enable-gtk : build Gtk+ interface (under development!)
--enable-qt : build Qt interface (not developed!)
--with-debug=X : X=1 for debug compilation, 2 for debug messages
(./configure --help so see options)
2) Run 'make'
@ -14,4 +10,4 @@ WeeChat - Installation instructions
4) Enjoy ! :-)
See AUTHORS for support, feel free to contact us for any problem ;)
See AUTHORS for support, feel free to contact us for any problem.

View File

@ -12,10 +12,10 @@ Features
* IRC chat client with multi-server connection
* many GUI (curses, Gtk, Qt) (1)
* small, fast and very light
* customizable and extensible with plugins (scripts Perl, Python, Ruby) (2)
* customizable and extensible with plugins (C, Perl, Python, Ruby, Lua)
* compliant with RFC 1459,2810,2811,2812,2813
* developed from scratch
* multi-platform (GNU/Linux, *BSD, Mac OS X, QNX, Windows & other) (3)
* multi-platform (GNU/Linux, *BSD, Mac OS X, QNX, Windows & other) (2)
* 100% GPL & free
@ -44,5 +44,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
---
(1) only Curses interface is available today
(2) only Perl and Python plugins are available today
(3) Windows is under construction
(2) Windows version is under construction