mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 12:26:40 +02:00
Add parentheses around exponents in user guide and plugin API reference
This commit is contained in:
@@ -5478,13 +5478,13 @@ Arguments:
|
||||
|========================================
|
||||
| Plugin | Signal | Arguments | Description
|
||||
|
||||
| irc | xxx,irc_in_yyy ^1^ | string: message |
|
||||
| irc | xxx,irc_in_yyy ^(1)^ | string: message |
|
||||
irc message from server (before irc plugin uses it)
|
||||
|
||||
| irc | xxx,irc_in2_yyy ^1^ | string: message |
|
||||
| irc | xxx,irc_in2_yyy ^(1)^ | string: message |
|
||||
irc message from server (after irc plugin uses it)
|
||||
|
||||
| irc | xxx,irc_out_yyy ^1^ | string: message |
|
||||
| irc | xxx,irc_out_yyy ^(1)^ | string: message |
|
||||
irc message sent to server
|
||||
|
||||
| irc | irc_ctcp | string: message |
|
||||
@@ -5657,7 +5657,7 @@ Arguments:
|
||||
|========================================
|
||||
|
||||
[NOTE]
|
||||
^1^ 'xxx' is IRC server name, 'yyy' is IRC command name.
|
||||
^(1)^ 'xxx' is IRC server name, 'yyy' is IRC command name.
|
||||
|
||||
* 'callback': function called when signal is received, arguments:
|
||||
** 'void *data': pointer
|
||||
@@ -5966,17 +5966,17 @@ Arguments:
|
||||
any string |
|
||||
string with IRC color codes, or without color
|
||||
|
||||
| irc | irc_in_xxx ^1^ |
|
||||
| irc | irc_in_xxx ^(1)^ |
|
||||
server name |
|
||||
content of message received from IRC server |
|
||||
new content of message
|
||||
|
||||
| irc | irc_out_xxx ^1^ |
|
||||
| irc | irc_out_xxx ^(1)^ |
|
||||
server name |
|
||||
content of message about to be sent to IRC server |
|
||||
new content of message
|
||||
|
||||
| weechat | bar_condition_yyy ^2^ |
|
||||
| weechat | bar_condition_yyy ^(2)^ |
|
||||
string with window pointer ("0x123..") |
|
||||
empty string |
|
||||
"1" to display bar, "0" to hide it
|
||||
@@ -6003,8 +6003,8 @@ Arguments:
|
||||
|========================================
|
||||
|
||||
[NOTE]
|
||||
^1^ 'xxx' is IRC command name. +
|
||||
^2^ 'yyy' is bar name.
|
||||
^(1)^ 'xxx' is IRC command name. +
|
||||
^(2)^ 'yyy' is bar name.
|
||||
|
||||
* 'callback': function called when modifier is used, arguments:
|
||||
** 'void *data': pointer
|
||||
|
||||
+17
-17
@@ -84,26 +84,26 @@ compile WeeChat.
|
||||
|
||||
[width="80%",cols="4,^2,13",options="header"]
|
||||
|========================================
|
||||
| Package ^1^ | Required | Feature
|
||||
| cmake | *yes* | build (autotools still possible, but cmake is recommended)
|
||||
| libncursesw5-dev ^2^ | *yes* | ncurses interface
|
||||
| libgcrypt11-dev | no | SASL authentication with IRC server, using mechanism DH-BLOWFISH
|
||||
| libgnutls-dev | no | SSL connection to IRC server
|
||||
| libaspell-dev | no | aspell plugin
|
||||
| libperl-dev | no | perl plugin
|
||||
| python-dev | no | python plugin
|
||||
| ruby1.8-dev | no | ruby plugin
|
||||
| liblua5.1-0-dev | no | lua plugin
|
||||
| tcl-dev | no | tcl plugin
|
||||
| asciidoc (>= 8.2) | no | build documentation (HTML files)
|
||||
| source-highlight | no | syntax highlight for sources in HTML documentation
|
||||
| Package ^(1)^ | Required | Feature
|
||||
| cmake | *yes* | build (autotools still possible, but cmake is recommended)
|
||||
| libncursesw5-dev ^(2)^ | *yes* | ncurses interface
|
||||
| libgcrypt11-dev | no | SASL authentication with IRC server, using mechanism DH-BLOWFISH
|
||||
| libgnutls-dev | no | SSL connection to IRC server
|
||||
| libaspell-dev | no | aspell plugin
|
||||
| libperl-dev | no | perl plugin
|
||||
| python-dev | no | python plugin
|
||||
| ruby1.8-dev | no | ruby plugin
|
||||
| liblua5.1-0-dev | no | lua plugin
|
||||
| tcl-dev | no | tcl plugin
|
||||
| asciidoc (>= 8.2) | no | build documentation (HTML files)
|
||||
| source-highlight | no | syntax highlight for sources in HTML documentation
|
||||
|========================================
|
||||
|
||||
[NOTE]
|
||||
^1^ name comes from GNU/Linux Debian distribution, version in package name can
|
||||
be different +
|
||||
^2^ WeeChat can compile with libncurses5-dev, but it is *NOT* recommended (you
|
||||
will have display bugs with wide chars)
|
||||
^(1)^ Name comes from GNU/Linux Debian distribution, version in package name can
|
||||
be different. +
|
||||
^(2)^ WeeChat can compile with libncurses5-dev, but it is *NOT* recommended (you
|
||||
will have display bugs with wide chars).
|
||||
|
||||
[[compile_with_cmake]]
|
||||
Compile with cmake
|
||||
|
||||
@@ -5551,13 +5551,13 @@ Paramètres :
|
||||
|========================================
|
||||
| Extension | Signal | Paramètres | Description
|
||||
|
||||
| irc | xxx,irc_in_yyy ^1^ | chaîne : message |
|
||||
| irc | xxx,irc_in_yyy ^(1)^ | chaîne : message |
|
||||
message irc du serveur (avant utilisation par l'extension irc)
|
||||
|
||||
| irc | xxx,irc_in2_yyy ^1^ | chaîne : message |
|
||||
| irc | xxx,irc_in2_yyy ^(1)^ | chaîne : message |
|
||||
message irc du serveur (après utilisation par l'extension irc)
|
||||
|
||||
| irc | xxx,irc_out_yyy ^1^ | chaîne : message |
|
||||
| irc | xxx,irc_out_yyy ^(1)^ | chaîne : message |
|
||||
message irc envoyé au serveur
|
||||
|
||||
| irc | irc_ctcp | chaîne : message |
|
||||
@@ -5730,7 +5730,7 @@ Paramètres :
|
||||
|========================================
|
||||
|
||||
[NOTE]
|
||||
^1^ 'xxx' est le nom du serveur IRC, 'yyy' est le nom d'une commande IRC.
|
||||
^(1)^ 'xxx' est le nom du serveur IRC, 'yyy' est le nom d'une commande IRC.
|
||||
|
||||
* 'callback' : fonction appelée quand le signal est reçu, paramètres :
|
||||
** 'void *data' : pointeur
|
||||
@@ -6048,17 +6048,17 @@ Paramètres :
|
||||
toute chaîne |
|
||||
chaîne avec des codes couleur IRC, ou sans couleur
|
||||
|
||||
| irc | irc_in_xxx ^1^ |
|
||||
| irc | irc_in_xxx ^(1)^ |
|
||||
nom de serveur |
|
||||
contenu du message reçu du serveur IRC |
|
||||
nouveau contenu du message
|
||||
|
||||
| irc | irc_out_xxx ^1^ |
|
||||
| irc | irc_out_xxx ^(1)^ |
|
||||
nom de serveur |
|
||||
contenu du message qui va être envoyé au serveur IRC |
|
||||
nouveau contenu du message
|
||||
|
||||
| weechat | bar_condition_yyy ^2^ |
|
||||
| weechat | bar_condition_yyy ^(2)^ |
|
||||
chaîne avec un pointeur vers la fenêtre ("0x123..") |
|
||||
chaîne vide |
|
||||
"1" pour afficher la barre, "0" pour la cacher
|
||||
@@ -6087,8 +6087,8 @@ Paramètres :
|
||||
|========================================
|
||||
|
||||
[NOTE]
|
||||
^1^ 'xxx' est un nom de commande IRC. +
|
||||
^2^ 'yyy' est le nom de la barre.
|
||||
^(1)^ 'xxx' est un nom de commande IRC. +
|
||||
^(2)^ 'yyy' est le nom de la barre.
|
||||
|
||||
* 'callback' : fonction appelée lorsque le "modifieur" est utilisé, paramètres :
|
||||
** 'void *data' : pointeur
|
||||
|
||||
+17
-17
@@ -86,26 +86,26 @@ compiler WeeChat.
|
||||
|
||||
[width="80%",cols="4,^2,13",options="header"]
|
||||
|========================================
|
||||
| Paquet ^1^ | Requis | Fonctionnalité
|
||||
| cmake | *oui* | construction (autotools toujours possible, mais cmake est recommandé)
|
||||
| libncursesw5-dev ^2^ | *oui* | interface ncurses
|
||||
| libgcrypt11-dev | non | authentification SASL avec le serveur IRC, en utilisant le mécanisme DH-BLOWFISH
|
||||
| libgnutls-dev | non | connexion SSL au serveur IRC
|
||||
| libaspell-dev | non | extension aspell
|
||||
| libperl-dev | non | extension perl
|
||||
| python-dev | non | extension python
|
||||
| ruby1.8-dev | non | extension ruby
|
||||
| liblua5.1-0-dev | non | extension lua
|
||||
| tcl-dev | non | extension tcl
|
||||
| asciidoc (>= 8.2) | non | construction de la documentation (fichiers HTML)
|
||||
| source-highlight | non | coloration des sources dans la documentation HTML
|
||||
| Paquet ^(1)^ | Requis | Fonctionnalité
|
||||
| cmake | *oui* | construction (autotools toujours possible, mais cmake est recommandé)
|
||||
| libncursesw5-dev ^(2)^ | *oui* | interface ncurses
|
||||
| libgcrypt11-dev | non | authentification SASL avec le serveur IRC, en utilisant le mécanisme DH-BLOWFISH
|
||||
| libgnutls-dev | non | connexion SSL au serveur IRC
|
||||
| libaspell-dev | non | extension aspell
|
||||
| libperl-dev | non | extension perl
|
||||
| python-dev | non | extension python
|
||||
| ruby1.8-dev | non | extension ruby
|
||||
| liblua5.1-0-dev | non | extension lua
|
||||
| tcl-dev | non | extension tcl
|
||||
| asciidoc (>= 8.2) | non | construction de la documentation (fichiers HTML)
|
||||
| source-highlight | non | coloration des sources dans la documentation HTML
|
||||
|========================================
|
||||
|
||||
[NOTE]
|
||||
^1^ le nom provient de la distribution GNU/Linux Debian, la version dans le nom
|
||||
du paquet peut être différente +
|
||||
^2^ WeeChat peut compiler avec libncurses5-dev, mais ce n'est *PAS* recommandé
|
||||
(vous aurez des bugs d'affichage avec les caractères larges)
|
||||
^(1)^ Le nom provient de la distribution GNU/Linux Debian, la version dans le
|
||||
nom du paquet peut être différente. +
|
||||
^(2)^ WeeChat peut compiler avec libncurses5-dev, mais ce n'est *PAS* recommandé
|
||||
(vous aurez des bugs d'affichage avec les caractères larges).
|
||||
|
||||
[[compile_with_cmake]]
|
||||
Compilation avec cmake
|
||||
|
||||
+17
-17
@@ -88,26 +88,26 @@ compile WeeChat.
|
||||
|
||||
[width="80%",cols="4,^2,13",options="header"]
|
||||
|========================================
|
||||
| Package ^1^ | Required | Feature
|
||||
| cmake | *yes* | build (autotools still possible, but cmake is recommended)
|
||||
| libncursesw5-dev ^2^ | *yes* | ncurses interface
|
||||
| libgcrypt11-dev | no | SASL authentication with IRC server, using mechanism DH-BLOWFISH
|
||||
| libgnutls-dev | no | SSL connection to IRC server
|
||||
| libaspell-dev | no | aspell plugin
|
||||
| libperl-dev | no | perl plugin
|
||||
| python-dev | no | python plugin
|
||||
| ruby1.8-dev | no | ruby plugin
|
||||
| liblua5.1-0-dev | no | lua plugin
|
||||
| tcl-dev | no | tcl plugin
|
||||
| asciidoc (>= 8.2) | no | build documentation (HTML files)
|
||||
| source-highlight | no | syntax highlight for sources in HTML documentation
|
||||
| Package ^(1)^ | Required | Feature
|
||||
| cmake | *yes* | build (autotools still possible, but cmake is recommended)
|
||||
| libncursesw5-dev ^(2)^ | *yes* | ncurses interface
|
||||
| libgcrypt11-dev | no | SASL authentication with IRC server, using mechanism DH-BLOWFISH
|
||||
| libgnutls-dev | no | SSL connection to IRC server
|
||||
| libaspell-dev | no | aspell plugin
|
||||
| libperl-dev | no | perl plugin
|
||||
| python-dev | no | python plugin
|
||||
| ruby1.8-dev | no | ruby plugin
|
||||
| liblua5.1-0-dev | no | lua plugin
|
||||
| tcl-dev | no | tcl plugin
|
||||
| asciidoc (>= 8.2) | no | build documentation (HTML files)
|
||||
| source-highlight | no | syntax highlight for sources in HTML documentation
|
||||
|========================================
|
||||
|
||||
[NOTE]
|
||||
^1^ name comes from GNU/Linux Debian distribution, version in package name can
|
||||
be different +
|
||||
^2^ WeeChat can compile with libncurses5-dev, but it is *NOT* recommended (you
|
||||
will have display bugs with wide chars)
|
||||
^(1)^ Name comes from GNU/Linux Debian distribution, version in package name can
|
||||
be different. +
|
||||
^(2)^ WeeChat can compile with libncurses5-dev, but it is *NOT* recommended (you
|
||||
will have display bugs with wide chars).
|
||||
|
||||
[[compile_with_cmake]]
|
||||
Compilazione con cmake
|
||||
|
||||
Reference in New Issue
Block a user