mirror of
https://github.com/weechat/weechat.git
synced 2026-06-29 06:16:40 +02:00
Fixed arguments for "get_info" function
This commit is contained in:
@@ -2015,7 +2015,7 @@ None.@*
|
||||
|
||||
@item
|
||||
@command{char *get_info (t_weechat_plugin
|
||||
*plugin, char *info, char *server, char *channel)}@*
|
||||
*plugin, char *info, char *server)}@*
|
||||
@*
|
||||
Return an info about WeeChat or a channel.@*
|
||||
|
||||
@@ -2034,7 +2034,6 @@ Return an info about WeeChat or a channel.@*
|
||||
@item @option{weechat_sharedir}: get WeeChat system share dir
|
||||
@end itemize
|
||||
@item @option{server}: name of server for reading info (if needed)
|
||||
@item @option{channel}: name of channel for reading info (if needed)
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
@@ -2045,8 +2044,8 @@ use.@*
|
||||
@*
|
||||
@emph{Examples:}@*
|
||||
@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL, NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode", NULL);}@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode");}@*
|
||||
@*
|
||||
|
||||
@item
|
||||
@@ -2553,8 +2552,8 @@ Execute a command or send a message to a channel.@*
|
||||
@*
|
||||
|
||||
@item
|
||||
Perl: @command{weechat::get_info ( name, [server, [channel] ] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server, [channel] ] )}@*
|
||||
Perl: @command{weechat::get_info ( name, [server] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server] )}@*
|
||||
@*
|
||||
Get various info about WeeChat, server or user.@*
|
||||
|
||||
@@ -2573,7 +2572,6 @@ Get various info about WeeChat, server or user.@*
|
||||
|
||||
@end itemize
|
||||
@item @option{server}: internal name of server
|
||||
@item @option{channel}: channel name
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
|
||||
@@ -2018,7 +2018,7 @@ None.@*
|
||||
|
||||
@item
|
||||
@command{char *get_info (t_weechat_plugin
|
||||
*plugin, char *info, char *server, char *channel)}@*
|
||||
*plugin, char *info, char *server)}@*
|
||||
@*
|
||||
Return an info about WeeChat or a channel.@*
|
||||
|
||||
@@ -2037,7 +2037,6 @@ Return an info about WeeChat or a channel.@*
|
||||
@item @option{weechat_sharedir}: get WeeChat system share dir
|
||||
@end itemize
|
||||
@item @option{server}: name of server for reading info (if needed)
|
||||
@item @option{channel}: name of channel for reading info (if needed)
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
@@ -2048,8 +2047,8 @@ use.@*
|
||||
@*
|
||||
@emph{Examples:}@*
|
||||
@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL, NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode", NULL);}@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode");}@*
|
||||
@*
|
||||
|
||||
@item
|
||||
@@ -2550,8 +2549,8 @@ Execute a command or send a message to a channel.@*
|
||||
@*
|
||||
|
||||
@item
|
||||
Perl: @command{weechat::get_info ( name, [server, [channel] ] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server, [channel] ] )}@*
|
||||
Perl: @command{weechat::get_info ( name, [server] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server] )}@*
|
||||
@*
|
||||
Get various info about WeeChat, server or user.@*
|
||||
|
||||
@@ -2570,7 +2569,6 @@ Get various info about WeeChat, server or user.@*
|
||||
|
||||
@end itemize
|
||||
@item @option{server}: internal name of server
|
||||
@item @option{channel}: channel name
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
|
||||
@@ -2036,7 +2036,7 @@ Aucune.@*
|
||||
|
||||
@item
|
||||
@command{char *get_info (t_weechat_plugin
|
||||
*plugin, char *info, char *server, char *channel)}@*
|
||||
*plugin, char *info, char *server)}@*
|
||||
@*
|
||||
Renvoie une information sur WeeChat ou un canal.@*
|
||||
|
||||
@@ -2058,8 +2058,6 @@ syst@`eme de partage WeeChat
|
||||
@end itemize
|
||||
@item @option{server}: nom du serveur o@`u r@'ecup@'erer l'information
|
||||
(ni n@'ecessaire)
|
||||
@item @option{channel}: nom du canal o@`u r@'ecup@'erer l'information
|
||||
(si n@'ecessaire)
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Valeur renvoy@'ee :}@*
|
||||
@@ -2070,8 +2068,8 @@ NB: le r@'esultat doit @^etre lib@'er@'e par un appel @`a la fonction
|
||||
@*
|
||||
@emph{Exemples :}@*
|
||||
@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL, NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode", NULL);}@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode");}@*
|
||||
@*
|
||||
|
||||
@item
|
||||
@@ -2589,8 +2587,8 @@ envoyer au canal)
|
||||
@*
|
||||
|
||||
@item
|
||||
Perl: @command{weechat::get_info ( nom, [serveur, [canal] ] );}@*
|
||||
Python: @command{weechat.get_info ( nom, [serveur, [canal] ] )}@*
|
||||
Perl: @command{weechat::get_info ( nom, [serveur] );}@*
|
||||
Python: @command{weechat.get_info ( nom, [serveur] )}@*
|
||||
@*
|
||||
Obtenir des informations vari@'ees sur WeeChat, le serveur ou
|
||||
l'utilisateur.@*
|
||||
@@ -2611,7 +2609,6 @@ syst@`eme de WeeChat
|
||||
syst@`eme de partage WeeChat
|
||||
@end itemize
|
||||
@item @option{serveur}: nom interne du serveur
|
||||
@item @option{canal}: nom du canal
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Valeur renvoy@'ee :}@*
|
||||
|
||||
@@ -2013,7 +2013,7 @@ None.@*
|
||||
|
||||
@item
|
||||
@command{char *get_info (t_weechat_plugin
|
||||
*plugin, char *info, char *server, char *channel)}@*
|
||||
*plugin, char *info, char *server)}@*
|
||||
@*
|
||||
Return an info about WeeChat or a channel.@*
|
||||
|
||||
@@ -2032,7 +2032,6 @@ Return an info about WeeChat or a channel.@*
|
||||
@item @option{weechat_sharedir}: get WeeChat system share dir
|
||||
@end itemize
|
||||
@item @option{server}: name of server for reading info (if needed)
|
||||
@item @option{channel}: name of channel for reading info (if needed)
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
@@ -2043,8 +2042,8 @@ use.@*
|
||||
@*
|
||||
@emph{Examples:}@*
|
||||
@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL, NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode", NULL);}@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode");}@*
|
||||
@*
|
||||
|
||||
@item
|
||||
@@ -2545,8 +2544,8 @@ Execute a command or send a message to a channel.@*
|
||||
@*
|
||||
|
||||
@item
|
||||
Perl: @command{weechat::get_info ( name, [server, [channel] ] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server, [channel] ] )}@*
|
||||
Perl: @command{weechat::get_info ( name, [server] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server] )}@*
|
||||
@*
|
||||
Get various info about WeeChat, server or user.@*
|
||||
|
||||
@@ -2565,7 +2564,6 @@ Get various info about WeeChat, server or user.@*
|
||||
|
||||
@end itemize
|
||||
@item @option{server}: internal name of server
|
||||
@item @option{channel}: channel name
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
|
||||
@@ -2015,7 +2015,7 @@ None.@*
|
||||
|
||||
@item
|
||||
@command{char *get_info (t_weechat_plugin
|
||||
*plugin, char *info, char *server, char *channel)}@*
|
||||
*plugin, char *info, char *server)}@*
|
||||
@*
|
||||
Return an info about WeeChat or a channel.@*
|
||||
|
||||
@@ -2034,7 +2034,6 @@ Return an info about WeeChat or a channel.@*
|
||||
@item @option{weechat_sharedir}: get WeeChat system share dir
|
||||
@end itemize
|
||||
@item @option{server}: name of server for reading info (if needed)
|
||||
@item @option{channel}: name of channel for reading info (if needed)
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
@@ -2045,8 +2044,8 @@ use.@*
|
||||
@*
|
||||
@emph{Examples:}@*
|
||||
@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL, NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode", NULL);}@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode");}@*
|
||||
@*
|
||||
|
||||
@item
|
||||
@@ -2553,8 +2552,8 @@ Execute a command or send a message to a channel.@*
|
||||
@*
|
||||
|
||||
@item
|
||||
Perl: @command{weechat::get_info ( name, [server, [channel] ] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server, [channel] ] )}@*
|
||||
Perl: @command{weechat::get_info ( name, [server] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server] )}@*
|
||||
@*
|
||||
Get various info about WeeChat, server or user.@*
|
||||
|
||||
@@ -2573,7 +2572,6 @@ Get various info about WeeChat, server or user.@*
|
||||
|
||||
@end itemize
|
||||
@item @option{server}: internal name of server
|
||||
@item @option{channel}: channel name
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
|
||||
@@ -2018,7 +2018,7 @@ None.@*
|
||||
|
||||
@item
|
||||
@command{char *get_info (t_weechat_plugin
|
||||
*plugin, char *info, char *server, char *channel)}@*
|
||||
*plugin, char *info, char *server)}@*
|
||||
@*
|
||||
Return an info about WeeChat or a channel.@*
|
||||
|
||||
@@ -2037,7 +2037,6 @@ Return an info about WeeChat or a channel.@*
|
||||
@item @option{weechat_sharedir}: get WeeChat system share dir
|
||||
@end itemize
|
||||
@item @option{server}: name of server for reading info (if needed)
|
||||
@item @option{channel}: name of channel for reading info (if needed)
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
@@ -2048,8 +2047,8 @@ use.@*
|
||||
@*
|
||||
@emph{Examples:}@*
|
||||
@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL, NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode", NULL);}@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode");}@*
|
||||
@*
|
||||
|
||||
@item
|
||||
@@ -2550,8 +2549,8 @@ Execute a command or send a message to a channel.@*
|
||||
@*
|
||||
|
||||
@item
|
||||
Perl: @command{weechat::get_info ( name, [server, [channel] ] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server, [channel] ] )}@*
|
||||
Perl: @command{weechat::get_info ( name, [server] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server] )}@*
|
||||
@*
|
||||
Get various info about WeeChat, server or user.@*
|
||||
|
||||
@@ -2570,7 +2569,6 @@ Get various info about WeeChat, server or user.@*
|
||||
|
||||
@end itemize
|
||||
@item @option{server}: internal name of server
|
||||
@item @option{channel}: channel name
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
|
||||
@@ -2036,7 +2036,7 @@ Aucune.@*
|
||||
|
||||
@item
|
||||
@command{char *get_info (t_weechat_plugin
|
||||
*plugin, char *info, char *server, char *channel)}@*
|
||||
*plugin, char *info, char *server)}@*
|
||||
@*
|
||||
Renvoie une information sur WeeChat ou un canal.@*
|
||||
|
||||
@@ -2058,8 +2058,6 @@ syst@`eme de partage WeeChat
|
||||
@end itemize
|
||||
@item @option{server}: nom du serveur o@`u r@'ecup@'erer l'information
|
||||
(ni n@'ecessaire)
|
||||
@item @option{channel}: nom du canal o@`u r@'ecup@'erer l'information
|
||||
(si n@'ecessaire)
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Valeur renvoy@'ee :}@*
|
||||
@@ -2070,8 +2068,8 @@ NB: le r@'esultat doit @^etre lib@'er@'e par un appel @`a la fonction
|
||||
@*
|
||||
@emph{Exemples :}@*
|
||||
@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL, NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode", NULL);}@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode");}@*
|
||||
@*
|
||||
|
||||
@item
|
||||
@@ -2589,8 +2587,8 @@ envoyer au canal)
|
||||
@*
|
||||
|
||||
@item
|
||||
Perl: @command{weechat::get_info ( nom, [serveur, [canal] ] );}@*
|
||||
Python: @command{weechat.get_info ( nom, [serveur, [canal] ] )}@*
|
||||
Perl: @command{weechat::get_info ( nom, [serveur] );}@*
|
||||
Python: @command{weechat.get_info ( nom, [serveur] )}@*
|
||||
@*
|
||||
Obtenir des informations vari@'ees sur WeeChat, le serveur ou
|
||||
l'utilisateur.@*
|
||||
@@ -2611,7 +2609,6 @@ syst@`eme de WeeChat
|
||||
syst@`eme de partage WeeChat
|
||||
@end itemize
|
||||
@item @option{serveur}: nom interne du serveur
|
||||
@item @option{canal}: nom du canal
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Valeur renvoy@'ee :}@*
|
||||
|
||||
@@ -2013,7 +2013,7 @@ None.@*
|
||||
|
||||
@item
|
||||
@command{char *get_info (t_weechat_plugin
|
||||
*plugin, char *info, char *server, char *channel)}@*
|
||||
*plugin, char *info, char *server)}@*
|
||||
@*
|
||||
Return an info about WeeChat or a channel.@*
|
||||
|
||||
@@ -2032,7 +2032,6 @@ Return an info about WeeChat or a channel.@*
|
||||
@item @option{weechat_sharedir}: get WeeChat system share dir
|
||||
@end itemize
|
||||
@item @option{server}: name of server for reading info (if needed)
|
||||
@item @option{channel}: name of channel for reading info (if needed)
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
@@ -2043,8 +2042,8 @@ use.@*
|
||||
@*
|
||||
@emph{Examples:}@*
|
||||
@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL, NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode", NULL);}@*
|
||||
@code{char *version = plugin->get_info (plugin, "version", NULL);}@*
|
||||
@code{char *nick = plugin->get_info (plugin, "nick", "freenode");}@*
|
||||
@*
|
||||
|
||||
@item
|
||||
@@ -2545,8 +2544,8 @@ Execute a command or send a message to a channel.@*
|
||||
@*
|
||||
|
||||
@item
|
||||
Perl: @command{weechat::get_info ( name, [server, [channel] ] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server, [channel] ] )}@*
|
||||
Perl: @command{weechat::get_info ( name, [server] );}@*
|
||||
Python: @command{weechat.get_info ( name, [server] )}@*
|
||||
@*
|
||||
Get various info about WeeChat, server or user.@*
|
||||
|
||||
@@ -2565,7 +2564,6 @@ Get various info about WeeChat, server or user.@*
|
||||
|
||||
@end itemize
|
||||
@item @option{server}: internal name of server
|
||||
@item @option{channel}: channel name
|
||||
@end itemize
|
||||
@*
|
||||
@emph{Return value:}@*
|
||||
|
||||
Reference in New Issue
Block a user