summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2006-02-11 10:10:26 +0000
committerSebastien Helleu <flashcode@flashtux.org>2006-02-11 10:10:26 +0000
commit321a8a65ad1cae9a4c4d98ec005012a87c1d03bb (patch)
tree5a777ef8ead70e653ad5dda84dfbedf7d10067dd
parente7f730387f01b2a251fb343a9bba86a855c409a0 (diff)
downloadweechat-321a8a65ad1cae9a4c4d98ec005012a87c1d03bb.zip
Added Lua
-rw-r--r--FAQ19
-rw-r--r--FAQ.fr20
-rw-r--r--INSTALL8
-rw-r--r--README7
-rw-r--r--weechat/FAQ19
-rw-r--r--weechat/FAQ.fr20
-rw-r--r--weechat/INSTALL8
-rw-r--r--weechat/README7
8 files changed, 80 insertions, 28 deletions
diff --git a/FAQ b/FAQ
index 932bf4938..da98848eb 100644
--- a/FAQ
+++ b/FAQ
@@ -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?
diff --git a/FAQ.fr b/FAQ.fr
index 6b51f9106..5b2b9ed86 100644
--- a/FAQ.fr
+++ b/FAQ.fr
@@ -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ès léger et a de nouvelles fonctionnalités.
* 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éfaut
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
diff --git a/INSTALL b/INSTALL
index 60680b026..994120f9e 100644
--- a/INSTALL
+++ b/INSTALL
@@ -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.
diff --git a/README b/README
index d2326046c..198137162 100644
--- a/README
+++ b/README
@@ -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
diff --git a/weechat/FAQ b/weechat/FAQ
index 932bf4938..da98848eb 100644
--- a/weechat/FAQ
+++ b/weechat/FAQ
@@ -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?
diff --git a/weechat/FAQ.fr b/weechat/FAQ.fr
index 6b51f9106..5b2b9ed86 100644
--- a/weechat/FAQ.fr
+++ b/weechat/FAQ.fr
@@ -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ès léger et a de nouvelles fonctionnalités.
* 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éfaut
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
diff --git a/weechat/INSTALL b/weechat/INSTALL
index 60680b026..994120f9e 100644
--- a/weechat/INSTALL
+++ b/weechat/INSTALL
@@ -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.
diff --git a/weechat/README b/weechat/README
index d2326046c..198137162 100644
--- a/weechat/README
+++ b/weechat/README
@@ -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