diff options
72 files changed, 433 insertions, 433 deletions
diff --git a/Contributing.adoc b/Contributing.adoc index 80da272f8..7430aa346 100644 --- a/Contributing.adoc +++ b/Contributing.adoc @@ -38,7 +38,7 @@ please include: problem here. * The *gdb's backtrace* (only for a crash): if you can reproduce the crash (or if you have a core file), please include the backtrace from gdb (look at - https://weechat.org/doc/user#report_crashes[User's guide] for more info). + https://weechat.org/doc/user/#report_crashes[User's guide] for more info). * The *actual result*. * The *expected result*: the correct result you are expecting. @@ -68,14 +68,14 @@ time, for https://github.com/weechat/weechat[WeeChat] and the website https://github.com/weechat/weechat.org[weechat.org]. To start a translation in a new language (not yet supported), please look at -https://weechat.org/doc/dev#translations[translations] +https://weechat.org/doc/dev/#translations[translations] in Developer's guide. == Feature requests WeeChat is under active development, so your idea may already have been implemented, or scheduled for a future version (you can check in -https://weechat.org/dev[roadmap] or +https://weechat.org/dev/[roadmap] or https://github.com/weechat/weechat/milestones[milestones] on GitHub. Pull requests on GitHub are welcome for minor new features. @@ -84,6 +84,6 @@ For major new features, it's better to discuss about it in IRC (server: _irc.libera.chat_, channel _#weechat_). Before submitting any pull request, be sure you have read the -https://weechat.org/doc/dev#coding_rules[coding rules] +https://weechat.org/doc/dev/#coding_rules[coding rules] in Developer's guide, which contains info about styles used, naming convention and other useful info. diff --git a/README.adoc b/README.adoc index 75fe26f80..479499c34 100644 --- a/README.adoc +++ b/README.adoc @@ -23,13 +23,13 @@ Homepage: https://weechat.org/ == Features -* *Modular chat client*: WeeChat has a lightweight core and optional https://weechat.org/doc/user#plugins[plugins]. All plugins (including https://weechat.org/doc/user#irc[IRC]) are independent and can be unloaded. +* *Modular chat client*: WeeChat has a lightweight core and optional https://weechat.org/doc/user/#plugins[plugins]. All plugins (including https://weechat.org/doc/user/#irc[IRC]) are independent and can be unloaded. * *Multi-platform*: WeeChat runs on GNU/Linux, *BSD, GNU/Hurd, Haiku, macOS and Windows (Bash/Ubuntu and Cygwin). * *Multi-protocols*: WeeChat is designed to support multiple protocols by plugins, like IRC. * *Standards-compliant*: the IRC plugin is compliant with RFCs https://tools.ietf.org/html/rfc1459[1459], https://tools.ietf.org/html/rfc2810[2810], https://tools.ietf.org/html/rfc2811[2811], https://tools.ietf.org/html/rfc2812[2812], and https://tools.ietf.org/html/rfc2813[2813]. * *Small, fast, and very light*: the core is and should stay as light and fast as possible. * *Customizable and extensible*: there are a lot of options to customize WeeChat, and it is extensible with C plugins and https://weechat.org/scripts/[scripts] (https://weechat.org/scripts/language/perl/[Perl], https://weechat.org/scripts/language/python/[Python], https://weechat.org/scripts/language/ruby[Ruby], https://weechat.org/scripts/language/lua/[Lua], https://weechat.org/scripts/language/tcl/[Tcl], https://weechat.org/scripts/language/guile/[Scheme], https://weechat.org/scripts/language/javascript/[JavaScript] and https://weechat.org/scripts/language/php/[PHP]). -* *Fully documented*: there is comprehensive https://weechat.org/doc/[documentation], which is https://weechat.org/doc/dev#translations[translated] into several languages. +* *Fully documented*: there is comprehensive https://weechat.org/doc/[documentation], which is https://weechat.org/doc/dev/#translations[translated] into several languages. * *Developed from scratch*: WeeChat was built from scratch and is not based on any other client. * *Free software*: WeeChat is released under https://www.gnu.org/licenses/gpl-3.0.html[GPLv3]. @@ -41,7 +41,7 @@ On WeeChat's website you can find https://weechat.org/about/screenshots/[more sc WeeChat can be installed using your favorite package manager (recommended) or by compiling it yourself. -For detailed instructions, please check the https://weechat.org/doc/user#install[WeeChat user's guide]. +For detailed instructions, please check the https://weechat.org/doc/user/#install[WeeChat user's guide]. == Copyright diff --git a/ReleaseNotes.adoc b/ReleaseNotes.adoc index ccbf9acaa..77ee0e529 100644 --- a/ReleaseNotes.adoc +++ b/ReleaseNotes.adoc @@ -43,11 +43,11 @@ which allows better compression and is much faster than zlib for both compressio The new compression type is `zstd`, and the default compression is now `off` instead of `zlib`: the compression must now be explicitly given in the -link:https://weechat.org/doc/relay#command_handshake[handshake] command. +link:https://weechat.org/doc/relay/#command_handshake[handshake] command. -The option `compression` in link:https://weechat.org/doc/relay#command_handshake[init] +The option `compression` in link:https://weechat.org/doc/relay/#command_handshake[init] command has been removed, it is now ignored and must be given in the -link:https://weechat.org/doc/relay#command_handshake[handshake] command +link:https://weechat.org/doc/relay/#command_handshake[handshake] command (it was deprecated since WeeChat 2.9). The option relay.network.compression_level has been renamed to relay.network.compression @@ -82,11 +82,11 @@ You can restore the default triggers with the following command: === New parameters in function hdata_search New parameters have been added in function -link:https://weechat.org/doc/plugin#_hdata_search[hdata_search], used for the +link:https://weechat.org/doc/plugin/#_hdata_search[hdata_search], used for the evaluation of expression. New parameters are the same as function -link:https://weechat.org/doc/plugin#_string_eval_expression[string_eval_expression]: +link:https://weechat.org/doc/plugin/#_string_eval_expression[string_eval_expression]: * pointers: hashtable with pointers (pointers) * extra_vars: hashtable with extra variables (strings) @@ -108,7 +108,7 @@ WeeChat versions: Support of static array in hdata has been added. For pointers to arrays, a prefix `*,` must be added in parameter `array_size` -of API function link:https://weechat.org/doc/plugin#_hdata_new_var[hdata_new_var]. +of API function link:https://weechat.org/doc/plugin/#_hdata_new_var[hdata_new_var]. [[v3.3]] == Version 3.3 (2021-09-19) @@ -533,7 +533,7 @@ bars, so if you want to use the new default settings, you can do: If you changed the option "color_bg" in some bars, you should also adjust the new option "color_bg_inactive", depending on your needs. -The function link:https://weechat.org/doc/plugin#_bar_new[bar_new] in API is updated, +The function link:https://weechat.org/doc/plugin/#_bar_new[bar_new] in API is updated, so this is an incompatible change: all plugins and scripts calling this function must be updated. The following scripts are updated consequently to be compatible with all @@ -599,8 +599,8 @@ plugins/scripts to complete a string, without using the buffer input. Therefore two functions have been renamed in API and moved to the new "completion" category: -* hook_completion_get_string => link:https://weechat.org/doc/plugin#_completion_get_string[completion_get_string] -* hook_completion_list_add => link:https://weechat.org/doc/plugin#_completion_list_add[completion_list_add] +* hook_completion_get_string => link:https://weechat.org/doc/plugin/#_completion_get_string[completion_get_string] +* hook_completion_list_add => link:https://weechat.org/doc/plugin/#_completion_list_add[completion_list_add] [NOTE] The old names are still valid for compatibility reasons, but it is recommended @@ -698,7 +698,7 @@ A `handshake` command has been added in weechat relay protocol. + The client should send this command before the `init` to negotiate the way to authenticate with the relay server. -See the link:https://weechat.org/doc/relay#command_handshake[handshake command] +See the link:https://weechat.org/doc/relay/#command_handshake[handshake command] in Relay protocol doc for more information. ==== Server "nonce" @@ -716,7 +716,7 @@ So the hash is computed on: (`server nonce` + `client nonce` + `password`). This salt is now mandatory even for algorithms `SHA256` and `SHA512`; this is a breaking change in protocol, needed for security reasons. -See the link:https://weechat.org/doc/relay#command_init[init command] +See the link:https://weechat.org/doc/relay/#command_init[init command] in Relay protocol doc for more information. [[v2.8]] @@ -727,7 +727,7 @@ in Relay protocol doc for more information. The command line option `-a` (or `--no-connect`), which can also be used in the `/plugin` command, is now used to set a new info called `auto_connect` -(see the function link:https://weechat.org/doc/plugin#_info_get[info_get] in the Plugin API reference). +(see the function link:https://weechat.org/doc/plugin/#_info_get[info_get] in the Plugin API reference). Therefore, the option is not sent any more to the function `weechat_plugin_init` of plugins. + @@ -989,8 +989,8 @@ base 16, 32, and 64. New functions in C API, supporting base 16, 32, and 64: -* link:https://weechat.org/doc/plugin#_string_base_encode[string_base_encode] -* link:https://weechat.org/doc/plugin#_string_base_decode[string_base_decode] +* link:https://weechat.org/doc/plugin/#_string_base_encode[string_base_encode] +* link:https://weechat.org/doc/plugin/#_string_base_decode[string_base_decode] Functions removed from C API: @@ -1066,7 +1066,7 @@ See issue #787 for more information. [NOTE] It is recommended for plugins and scripts to use the WeeChat IRC parser: -see the function link:https://weechat.org/doc/plugin#_info_get_hashtable[info_get_hashtable] +see the function link:https://weechat.org/doc/plugin/#_info_get_hashtable[info_get_hashtable] in the Plugin API reference. Now the whole IRC message is received by the signal callback, for example: @@ -1387,33 +1387,33 @@ reduce memory usage). Following functions are changed in the C API: -* link:https://weechat.org/doc/plugin#_exec_on_files[exec_on_files] -* link:https://weechat.org/doc/plugin#_config_new[config_new] -* link:https://weechat.org/doc/plugin#_config_new_section[config_new_section] -* link:https://weechat.org/doc/plugin#_config_new_option[config_new_option] -* link:https://weechat.org/doc/plugin#_hook_command[hook_command] -* link:https://weechat.org/doc/plugin#_hook_command_run[hook_command_run] -* link:https://weechat.org/doc/plugin#_hook_timer[hook_timer] -* link:https://weechat.org/doc/plugin#_hook_fd[hook_fd] -* link:https://weechat.org/doc/plugin#_hook_process[hook_process] -* link:https://weechat.org/doc/plugin#_hook_process_hashtable[hook_process_hashtable] -* link:https://weechat.org/doc/plugin#_hook_connect[hook_connect] -* link:https://weechat.org/doc/plugin#_hook_print[hook_print] -* link:https://weechat.org/doc/plugin#_hook_signal[hook_signal] -* link:https://weechat.org/doc/plugin#_hook_hsignal[hook_hsignal] -* link:https://weechat.org/doc/plugin#_hook_config[hook_config] -* link:https://weechat.org/doc/plugin#_hook_completion[hook_completion] -* link:https://weechat.org/doc/plugin#_hook_modifier[hook_modifier] -* link:https://weechat.org/doc/plugin#_hook_info[hook_info] -* link:https://weechat.org/doc/plugin#_hook_info_hashtable[hook_info_hashtable] -* link:https://weechat.org/doc/plugin#_hook_infolist[hook_infolist] -* link:https://weechat.org/doc/plugin#_hook_hdata[hook_hdata] -* link:https://weechat.org/doc/plugin#_hook_focus[hook_focus] -* link:https://weechat.org/doc/plugin#_unhook_all[unhook_all] -* link:https://weechat.org/doc/plugin#_buffer_new[buffer_new] -* link:https://weechat.org/doc/plugin#_bar_item_new[bar_item_new] -* link:https://weechat.org/doc/plugin#_upgrade_new[upgrade_new] -* link:https://weechat.org/doc/plugin#_upgrade_read[upgrade_read] +* link:https://weechat.org/doc/plugin/#_exec_on_files[exec_on_files] +* link:https://weechat.org/doc/plugin/#_config_new[config_new] +* link:https://weechat.org/doc/plugin/#_config_new_section[config_new_section] +* link:https://weechat.org/doc/plugin/#_config_new_option[config_new_option] +* link:https://weechat.org/doc/plugin/#_hook_command[hook_command] +* link:https://weechat.org/doc/plugin/#_hook_command_run[hook_command_run] +* link:https://weechat.org/doc/plugin/#_hook_timer[hook_timer] +* link:https://weechat.org/doc/plugin/#_hook_fd[hook_fd] +* link:https://weechat.org/doc/plugin/#_hook_process[hook_process] +* link:https://weechat.org/doc/plugin/#_hook_process_hashtable[hook_process_hashtable] +* link:https://weechat.org/doc/plugin/#_hook_connect[hook_connect] +* link:https://weechat.org/doc/plugin/#_hook_print[hook_print] +* link:https://weechat.org/doc/plugin/#_hook_signal[hook_signal] +* link:https://weechat.org/doc/plugin/#_hook_hsignal[hook_hsignal] +* link:https://weechat.org/doc/plugin/#_hook_config[hook_config] +* link:https://weechat.org/doc/plugin/#_hook_completion[hook_completion] +* link:https://weechat.org/doc/plugin/#_hook_modifier[hook_modifier] +* link:https://weechat.org/doc/plugin/#_hook_info[hook_info] +* link:https://weechat.org/doc/plugin/#_hook_info_hashtable[hook_info_hashtable] +* link:https://weechat.org/doc/plugin/#_hook_infolist[hook_infolist] +* link:https://weechat.org/doc/plugin/#_hook_hdata[hook_hdata] +* link:https://weechat.org/doc/plugin/#_hook_focus[hook_focus] +* link:https://weechat.org/doc/plugin/#_unhook_all[unhook_all] +* link:https://weechat.org/doc/plugin/#_buffer_new[buffer_new] +* link:https://weechat.org/doc/plugin/#_bar_item_new[bar_item_new] +* link:https://weechat.org/doc/plugin/#_upgrade_new[upgrade_new] +* link:https://weechat.org/doc/plugin/#_upgrade_read[upgrade_read] The function `unhook_all` has a new argument `const char *subplugin` to remove only hooks created by this "subplugin" (script). @@ -1584,7 +1584,7 @@ You can restore the default "beep" trigger with the following command: [[v1.1_commands_return_code]] === Return code of commands -The API function link:https://weechat.org/doc/plugin#_command[command] +The API function link:https://weechat.org/doc/plugin/#_command[command] now sends the value returned return by command callback. WeeChat does not display any more an error when a command returns @@ -1647,9 +1647,9 @@ the old behavior in command `/connect`: The API functions using timeval are now using or returning microseconds, instead of milliseconds: -* function link:https://weechat.org/doc/plugin#_util_timeval_diff[util_timeval_diff]: +* function link:https://weechat.org/doc/plugin/#_util_timeval_diff[util_timeval_diff]: returns microseconds -* function link:https://weechat.org/doc/plugin#_util_timeval_add[util_timeval_add]: +* function link:https://weechat.org/doc/plugin/#_util_timeval_add[util_timeval_add]: the argument "interval" is now expressed in microseconds. [[v1.0.1]] @@ -2146,7 +2146,7 @@ disable IPv6 in relay if you don't plan to use it at all: == Version 0.3.9.2 (2012-11-18) This version fixes a security vulnerability when a plugin/script gives -untrusted command to API function link:https://weechat.org/doc/plugin#_hook_process[hook_process]. +untrusted command to API function link:https://weechat.org/doc/plugin/#_hook_process[hook_process]. [[v0.3.9.1]] == Version 0.3.9.1 (2012-11-09) diff --git a/doc/cs/includes/man.cs.adoc b/doc/cs/includes/man.cs.adoc index d14572a80..a86d06b3c 100644 --- a/doc/cs/includes/man.cs.adoc +++ b/doc/cs/includes/man.cs.adoc @@ -1,6 +1,6 @@ // tag::plugin_options[] Pro kompletní dokumentaci nastavení pluginů a jejich volby podívejte se na -https://weechat.org/doc[WeeChat user's guide]. +https://weechat.org/doc/[WeeChat user's guide]. S irc pluginem se můžete doččasně připojit na server s URL jako: diff --git a/doc/cs/weechat-headless.1.cs.adoc b/doc/cs/weechat-headless.1.cs.adoc index 8a07a3382..0783ff357 100644 --- a/doc/cs/weechat-headless.1.cs.adoc +++ b/doc/cs/weechat-headless.1.cs.adoc @@ -67,4 +67,4 @@ include::includes/man.cs.adoc[tag=copyright] == PODPORA / HLÁŠENÍ CHYB -Pro pomoc nebo hlášení chyb https://weechat.org/about/support +Pro pomoc nebo hlášení chyb https://weechat.org/about/support/ diff --git a/doc/cs/weechat.1.cs.adoc b/doc/cs/weechat.1.cs.adoc index 72cba926f..7b24405e5 100644 --- a/doc/cs/weechat.1.cs.adoc +++ b/doc/cs/weechat.1.cs.adoc @@ -62,4 +62,4 @@ include::includes/man.cs.adoc[tag=copyright] == PODPORA / HLÁŠENÍ CHYB -Pro pomoc nebo hlášení chyb https://weechat.org/about/support +Pro pomoc nebo hlášení chyb https://weechat.org/about/support/ diff --git a/doc/cs/weechat_quickstart.cs.adoc b/doc/cs/weechat_quickstart.cs.adoc index fa417192e..125f2e16f 100644 --- a/doc/cs/weechat_quickstart.cs.adoc +++ b/doc/cs/weechat_quickstart.cs.adoc @@ -391,12 +391,12 @@ Zkuste `/help script` pro více informací. A seznam skriptů je dostupný v WeeChatu s příkazem `/script` nebo na této -adrese https://weechat.org/scripts +adrese https://weechat.org/scripts/ [[more_doc]] == Další dokumentace Nyní jste schopni používat WeeChat a můžete si přečíst FAQ/dokumentaci pro -jakékoliv další otázky: https://weechat.org/doc +jakékoliv další otázky: https://weechat.org/doc/ Ať máte radost z použití WeeChatu! diff --git a/doc/de/includes/man.de.adoc b/doc/de/includes/man.de.adoc index 2bdf7de55..b70db684c 100644 --- a/doc/de/includes/man.de.adoc +++ b/doc/de/includes/man.de.adoc @@ -1,6 +1,6 @@ // tag::plugin_options[] Um eine vollständige Dokumentation der Optionen zu erhalten, siehe -https://weechat.org/doc[WeeChat user's guide]. +https://weechat.org/doc/[WeeChat user's guide]. Mittels der IRC Erweiterung kann man sich zu einen temporären Server verbinden lassen, indem man eine URL verwendet: diff --git a/doc/de/weechat-headless.1.de.adoc b/doc/de/weechat-headless.1.de.adoc index 08b33ec95..385e6491b 100644 --- a/doc/de/weechat-headless.1.de.adoc +++ b/doc/de/weechat-headless.1.de.adoc @@ -63,4 +63,4 @@ include::includes/man.de.adoc[tag=copyright] == SUPPORT / FEHLER MELDEN -für Hilfe oder um einen Fehler zu melden: https://weechat.org/about/support +für Hilfe oder um einen Fehler zu melden: https://weechat.org/about/support/ diff --git a/doc/de/weechat.1.de.adoc b/doc/de/weechat.1.de.adoc index 56e45d496..8cd24b0e2 100644 --- a/doc/de/weechat.1.de.adoc +++ b/doc/de/weechat.1.de.adoc @@ -59,4 +59,4 @@ include::includes/man.de.adoc[tag=copyright] == SUPPORT / FEHLER MELDEN -für Hilfe oder um einen Fehler zu melden: https://weechat.org/about/support +für Hilfe oder um einen Fehler zu melden: https://weechat.org/about/support/ diff --git a/doc/de/weechat_faq.de.adoc b/doc/de/weechat_faq.de.adoc index a43747f32..babf88403 100644 --- a/doc/de/weechat_faq.de.adoc +++ b/doc/de/weechat_faq.de.adoc @@ -38,7 +38,7 @@ Aber diese Bedeutung trifft nicht auf WeeChat zu!) WeeChat ist sehr speicherschonend und besticht durch innovative Funktionen. -Weitere Informationen findet man auf der WeeChat Seite: https://weechat.org/about/features +Weitere Informationen findet man auf der WeeChat Seite: https://weechat.org/about/features/ [[compilation_install]] == Kompilierung / Installation @@ -47,7 +47,7 @@ Weitere Informationen findet man auf der WeeChat Seite: https://weechat.org/abou === Ich habe gehört es gibt verschiedene GUIs für WeeChat. Wie kann ich diese kompilieren bzw. nutzen? Es sind einige Remote-Oberflächen verfügbar. Diese findet man auf der Homepage: -https://weechat.org/about/interfaces +https://weechat.org/about/interfaces/ [[compile_git]] === Ich kann WeeChat nach Cloning des git Repository nicht kompilieren - weshalb? @@ -1342,7 +1342,7 @@ für weitere Informationen über Konfigurationsdateien. [[bug_task_patch]] === Was kann ich machen, falls ich einen Fehler gefunden habe, mich nach neuen Funktionen erkundigen oder Patches einsenden möchte? -siehe: https://weechat.org/about/support +siehe: https://weechat.org/about/support/ [[gdb_error_threads]] === Wenn man WeeChat in gdb startet, kann ein Thread-Fehler auftreten. Was beudeutet das? @@ -1381,10 +1381,10 @@ Das Gleiche gilt für Systeme, zu denen wir keinen Zugang haben. Es gibt einiges zu tun - z.B. testen, programmieren, dokumentieren, ... Bitte kontaktiere uns via IRC oder E-Mail, wirf einen Blick auf die Support-Seite: -https://weechat.org/about/support +https://weechat.org/about/support/ [[donate]] === Kann ich Geld oder anderes an die WeeChat Entwickler spenden? Du kannst uns Geld zur Unterstützung der weiteren Entwicklung spenden. -Details hierzu gibt es auf: https://weechat.org/donate +Details hierzu gibt es auf: https://weechat.org/donate/ diff --git a/doc/de/weechat_quickstart.de.adoc b/doc/de/weechat_quickstart.de.adoc index d2d8e8142..e482bed58 100644 --- a/doc/de/weechat_quickstart.de.adoc +++ b/doc/de/weechat_quickstart.de.adoc @@ -431,7 +431,7 @@ Zeige eine liste aller verfügbaren Skripten: /script ---- -Auf *weechat.org* von Drittanbietern bereitgestellte Scripten: https://weechat.org/scripts +Auf *weechat.org* von Drittanbietern bereitgestellte Scripten: https://weechat.org/scripts/ [[more_doc]] == Weitere Dokumentation @@ -439,6 +439,6 @@ Auf *weechat.org* von Drittanbietern bereitgestellte Scripten: https://weechat.o Mit dieser Quickstart-Anleitung wurden dir die wesentlichen Bedienungswerkzeuge von WeeChat nähergebracht. Für das eingehende Studium aller verfügbaren Funktionalitäten -sei dir unsere ausführliche FAQ/Dokumentation ans Herz gelegt: https://weechat.org/doc +sei dir unsere ausführliche FAQ/Dokumentation ans Herz gelegt: https://weechat.org/doc/ Viel Spass mit WeeChat! diff --git a/doc/de/weechat_scripting.de.adoc b/doc/de/weechat_scripting.de.adoc index 3fab584e8..ce7eb610d 100644 --- a/doc/de/weechat_scripting.de.adoc +++ b/doc/de/weechat_scripting.de.adoc @@ -18,7 +18,7 @@ Diese Anleitung beschreibt den WeeChat Chat Client und ist Teil von WeeChat. Die aktuelle Version dieser Anleitung finden Sie auf: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -1158,7 +1158,7 @@ weechat.hook_process("url:https://weechat.org/dev/info/stable/", ---- [TIP] -Alle Informationen die WeeChat betreffen findet man auf: https://weechat.org/dev/info +Alle Informationen die WeeChat betreffen findet man auf: https://weechat.org/dev/info/ Beispiel eines URL Transfers, mit zusätzliche Optionen: Es wird das neuste WeeChat Entwicklerpaket in die Datei _/tmp/weechat-devel.tar.gz_ gesichert: diff --git a/doc/de/weechat_user.de.adoc b/doc/de/weechat_user.de.adoc index 832785d22..2dadd7837 100644 --- a/doc/de/weechat_user.de.adoc +++ b/doc/de/weechat_user.de.adoc @@ -18,7 +18,7 @@ Diese Anleitung beschreibt den WeeChat Chat Client und ist Teil von WeeChat. Die aktuelle Version dieser Anleitung finden Sie auf: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -70,7 +70,7 @@ Binärpakete sind für folgende Distributionen erhältlich: * Cygwin (Windows): wähle das WeeChat Paket in setup.exe aus * Debian/Ubuntu (oder Debian kompatible Distribution): `apt-get install weechat-curses weechat-plugins` + - Für neueste Versionen und nächtliche Builds: https://weechat.org/download/debian + Für neueste Versionen und nächtliche Builds: https://weechat.org/download/debian/ * Fedora Core: `dnf install weechat` * FreeBSD: `pkg install weechat` * Gentoo: `emerge weechat` @@ -3384,7 +3384,7 @@ das auch beispielsweise `~/.weechat` sein kann. /msg nickserv cert add ---- -Für weiterreichende Informationen lesen Sie bitte: https://www.oftc.net/NickServ/CertFP +Für weiterreichende Informationen lesen Sie bitte: https://www.oftc.net/NickServ/CertFP/ [[irc_sasl_authentication]] ==== SASL Authentifizierung @@ -3693,7 +3693,7 @@ mit dem entsprechenden Wert ersetzt: | $compilation | Datum der Kompilierung | `+Dec 16 2012+` | $osinfo | Info über das genutzte OS | `+Linux 2.6.32-5-amd64 / x86_64+` | $site | WeeChat Seite | `+https://weechat.org/+` -| $download | WeeChat, Download Seite | `+https://weechat.org/download+` +| $download | WeeChat, Download Seite | `+https://weechat.org/download/+` | $time | Aktuelle Uhrzeit/Datum | `+Sun, 16 Dec 2012 10:40:48 +0100+` | $username | Username beim IRC Server | `+Name+` | $realname | Realname beim IRC Server | `+John Doe+` @@ -3711,7 +3711,7 @@ Falls CTCP Optionen nicht festgelegt sind, lauten die CTCP Antworten: | CTCP | Antwortformat | Beispiel | CLIENTINFO | `+$clientinfo+` | `+ACTION DCC CLIENTINFO FINGER PING SOURCE TIME USERINFO VERSION+` | FINGER | `+WeeChat $versiongit+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4)+` -| SOURCE | `+$download+` | `+https://weechat.org/download+` +| SOURCE | `+$download+` | `+https://weechat.org/download/+` | TIME | `+$time+` | `+Sun, 16 Dec 2012 10:40:48 +0100+` | USERINFO | `+$username ($realname)+` | `+Name (John Doe)+` | VERSION | `+WeeChat $versiongit ($compilation)+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4) (Dec 16 2012)+` @@ -4016,7 +4016,7 @@ Die Relay-Erweiterung wird genutzt um Daten, mittels unterschiedlicher Protokoll * _irc_: IRC Proxy: um mittels einem oder mehreren IRC-Clients eine Verbindung zu IRC Servern zu unterhalten. * _weechat_: protocol used by remote interfaces to display and interact with - WeeChat, see: https://weechat.org/about/interfaces + WeeChat, see: https://weechat.org/about/interfaces/ [[relay_password]] === Passwort @@ -4138,7 +4138,7 @@ folgenden Befehlen einrichten: Die Relay-Erweiterung kann Daten, mittels dem WeeChat Protokoll, an eine externe Oberfläche senden. -Sie können eine Verbindung mit einer Remote-Schnittstelle herstellen, siehe: https://weechat.org/about/interfaces +Sie können eine Verbindung mit einer Remote-Schnittstelle herstellen, siehe: https://weechat.org/about/interfaces/ [IMPORTANT] Eine WeeChat Instanz kann sich NICHT mit einer anderen WeeChat Instanz über @@ -5130,7 +5130,7 @@ bitte die link:weechat_scripting.de.html[WeeChat scripting Guide]. Der Skriptmanager (Befehl <<command_script_script,/script>>) wird verwendet, um Skripte zu laden/stoppen. Dies ist unabhängig von der Skriptsprache. Ausserdem können Skripte installiert und wieder entfernt werden, dazu wird das Skript-Repository -verwendet, welches man unter folgender URL findet: https://weechat.org/scripts +verwendet, welches man unter folgender URL findet: https://weechat.org/scripts/ Aus Datenschutzgründen ist das Herunterladen von Skripten standardmäßig deaktiviert. + Um es zu aktivieren, geben Sie diesen Befehl ein: @@ -5378,4 +5378,4 @@ Unterstützung im IRC findet man auf dem Server _irc.libera.chat_: ** _#weechat-de_ (deutsch) ** _#weechat-fi_ (finnisch) -Weitere Möglichkeiten, um mit den Entwicklern in Kontakt zu treten, siehe: https://weechat.org/about/support +Weitere Möglichkeiten, um mit den Entwicklern in Kontakt zu treten, siehe: https://weechat.org/about/support/ diff --git a/doc/en/includes/man.en.adoc b/doc/en/includes/man.en.adoc index 5280dd05c..e52677df5 100644 --- a/doc/en/includes/man.en.adoc +++ b/doc/en/includes/man.en.adoc @@ -1,6 +1,6 @@ // tag::plugin_options[] For complete doc on plugin options, please look at plugins documentation in -https://weechat.org/doc[WeeChat user's guide]. +https://weechat.org/doc/[WeeChat user's guide]. With irc plugin, you can connect to temporary server with an URL like: diff --git a/doc/en/weechat-headless.1.en.adoc b/doc/en/weechat-headless.1.en.adoc index 0dbef7c8e..10f05bdfe 100644 --- a/doc/en/weechat-headless.1.en.adoc +++ b/doc/en/weechat-headless.1.en.adoc @@ -60,4 +60,4 @@ include::includes/man.en.adoc[tag=copyright] == SUPPORT / REPORTING BUGS -For help or a bug report: https://weechat.org/about/support +For help or a bug report: https://weechat.org/about/support/ diff --git a/doc/en/weechat.1.en.adoc b/doc/en/weechat.1.en.adoc index 8f0205267..fb9f9cd19 100644 --- a/doc/en/weechat.1.en.adoc +++ b/doc/en/weechat.1.en.adoc @@ -57,4 +57,4 @@ include::includes/man.en.adoc[tag=copyright] == SUPPORT / REPORTING BUGS -For help or a bug report: https://weechat.org/about/support +For help or a bug report: https://weechat.org/about/support/ diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc index 9123856b6..5b92f8523 100644 --- a/doc/en/weechat_dev.en.adoc +++ b/doc/en/weechat_dev.en.adoc @@ -11,7 +11,7 @@ This manual documents WeeChat chat client, it is part of WeeChat. Latest version of this document can be found on this page: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] diff --git a/doc/en/weechat_faq.en.adoc b/doc/en/weechat_faq.en.adoc index b06f26df4..044de441a 100644 --- a/doc/en/weechat_faq.en.adoc +++ b/doc/en/weechat_faq.en.adoc @@ -32,7 +32,7 @@ apply to WeeChat!). Because WeeChat is very light and brings innovating features. -More info on the WeeChat features page: https://weechat.org/about/features +More info on the WeeChat features page: https://weechat.org/about/features/ [[compilation_install]] == Compilation / install @@ -41,7 +41,7 @@ More info on the WeeChat features page: https://weechat.org/about/features === I've heard about many GUIs for WeeChat. How can I compile/use them? Some remote GUIs are available, see the remote interfaces page: -https://weechat.org/about/interfaces +https://weechat.org/about/interfaces/ [[compile_git]] === I can't compile WeeChat after cloning git repository, why? @@ -1246,7 +1246,7 @@ for more information about configuration files. [[bug_task_patch]] === How should I report bugs, ask for new features or send patches? -See: https://weechat.org/about/support +See: https://weechat.org/about/support/ [[gdb_error_threads]] === When I run WeeChat under gdb, there is an error about threads, what can I do? @@ -1283,10 +1283,10 @@ some OS' we don't have, to test WeeChat. There are many tasks to do (testing, code, documentation, etc.) Please contact us via IRC or mail, look at support page: -https://weechat.org/about/support +https://weechat.org/about/support/ [[donate]] === Can I give money or other things to WeeChat developers? You can give us money to help development. -Details on https://weechat.org/donate +Details on https://weechat.org/donate/ diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index 6e9b10f76..1343e3a64 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -12,7 +12,7 @@ This manual documents WeeChat chat client, it is part of WeeChat. Latest version of this document can be found on this page: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -9343,7 +9343,7 @@ In scripting API, the function _name_ is called directly and its result [TIP] If you want to retrieve infos about WeeChat (like current stable version, -latest git commit, etc.), you can use URLs on page https://weechat.org/dev/info +latest git commit, etc.), you can use URLs on page https://weechat.org/dev/info/ [NOTE] Buffer size for sending data to callback is 64KB (there are 2 buffers: one for diff --git a/doc/en/weechat_quickstart.en.adoc b/doc/en/weechat_quickstart.en.adoc index 77acfa69b..173ab2d16 100644 --- a/doc/en/weechat_quickstart.en.adoc +++ b/doc/en/weechat_quickstart.en.adoc @@ -371,12 +371,12 @@ for example: See `/help script` for more info. A list of scripts is available in WeeChat with `/script` or at this URL: -https://weechat.org/scripts +https://weechat.org/scripts/ [[more_doc]] == More documentation You can now use WeeChat and read FAQ/documentation for any other questions: -https://weechat.org/doc +https://weechat.org/doc/ Enjoy using WeeChat! diff --git a/doc/en/weechat_scripting.en.adoc b/doc/en/weechat_scripting.en.adoc index 4db1352d8..451f44f0b 100644 --- a/doc/en/weechat_scripting.en.adoc +++ b/doc/en/weechat_scripting.en.adoc @@ -12,7 +12,7 @@ This manual documents WeeChat chat client, it is part of WeeChat. Latest version of this document can be found on this page: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -1133,7 +1133,7 @@ weechat.hook_process("url:https://weechat.org/dev/info/stable/", ---- [TIP] -All infos available about WeeChat are on page https://weechat.org/dev/info +All infos available about WeeChat are on page https://weechat.org/dev/info/ Example of URL transfer with an option: download latest WeeChat development package in file _/tmp/weechat-devel.tar.gz_: diff --git a/doc/en/weechat_user.en.adoc b/doc/en/weechat_user.en.adoc index f9a704f53..13de8c03f 100644 --- a/doc/en/weechat_user.en.adoc +++ b/doc/en/weechat_user.en.adoc @@ -12,7 +12,7 @@ This manual documents WeeChat chat client, it is part of WeeChat. Latest version of this document can be found on this page: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -64,7 +64,7 @@ Binary packages are available for many distributions, including: * Cygwin (Windows): select WeeChat packages in setup.exe * Debian/Ubuntu (or any Debian compatible distribution): `apt-get install weechat-curses weechat-plugins` + - For latest versions and nightly builds: https://weechat.org/download/debian + For latest versions and nightly builds: https://weechat.org/download/debian/ * Fedora Core: `dnf install weechat` * FreeBSD: `pkg install weechat` * Gentoo: `emerge weechat` @@ -3319,7 +3319,7 @@ which can also be for example `~/.weechat`. /msg nickserv cert add ---- -For more information, look at https://www.oftc.net/NickServ/CertFP +For more information, look at https://www.oftc.net/NickServ/CertFP/ [[irc_sasl_authentication]] ==== SASL authentication @@ -3614,7 +3614,7 @@ when replying to CTCP: | $compilation | WeeChat compilation date | `+Dec 16 2012+` | $osinfo | Info about OS | `+Linux 2.6.32-5-amd64 / x86_64+` | $site | WeeChat site | `+https://weechat.org/+` -| $download | WeeChat site, download page | `+https://weechat.org/download+` +| $download | WeeChat site, download page | `+https://weechat.org/download/+` | $time | Current date/time | `+Sun, 16 Dec 2012 10:40:48 +0100+` | $username | User name on IRC server | `+name+` | $realname | Real name on IRC server | `+John Doe+` @@ -3631,7 +3631,7 @@ If CTCP options are not defined (by default), CTCP replies are: | CTCP | Reply format | Example | CLIENTINFO | `+$clientinfo+` | `+ACTION DCC CLIENTINFO FINGER PING SOURCE TIME USERINFO VERSION+` | FINGER | `+WeeChat $versiongit+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4)+` -| SOURCE | `+$download+` | `+https://weechat.org/download+` +| SOURCE | `+$download+` | `+https://weechat.org/download/+` | TIME | `+$time+` | `+Sun, 16 Dec 2012 10:40:48 +0100+` | USERINFO | `+$username ($realname)+` | `+name (John Doe)+` | VERSION | `+WeeChat $versiongit ($compilation)+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4) (Dec 16 2012)+` @@ -3930,7 +3930,7 @@ The Relay plugin is used to relay data via network, using different protocols: * _irc_: IRC proxy: used to share connections to IRC servers with one or many other IRC clients * _weechat_: protocol used by remote interfaces to display and interact with - WeeChat, see: https://weechat.org/about/interfaces + WeeChat, see: https://weechat.org/about/interfaces/ [[relay_password]] === Password @@ -4045,7 +4045,7 @@ commands: The Relay plugin can send data to remote interface using WeeChat protocol. -You can connect with a remote interface, see: https://weechat.org/about/interfaces +You can connect with a remote interface, see: https://weechat.org/about/interfaces/ [IMPORTANT] WeeChat itself can NOT connect to another WeeChat with this protocol. @@ -5020,7 +5020,7 @@ scripts, please read the link:weechat_scripting.en.html[WeeChat scripting guide] The script manager (command <<command_script_script,/script>>) is used to load/unload scripts of any language, and install/remove scripts of WeeChat -scripts repository, which are visible at this URL: https://weechat.org/scripts +scripts repository, which are visible at this URL: https://weechat.org/scripts/ For privacy considerations, the download of scripts is disabled by default. + To enable it, type this command: @@ -5268,4 +5268,4 @@ For support with IRC, on server _irc.libera.chat_: ** _#weechat-de_ (German) ** _#weechat-fi_ (Finnish) -For other ways of support, see: https://weechat.org/about/support +For other ways of support, see: https://weechat.org/about/support/ diff --git a/doc/es/weechat_faq.es.adoc b/doc/es/weechat_faq.es.adoc index 2bd73b0cd..8dd647457 100644 --- a/doc/es/weechat_faq.es.adoc +++ b/doc/es/weechat_faq.es.adoc @@ -36,7 +36,7 @@ no se aplican a WeeChat!). Porque WeeChat es muy ligero y ofrece funcionalidades innovadoras. -Más información de las funcionalidades de WeeChat en la página: https://weechat.org/about/features +Más información de las funcionalidades de WeeChat en la página: https://weechat.org/about/features/ [[compilation_install]] == Compilación / instalación @@ -45,7 +45,7 @@ Más información de las funcionalidades de WeeChat en la página: https://weech === ¿He oido que hay muchas interfaces gráficas de susuario (GUI) para WeeChat. ¿Cómo puedo compilarlas o usarlas? Hay disponibles algunas GUIs, eche un vistazo a la página de interfaces remotas: -https://weechat.org/about/interfaces +https://weechat.org/about/interfaces/ [[compile_git]] === No puedo compilar WeeChat después de haber clonado el repositorio git, ¿por qué? @@ -1257,7 +1257,7 @@ para más información relacionada con los archivos de configuración. [[bug_task_patch]] === ¿Cómo podría informar de errores, pedir nuevas funcionalidades o enviar parches? -Vea: https://weechat.org/about/support +Vea: https://weechat.org/about/support/ [[gdb_error_threads]] === Cuando ejecuto WeeChat bajo gdb, hay un error con la muestra de las conversaciones, ¿qué puedo hacer? @@ -1294,10 +1294,10 @@ algunos sistemas operativos en los que no podemos probar WeeChat. Hay muchas tareas que hacer (probar, escribir código, documentación, etc.) Por favor, contacte con nosotros mediante IRC o correo electrónico, eche un vistazo a la página de soporte: -https://weechat.org/about/support +https://weechat.org/about/support/ [[donate]] === ¿Puedo donar dinero u otras cosas a las personas que desarrollan WeeChat? Puede donar dinero para ayudar en el desarrollo. -Más detalles en https://weechat.org/donate +Más detalles en https://weechat.org/donate/ diff --git a/doc/es/weechat_quickstart.es.adoc b/doc/es/weechat_quickstart.es.adoc index a39654e4c..4213399f3 100644 --- a/doc/es/weechat_quickstart.es.adoc +++ b/doc/es/weechat_quickstart.es.adoc @@ -391,12 +391,12 @@ por ejemplo: Vea `/help script` para obtener más información. Hay una lista de scripts disponibles en WeeChat mediante el comando `/script` o en este enlace: -https://weechat.org/scripts +https://weechat.org/scripts/ [[more_doc]] == Más documentación Ahora puede usar WeeChat y leer las FAQ/documentación para cada pregunta -en: https://weechat.org/doc +en: https://weechat.org/doc/ ¡Disfrute de WeeChat! diff --git a/doc/fr/includes/man.fr.adoc b/doc/fr/includes/man.fr.adoc index 95850603b..a36920899 100644 --- a/doc/fr/includes/man.fr.adoc +++ b/doc/fr/includes/man.fr.adoc @@ -1,7 +1,7 @@ // tag::plugin_options[] Pour une documentation complète sur les options des extensions, merci de consulter la documentation des extensions dans le -https://weechat.org/doc[guide utilisateur de WeeChat]. +https://weechat.org/doc/[guide utilisateur de WeeChat]. Avec l'extension irc, vous pouvez vous connecter à un serveur de manière temporaire avec une URL, comme ceci : diff --git a/doc/fr/weechat-headless.1.fr.adoc b/doc/fr/weechat-headless.1.fr.adoc index 6af43a9a4..a1bcddcbb 100644 --- a/doc/fr/weechat-headless.1.fr.adoc +++ b/doc/fr/weechat-headless.1.fr.adoc @@ -62,4 +62,4 @@ include::includes/man.fr.adoc[tag=copyright] == SUPPORT / SIGNALER DES BUGS -Pour de l'aide ou signaler un bug : https://weechat.org/about/support +Pour de l'aide ou signaler un bug : https://weechat.org/about/support/ diff --git a/doc/fr/weechat.1.fr.adoc b/doc/fr/weechat.1.fr.adoc index dde9abe86..54cfbbfe1 100644 --- a/doc/fr/weechat.1.fr.adoc +++ b/doc/fr/weechat.1.fr.adoc @@ -58,4 +58,4 @@ include::includes/man.fr.adoc[tag=copyright] == SUPPORT / SIGNALER DES BUGS -Pour de l'aide ou signaler un bug : https://weechat.org/about/support +Pour de l'aide ou signaler un bug : https://weechat.org/about/support/ diff --git a/doc/fr/weechat_dev.fr.adoc b/doc/fr/weechat_dev.fr.adoc index 48c8b39b7..54b057d47 100644 --- a/doc/fr/weechat_dev.fr.adoc +++ b/doc/fr/weechat_dev.fr.adoc @@ -13,7 +13,7 @@ Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. La dernière version de ce document peut être téléchargée sur cette page : -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] diff --git a/doc/fr/weechat_faq.fr.adoc b/doc/fr/weechat_faq.fr.adoc index f28c2c278..8ebc74294 100644 --- a/doc/fr/weechat_faq.fr.adoc +++ b/doc/fr/weechat_faq.fr.adoc @@ -33,7 +33,7 @@ mais elle ne s'applique pas à WeeChat !). Parce que WeeChat est très léger et apporte des fonctionnalités innovantes. Plus d'infos sur la page des fonctionnalités WeeChat : -https://weechat.org/about/features +https://weechat.org/about/features/ [[compilation_install]] == Compilation / installation @@ -42,7 +42,7 @@ https://weechat.org/about/features === J'ai entendu parler de plusieurs interfaces pour WeeChat. Comment puis-je les compiler/utiliser ? Des interfaces distantes sont disponibles, voir la page avec les interfaces -distantes : https://weechat.org/about/interfaces +distantes : https://weechat.org/about/interfaces/ [[compile_git]] === Je ne peux pas compiler WeeChat après avoir cloné la base git, pourquoi ? @@ -1295,7 +1295,7 @@ pour plus d'informations sur les fichiers de configuration. [[bug_task_patch]] === Comment puis-je reporter un bug, demander une nouvelle fonctionnalité ou envoyer un patch ? -Voir : https://weechat.org/about/support +Voir : https://weechat.org/about/support/ [[gdb_error_threads]] === Quand je lance WeeChat sous gdb, il y a une erreur à propos des threads, que puis-je faire ? @@ -1333,10 +1333,10 @@ tester WeeChat. Il y a plusieurs choses à faire (test, code, documentation, etc.) Merci de prendre contact avec nous par IRC ou mail, consultez la page -support : https://weechat.org/about/support +support : https://weechat.org/about/support/ [[donate]] === Puis-je donner de l'argent ou d'autres choses aux développeurs WeeChat ? Vous pouvez donner de l'argent pour aider le développement. -Plus de détails sur https://weechat.org/donate +Plus de détails sur https://weechat.org/donate/ diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index 2404de926..aabecb553 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -14,7 +14,7 @@ Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. La dernière version de ce document peut être téléchargée sur cette page : -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -9517,7 +9517,7 @@ d'une commande externe). [TIP] Si vous souhaitez récupérer des infos à propos de WeeChat (comme la version stable actuelle, le dernier commit git, etc.), vous pouvez utiliser les URLs -sur la page https://weechat.org/dev/info +sur la page https://weechat.org/dev/info/ [NOTE] La taille du tampon pour l'envoi des données à la fonction de rappel est de diff --git a/doc/fr/weechat_quickstart.fr.adoc b/doc/fr/weechat_quickstart.fr.adoc index ddd6d1661..d5a17ce3f 100644 --- a/doc/fr/weechat_quickstart.fr.adoc +++ b/doc/fr/weechat_quickstart.fr.adoc @@ -381,12 +381,12 @@ par exemple : Voir `/help script` pour plus d'infos. Une liste des scripts est disponible avec `/script` ou à cette URL : -https://weechat.org/scripts +https://weechat.org/scripts/ [[more_doc]] == Plus de documentation Vous pouvez maintenant utiliser WeeChat et lire la FAQ/documentation pour -toute autre question : https://weechat.org/doc +toute autre question : https://weechat.org/doc/ Bon WeeChat ! diff --git a/doc/fr/weechat_scripting.fr.adoc b/doc/fr/weechat_scripting.fr.adoc index 4b541055b..fe841262e 100644 --- a/doc/fr/weechat_scripting.fr.adoc +++ b/doc/fr/weechat_scripting.fr.adoc @@ -14,7 +14,7 @@ Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. La dernière version de ce document peut être téléchargée sur cette page : -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -1164,7 +1164,7 @@ weechat.hook_process("url:https://weechat.org/dev/info/stable/", [TIP] Toutes les infos disponibles à propos de WeeChat sont sur la page -https://weechat.org/dev/info +https://weechat.org/dev/info/ Exemple de transfert d'URL avec une option : télécharger le dernier paquet de développement WeeChat dans le fichier _/tmp/weechat-devel.tar.gz_ : diff --git a/doc/fr/weechat_user.fr.adoc b/doc/fr/weechat_user.fr.adoc index 405168784..633d1e3be 100644 --- a/doc/fr/weechat_user.fr.adoc +++ b/doc/fr/weechat_user.fr.adoc @@ -14,7 +14,7 @@ Ce manuel documente le client de messagerie instantanée WeeChat, il fait partie de WeeChat. La dernière version de ce document peut être téléchargée sur cette page : -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -67,7 +67,7 @@ Les paquets binaires sont disponibles pour beaucoup de distributions, dont : * Debian/Ubuntu (ou toute distribution compatible Debian) : `apt-get install weechat-curses weechat-plugins` + Pour les dernières versions et les constructions nocturnes : - https://weechat.org/download/debian + https://weechat.org/download/debian/ * Fedora Core : `dnf install weechat` * FreeBSD : `pkg install weechat` * Gentoo : `emerge weechat` @@ -3429,7 +3429,7 @@ config WeeChat qui peut aussi être par exemple `~/.weechat`. /msg nickserv cert add ---- -Pour plus d'informations, consulter https://www.oftc.net/NickServ/CertFP +Pour plus d'informations, consulter https://www.oftc.net/NickServ/CertFP/ [[irc_sasl_authentication]] ==== Authentification avec SASL @@ -3733,7 +3733,7 @@ automatiquement remplacées par WeeChat lors de la réponse au CTCP : | $compilation | Date de compilation WeeChat | `+Dec 16 2012+` | $osinfo | Information sur l'OS | `+Linux 2.6.32-5-amd64 / x86_64+` | $site | Site WeeChat | `+https://weechat.org/+` -| $download | Site WeeChat, page téléchargement | `+https://weechat.org/download+` +| $download | Site WeeChat, page téléchargement | `+https://weechat.org/download/+` | $time | Date/heure courante | `+Sun, 16 Dec 2012 10:40:48 +0100+` | $username | Nom d'utilisateur sur le serveur | `+nom+` | $realname | Nom réel sur le serveur | `+John Doe+` @@ -3751,7 +3751,7 @@ Si les options CTCP ne sont pas définies (par défaut), les réponses CTCP sont | CTCP | Format de réponse | Exemple | CLIENTINFO | `+$clientinfo+` | `+ACTION DCC CLIENTINFO FINGER PING SOURCE TIME USERINFO VERSION+` | FINGER | `+WeeChat $versiongit+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4)+` -| SOURCE | `+$download+` | `+https://weechat.org/download+` +| SOURCE | `+$download+` | `+https://weechat.org/download/+` | TIME | `+$time+` | `+Sun, 16 Dec 2012 10:40:48 +0100+` | USERINFO | `+$username ($realname)+` | `+nom (John Doe)+` | VERSION | `+WeeChat $versiongit ($compilation)+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4) (Dec 16 2012)+` @@ -4059,7 +4059,7 @@ utilisant divers protocoles : * _irc_ : proxy IRC : utilisé pour partager la connexions aux serveurs IRC avec un ou plusieurs autres clients IRC * _weechat_ : protocole utilisé par les interfaces distantes pour afficher et - interagir avec WeeChat, voir : https://weechat.org/about/interfaces + interagir avec WeeChat, voir : https://weechat.org/about/interfaces/ [[relay_password]] === Mot de passe @@ -4183,7 +4183,7 @@ L'extension Relay peut envoyer les données à une interface distante en utilisant le protocole WeeChat. Vous pouvez vous connecter avec une interface distante, voir : -https://weechat.org/about/interfaces +https://weechat.org/about/interfaces/ [IMPORTANT] WeeChat lui-même ne peut PAS se connecter sur un autre WeeChat avec ce @@ -5203,7 +5203,7 @@ link:weechat_scripting.fr.html[Guide pour scripts WeeChat]. Le gestionnaire de scripts (commands <<command_script_script,/script>>) est utilisé pour charger/décharger des scripts pour n'importe quel langage, et installer/supprimer des scripts du dépôt WeeChat, qui sont visibles à cette -URL : https://weechat.org/scripts +URL : https://weechat.org/scripts/ Pour des considérations de confidentialité, le téléchargement des scripts est désactivé par défaut. + @@ -5452,4 +5452,4 @@ Pour le support via IRC, sur le serveur _irc.libera.chat_ : ** _#weechat-de_ (Allemand) ** _#weechat-fi_ (Finnois) -Pour les autres formes de support, voir : https://weechat.org/about/support +Pour les autres formes de support, voir : https://weechat.org/about/support/ diff --git a/doc/it/includes/man.it.adoc b/doc/it/includes/man.it.adoc index aced7a00b..96598469d 100644 --- a/doc/it/includes/man.it.adoc +++ b/doc/it/includes/man.it.adoc @@ -1,7 +1,7 @@ // tag::plugin_options[] // TRANSLATION MISSING For complete doc on plugin options, please look at plugins documentation in -https://weechat.org/doc[WeeChat user's guide]. +https://weechat.org/doc/[WeeChat user's guide]. With irc plugin, you can connect to temporary server with an URL like: diff --git a/doc/it/weechat-headless.1.it.adoc b/doc/it/weechat-headless.1.it.adoc index 559d30186..a8e5168d9 100644 --- a/doc/it/weechat-headless.1.it.adoc +++ b/doc/it/weechat-headless.1.it.adoc @@ -73,4 +73,4 @@ include::includes/man.it.adoc[tag=copyright] == SUPPORT / REPORTING BUGS // TRANSLATION MISSING -For help or a bug report: https://weechat.org/about/support +For help or a bug report: https://weechat.org/about/support/ diff --git a/doc/it/weechat.1.it.adoc b/doc/it/weechat.1.it.adoc index b69124f9d..28519543f 100644 --- a/doc/it/weechat.1.it.adoc +++ b/doc/it/weechat.1.it.adoc @@ -69,4 +69,4 @@ include::includes/man.it.adoc[tag=copyright] == SUPPORT / REPORTING BUGS // TRANSLATION MISSING -For help or a bug report: https://weechat.org/about/support +For help or a bug report: https://weechat.org/about/support/ diff --git a/doc/it/weechat_faq.it.adoc b/doc/it/weechat_faq.it.adoc index b7911d2b8..c47c1f593 100644 --- a/doc/it/weechat_faq.it.adoc +++ b/doc/it/weechat_faq.it.adoc @@ -40,7 +40,7 @@ non c'entra con WeeChat!). Because WeeChat is very light and brings innovating features. // TRANSLATION MISSING -More info on the WeeChat features page: https://weechat.org/about/features +More info on the WeeChat features page: https://weechat.org/about/features/ [[compilation_install]] == Compilazione / installazione @@ -50,7 +50,7 @@ More info on the WeeChat features page: https://weechat.org/about/features // TRANSLATION MISSING Some remote GUIs are available, see the remote interfaces page: -https://weechat.org/about/interfaces +https://weechat.org/about/interfaces/ [[compile_git]] === Non è possibile compilare WeeChat dopo aver clonato il repository git, perché? @@ -1359,7 +1359,7 @@ for more information about configuration files. === Come posso segnalare bug, richiedere nuove funzionalità o inviare patch? // TRANSLATION MISSING -See: https://weechat.org/about/support +See: https://weechat.org/about/support/ [[gdb_error_threads]] === Quando eseguo WeeChat in gdb, c'è un errore riguardo ai thread, cosa posso fare? @@ -1398,10 +1398,10 @@ per gli OS che non abbiamo, e su cui testare WeeChat, è ben accetto. Ci sono molti compiti da fare (testing, scrittura del codice, documentazione, ...) Per favore contattateci su IRC o via mail e consultate la pagina di supporto: -https://weechat.org/about/support +https://weechat.org/about/support/ [[donate]] === Posso donare denaro o altre cose agli sviluppatori di WeeChat? È possibile donare denaro per aiutare lo sviluppo. -Maggiori dettagli su https://weechat.org/donate +Maggiori dettagli su https://weechat.org/donate/ diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index 20b606fc7..c43acc68a 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -20,7 +20,7 @@ Questo manuale documenta il client di chat WeeChat, ed è parte del programma stesso. La versione più recente di questo documento si trova qui: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -9641,7 +9641,7 @@ In scripting API, the function _name_ is called directly and its result // TRANSLATION MISSING [TIP] If you want to retrieve infos about WeeChat (like current stable version, -latest git commit, ...), you can use URLs on page https://weechat.org/dev/info +latest git commit, ...), you can use URLs on page https://weechat.org/dev/info/ [NOTE] La dimensione del buffer per l'invio dei dati alla callback è di 64KB (ci sono diff --git a/doc/it/weechat_quickstart.it.adoc b/doc/it/weechat_quickstart.it.adoc index 22f29c377..169e0ac48 100644 --- a/doc/it/weechat_quickstart.it.adoc +++ b/doc/it/weechat_quickstart.it.adoc @@ -416,13 +416,13 @@ See `/help script` for more info. // TRANSLATION MISSING A list of scripts is available in WeeChat with `/script` or at this URL: -https://weechat.org/scripts +https://weechat.org/scripts/ [[more_doc]] == Ulteriore documentazione È ora possibilie usare WeeChat e leggere FAQ/documentazione per ogni altra domanda: -https://weechat.org/doc +https://weechat.org/doc/ Buon WeeChat! diff --git a/doc/it/weechat_scripting.it.adoc b/doc/it/weechat_scripting.it.adoc index c2012528c..abdb52d65 100644 --- a/doc/it/weechat_scripting.it.adoc +++ b/doc/it/weechat_scripting.it.adoc @@ -20,7 +20,7 @@ Questo manuale documenta il client di chat WeeChat, ed è parte del programma stesso. La versione più recente di questo documento si trova qui: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -1186,7 +1186,7 @@ weechat.hook_process("url:https://weechat.org/dev/info/stable/", [TIP] Tutte le informazioni disponibili su WeeChat sono sulla pagina -https://weechat.org/dev/info +https://weechat.org/dev/info/ Esempio di trasferimento di un URL con un'opzione: scaricare l'ultimo pacchetto di sviluppo di WeeChat nel file _/tmp/weechat-devel.tar.gz_: diff --git a/doc/it/weechat_user.it.adoc b/doc/it/weechat_user.it.adoc index ef0575dcd..0607f065f 100644 --- a/doc/it/weechat_user.it.adoc +++ b/doc/it/weechat_user.it.adoc @@ -20,7 +20,7 @@ Questo manuale documenta il client di chat WeeChat, ed è parte del programma stesso. È possibile trovare l'ultima versione di questo documento qui: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -78,7 +78,7 @@ I pacchetti binari sono disponibili per molte distribuzioni, incluse: // TRANSLATION MISSING * Debian/Ubuntu (o qualunque distribuzione compatibile): `apt-get install weechat-curses weechat-plugins` + - For latest versions and nightly builds: https://weechat.org/download/debian + For latest versions and nightly builds: https://weechat.org/download/debian/ * Fedora Core: `dnf install weechat` * FreeBSD: `pkg install weechat` * Gentoo: `emerge weechat` @@ -3588,7 +3588,7 @@ which can also be for example `~/.weechat`. /msg nickserv cert add ---- -Per maggiori informazioni consultare https://www.oftc.net/NickServ/CertFP +Per maggiori informazioni consultare https://www.oftc.net/NickServ/CertFP/ [[irc_sasl_authentication]] ==== Autenticazione SASL @@ -3905,7 +3905,7 @@ automaticamente da WeeChat quando si risponde alle CTCP | $compilation | Data di compilazione di WeeChat | `+Dec 16 2012+` | $osinfo | Informazioni sull'OS | `+Linux 2.6.32-5-amd64 / x86_64+` | $site | Sito di WeeChat | `+https://weechat.org/+` -| $download | Sito di WeeChat, pagina di download | `+https://weechat.org/download+` +| $download | Sito di WeeChat, pagina di download | `+https://weechat.org/download/+` | $time | Data/ora correnti | `+Sun, 16 Dec 2012 10:40:48 +0100+` | $username | Nome utente sul server IRC | `+name+` | $realname | Nome reale sul server IRC | `+John Doe+` @@ -3925,7 +3925,7 @@ le risposte CTCP sono: | CTCP | Formato risposta | Esempio | CLIENTINFO | `+$clientinfo+` | `+ACTION DCC CLIENTINFO FINGER PING SOURCE TIME USERINFO VERSION+` | FINGER | `+WeeChat $versiongit+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4)+` -| SOURCE | `+$download+` | `+https://weechat.org/download+` +| SOURCE | `+$download+` | `+https://weechat.org/download/+` | TIME | `+$time+` | `+Sun, 16 Dec 2012 10:40:48 +0100+` | USERINFO | `+$username ($realname)+` | `+name (John Doe)+` | VERSION | `+WeeChat $versiongit ($compilation)+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4) (Dec 16 2012)+` @@ -4241,7 +4241,7 @@ protocolli differenti: * _irc_: proxy IRC: usato per condividere le connessioni ai server IRC con uno o più client IRC * _weechat_: protocol used by remote interfaces to display and interact with - WeeChat, see: https://weechat.org/about/interfaces + WeeChat, see: https://weechat.org/about/interfaces/ // TRANSLATION MISSING [[relay_password]] @@ -4363,7 +4363,7 @@ Il plugin Relay può inviare dati alle interfacce remote usando il protocollo WeeChat. // TRANSLATION MISSING -You can connect with a remote interface, see: https://weechat.org/about/interfaces +You can connect with a remote interface, see: https://weechat.org/about/interfaces/ [IMPORTANT] // TRANSLATION MISSING @@ -5367,7 +5367,7 @@ per gli script, consultare la link:weechat_scripting.it.html[Guida allo Scriptin // TRANSLATION MISSING The script manager (command <<command_script_script,/script>>) is used to load/unload scripts of any language, and install/remove scripts of WeeChat -scripts repository, which are visible at this URL: https://weechat.org/scripts +scripts repository, which are visible at this URL: https://weechat.org/scripts/ // TRANSLATION MISSING For privacy considerations, the download of scripts is disabled by default. + @@ -5657,4 +5657,4 @@ For support with IRC, on server _irc.libera.chat_: ** _#weechat-fi_ (Finlandese) // TRANSLATION MISSING -For other ways of support, see: https://weechat.org/about/support +For other ways of support, see: https://weechat.org/about/support/ diff --git a/doc/ja/weechat-headless.1.ja.adoc b/doc/ja/weechat-headless.1.ja.adoc index c8fce6fd7..753e22854 100644 --- a/doc/ja/weechat-headless.1.ja.adoc +++ b/doc/ja/weechat-headless.1.ja.adoc @@ -62,4 +62,4 @@ include::includes/man.ja.adoc[tag=copyright] == サポート / バグ報告 -手助けを受けたりバグを報告するには: https://weechat.org/about/support +手助けを受けたりバグを報告するには: https://weechat.org/about/support/ diff --git a/doc/ja/weechat.1.ja.adoc b/doc/ja/weechat.1.ja.adoc index b66df309c..9d0996c8b 100644 --- a/doc/ja/weechat.1.ja.adoc +++ b/doc/ja/weechat.1.ja.adoc @@ -59,4 +59,4 @@ include::includes/man.ja.adoc[tag=copyright] == サポート / バグ報告 -手助けを受けたりバグを報告するには: https://weechat.org/about/support +手助けを受けたりバグを報告するには: https://weechat.org/about/support/ diff --git a/doc/ja/weechat_dev.ja.adoc b/doc/ja/weechat_dev.ja.adoc index 1d7ff50b5..341a3d0a9 100644 --- a/doc/ja/weechat_dev.ja.adoc +++ b/doc/ja/weechat_dev.ja.adoc @@ -17,7 +17,7 @@ このマニュアルは WeeChat チャットクライアントについての文書で、これは WeeChat の一部です。 この文書の最新版は以下のページにあります: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] diff --git a/doc/ja/weechat_faq.ja.adoc b/doc/ja/weechat_faq.ja.adoc index e340775c0..97c0a21a7 100644 --- a/doc/ja/weechat_faq.ja.adoc +++ b/doc/ja/weechat_faq.ja.adoc @@ -37,7 +37,7 @@ WeeChat とは関係ありませんよ!)。 WeeChat は非常に軽く、革新的な機能を備えているからです。 -WeeChat の機能に関するより詳しい情報: https://weechat.org/about/features +WeeChat の機能に関するより詳しい情報: https://weechat.org/about/features/ [[compilation_install]] == コンパイル / インストール @@ -46,7 +46,7 @@ WeeChat の機能に関するより詳しい情報: https://weechat.org/about/fe === WeeChat には多くの GUI があると聞きました。コンパイル/利用方法を教えてください。 いくつかのリモート GUI が利用可能です、以下のリモートインターフェースに関するページを参照してください: -https://weechat.org/about/interfaces +https://weechat.org/about/interfaces/ [[compile_git]] === git リポジトリをクローンした後に WeeChat をコンパイルできません。 @@ -1262,7 +1262,7 @@ stored in _sec.conf_ with the `/secure` command). [[bug_task_patch]] === どのようにバグ報告、新機能のリクエスト、パッチ送信すればよいですか。 -以下のページを参照してください: https://weechat.org/about/support +以下のページを参照してください: https://weechat.org/about/support/ [[gdb_error_threads]] === gdb で WeeChat を実行する場合、スレッドに関するエラーが発生します。 @@ -1300,10 +1300,10 @@ OS で WeeChat をテストすることを歓迎します。 多くの課題があります (テスト、コード、ドキュメント作成、...)。 IRC かメールで連絡を取り、サポートページを確認してください: -https://weechat.org/about/support +https://weechat.org/about/support/ [[donate]] === WeeChat 開発者にお金か何かを贈りたいのですが。 開発補助のためお金を贈ることができます。詳しいことは -https://weechat.org/donate に載っています。 +https://weechat.org/donate/ に載っています。 diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index 7e46c0bdd..2c7c63fac 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -18,7 +18,7 @@ このマニュアルは WeeChat チャットクライアントについての文書で、WeeChat の一部です。 この文書の最新版を見るには以下のページを確認して下さい: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -9370,7 +9370,7 @@ _callback_ コールバックに送られます (関数の戻り値は外部コ [TIP] WeeChat に関する情報 (例えば現在の安定版、最新の git コミット、...) -が欲しい場合、https://weechat.org/dev/info に書かれている URL を使ってください +が欲しい場合、https://weechat.org/dev/info/ に書かれている URL を使ってください [NOTE] コールバックにデータを送信するバッファのサイズは 64KB (バッファは 2 diff --git a/doc/ja/weechat_quickstart.ja.adoc b/doc/ja/weechat_quickstart.ja.adoc index b17e0ee23..3ad6aaa10 100644 --- a/doc/ja/weechat_quickstart.ja.adoc +++ b/doc/ja/weechat_quickstart.ja.adoc @@ -377,12 +377,12 @@ WeeChat では多くの外部スクリプト (貢献者の作った) より詳しい情報を参照するには `/help script` を使ってください。 スクリプトの一覧を参照するには WeeChat から `/script` を実行するか、以下の URL にアクセスしてください: -https://weechat.org/scripts +https://weechat.org/scripts/ [[more_doc]] == 詳しいドキュメント情報 FAQ やその他の質問に関するドキュメントはこちらで参照できます: -https://weechat.org/doc +https://weechat.org/doc/ WeeChat をお楽しみください! diff --git a/doc/ja/weechat_scripting.ja.adoc b/doc/ja/weechat_scripting.ja.adoc index 3226c5ea2..cfa88d5d3 100644 --- a/doc/ja/weechat_scripting.ja.adoc +++ b/doc/ja/weechat_scripting.ja.adoc @@ -18,7 +18,7 @@ このマニュアルは WeeChat チャットクライアントについて説明しており、WeeChat の一部です。 このマニュアルの最新版は以下のページを参照してください: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -1165,7 +1165,7 @@ weechat.hook_process("url:https://weechat.org/dev/info/stable/", ---- [TIP] -WeeChat に関して利用できる情報は全て https://weechat.org/dev/info にあります +WeeChat に関して利用できる情報は全て https://weechat.org/dev/info/ にあります オプション有りの URL 転送の例: 最新の WeeChat 開発パッケージをファイル _/tmp/weechat-devel.tar.gz_ にダウンロード: diff --git a/doc/ja/weechat_user.ja.adoc b/doc/ja/weechat_user.ja.adoc index 4d59542aa..6bd85f6df 100644 --- a/doc/ja/weechat_user.ja.adoc +++ b/doc/ja/weechat_user.ja.adoc @@ -18,7 +18,7 @@ このマニュアルは WeeChat チャットクライアントについての文書で、これは WeeChat の一部です。 この文書の最新版は以下のページにあります: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -71,7 +71,7 @@ WeeChat をインストールするには、以下のものが必要です: // TRANSLATION MISSING * Debian/Ubuntu (または Debian 互換ディストリビューション): `apt-get install weechat-curses weechat-plugins` + - For latest versions and nightly builds: https://weechat.org/download/debian + For latest versions and nightly builds: https://weechat.org/download/debian/ * Fedora Core: `dnf install weechat` * FreeBSD: `pkg install weechat` * Gentoo: `emerge weechat` @@ -3447,7 +3447,7 @@ which can also be for example `~/.weechat`. /msg nickserv cert add ---- -より詳しい情報は https://www.oftc.net/NickServ/CertFP を確認してください。 +より詳しい情報は https://www.oftc.net/NickServ/CertFP/ を確認してください。 [[irc_sasl_authentication]] ==== SASL 認証 @@ -3750,7 +3750,7 @@ CTCP 応答時に自動的に WeeChat によって展開されます: | $compilation | WeeChat コンパイル日時 | `+Dec 16 2012+` | $osinfo | OS に関する情報 | `+Linux 2.6.32-5-amd64 / x86_64+` | $site | WeeChat ウェブサイト | `+https://weechat.org/+` -| $download | WeeChat ウェブサイトのダウンロードページ | `+https://weechat.org/download+` +| $download | WeeChat ウェブサイトのダウンロードページ | `+https://weechat.org/download/+` | $time | 現在の日時 | `+Sun, 16 Dec 2012 10:40:48 +0100+` | $username | IRC サーバ上で使うユーザ名 | `+name+` | $realname | IRC サーバ上で使う実名 | `+John Doe+` @@ -3767,7 +3767,7 @@ CTCP オプションが設定されていない (デフォルトの) 場合、CT | CTCP | 応答書式 | 例 | CLIENTINFO | `+$clientinfo+` | `+ACTION DCC CLIENTINFO FINGER PING SOURCE TIME USERINFO VERSION+` | FINGER | `+WeeChat $versiongit+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4)+` -| SOURCE | `+$download+` | `+https://weechat.org/download+` +| SOURCE | `+$download+` | `+https://weechat.org/download/+` | TIME | `+$time+` | `+Sun, 16 Dec 2012 10:40:48 +0100+` | USERINFO | `+$username ($realname)+` | `+name (John Doe)+` | VERSION | `+WeeChat $versiongit ($compilation)+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4) (Dec 16 2012)+` @@ -4067,7 +4067,7 @@ Relay プラグインはネットワークを介して異なるプロトコル * _irc_: IRC プロキシ: IRC サーバに対する接続を、単一または複数の IRC クライアントで共有するために用います。 * _weechat_: protocol used by remote interfaces to display and interact with - WeeChat, see: https://weechat.org/about/interfaces + WeeChat, see: https://weechat.org/about/interfaces/ [[relay_password]] === パスワード @@ -4189,7 +4189,7 @@ commands: Relay プラグインは WeeChat プロトコルを使ってリモートインターフェースに対してデータを送信できます。 // TRANSLATION MISSING -You can connect with a remote interface, see: https://weechat.org/about/interfaces +You can connect with a remote interface, see: https://weechat.org/about/interfaces/ [IMPORTANT] このプロトコルを使った場合 WeeChat から他の WeeChat に接続することはできません。 @@ -5183,7 +5183,7 @@ link:weechat_scripting.ja.html[WeeChat スクリプト作成ガイド]を参照 // TRANSLATION MISSING The script manager (command <<command_script_script,/script>>) is used to load/unload scripts of any language, and install/remove scripts of WeeChat -scripts repository, which are visible at this URL: https://weechat.org/scripts +scripts repository, which are visible at this URL: https://weechat.org/scripts/ // TRANSLATION MISSING For privacy considerations, the download of scripts is disabled by default. + @@ -5434,4 +5434,4 @@ IRC を使ったサポート窓口は _irc.libera.chat_ サーバにあります ** _#weechat-de_ (ドイツ語) ** _#weechat-fi_ (フィンランド語) -他の方法でサポートを受けるには、以下のページを参照してください: https://weechat.org/about/support +他の方法でサポートを受けるには、以下のページを参照してください: https://weechat.org/about/support/ diff --git a/doc/pl/includes/man.pl.adoc b/doc/pl/includes/man.pl.adoc index 76bcdc97c..d269efd08 100644 --- a/doc/pl/includes/man.pl.adoc +++ b/doc/pl/includes/man.pl.adoc @@ -1,6 +1,6 @@ // tag::plugin_options[] Kompletna dokumentacja na temat opcji wtyczek dostępna jest -w https://weechat.org/doc[WeeChat user's guide]. +w https://weechat.org/doc/[WeeChat user's guide]. Dzięki wtyczce irc możliwe jest połączenie z serwerami tymczasowymi za pomocą URLi jak: diff --git a/doc/pl/weechat-headless.1.pl.adoc b/doc/pl/weechat-headless.1.pl.adoc index bee3ae2f9..78faa9ebb 100644 --- a/doc/pl/weechat-headless.1.pl.adoc +++ b/doc/pl/weechat-headless.1.pl.adoc @@ -63,4 +63,4 @@ include::includes/man.pl.adoc[tag=copyright] == WSPARCIE / ZGŁASZANIE BŁĘDÓW -W celu uzyskania pomocy, lub zgłoszenia błędu zajrzyj na: https://weechat.org/about/support +W celu uzyskania pomocy, lub zgłoszenia błędu zajrzyj na: https://weechat.org/about/support/ diff --git a/doc/pl/weechat.1.pl.adoc b/doc/pl/weechat.1.pl.adoc index ccdbada06..caafa91fa 100644 --- a/doc/pl/weechat.1.pl.adoc +++ b/doc/pl/weechat.1.pl.adoc @@ -59,4 +59,4 @@ include::includes/man.pl.adoc[tag=copyright] == WSPARCIE / ZGŁASZANIE BŁĘDÓW -W celu uzyskania pomocy, lub zgłoszenia błędu zajrzyj na: https://weechat.org/about/support +W celu uzyskania pomocy, lub zgłoszenia błędu zajrzyj na: https://weechat.org/about/support/ diff --git a/doc/pl/weechat_faq.pl.adoc b/doc/pl/weechat_faq.pl.adoc index 91ae627a7..54074163a 100644 --- a/doc/pl/weechat_faq.pl.adoc +++ b/doc/pl/weechat_faq.pl.adoc @@ -37,7 +37,7 @@ pasuje ono do WeeChat!). Ponieważ WeeChat jest bardzo lekki i posiada innowacyjne funkcje. -Więcej informacji o moliwościach WeeChat można znaleźć tutaj: https://weechat.org/about/features +Więcej informacji o moliwościach WeeChat można znaleźć tutaj: https://weechat.org/about/features/ [[compilation_install]] == Kompilacja / instalacja @@ -46,7 +46,7 @@ Więcej informacji o moliwościach WeeChat można znaleźć tutaj: https://weech === Słyszałem o wielu GUI dla WeeChat. Jak mogę je skompilować/użyć? Dostępne są zdalne interfejsy, możesz o nich poczytać na tej stronie: -https://weechat.org/about/interfaces +https://weechat.org/about/interfaces/ [[compile_git]] === Nie mogę skompilować WeeChat po sklonowaniu repozytorium git, dlaczego? @@ -1260,7 +1260,7 @@ gdzie znajdziesz więcej informacji o plikach konfiguracyjnych. [[bug_task_patch]] === Jak zgłaszać błędy, prosić o nowe możliwości lub wysyłać patche? -Zobacz: https://weechat.org/about/support +Zobacz: https://weechat.org/about/support/ [[gdb_error_threads]] === Kiedy uruchamiam WeeChat pod gdb dostaję komunikat o wątkach, co mogę z tym zrobić? @@ -1297,10 +1297,10 @@ możliwe. Mile widziana jest pomoc w testowaniu dla systemów, których nie mamy Jest wiele zadań do zrobienia (testowanie, kod, dokumentacja, ...) Skontaktuj się z nami na IRC lub mailowo, szczegóły: -https://weechat.org/about/support +https://weechat.org/about/support/ [[donate]] === Czy mogę dać pieniądze albo inne rzeczy deweloperom WeeChat? Tak możesz dać nam pieniądze, aby wspomóc rozwój. -Szczegóły na https://weechat.org/donate +Szczegóły na https://weechat.org/donate/ diff --git a/doc/pl/weechat_quickstart.pl.adoc b/doc/pl/weechat_quickstart.pl.adoc index 2a09c5f47..7839f497f 100644 --- a/doc/pl/weechat_quickstart.pl.adoc +++ b/doc/pl/weechat_quickstart.pl.adoc @@ -376,12 +376,12 @@ i zainstalować za pomocą komendy `/script`, na przykład: Więcej informacji można uzyskać wykonując komendę `/help script`. Listę skryptów dostepnych dla WeeChat można uzyskać wywołując komendę `/script` -lub pod adresem https://weechat.org/scripts +lub pod adresem https://weechat.org/scripts/ [[more_doc]] == Więcej dokumentacji Możesz teraz używać WeeChat oraz przeczytać FAQ/dokumentację w razie innych pytań: -https://weechat.org/doc +https://weechat.org/doc/ Miłej pracy z WeeChat! diff --git a/doc/pl/weechat_scripting.pl.adoc b/doc/pl/weechat_scripting.pl.adoc index c90825722..e2861ead9 100644 --- a/doc/pl/weechat_scripting.pl.adoc +++ b/doc/pl/weechat_scripting.pl.adoc @@ -18,7 +18,7 @@ Tłumaczenie: Ten dokument opisuje klienta rozmów WeeChat, który jest częścią WeeChat. Najnowsza wersja tego dokumentu znajduje się na tej stronie: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -1141,7 +1141,7 @@ weechat.hook_process("url:https://weechat.org/dev/info/stable/", ---- [TIP] -Wszystkie informacje o WeeChat dostępne są na stronie https://weechat.org/dev/info +Wszystkie informacje o WeeChat dostępne są na stronie https://weechat.org/dev/info/ Przykładowy transfer URL z opcją: pobranie najnowszej wersji rozwojowej WeeChat do pliku _/tmp/weechat-devel.tar.gz_: diff --git a/doc/pl/weechat_user.pl.adoc b/doc/pl/weechat_user.pl.adoc index ab367a38e..d167299ad 100644 --- a/doc/pl/weechat_user.pl.adoc +++ b/doc/pl/weechat_user.pl.adoc @@ -18,7 +18,7 @@ Tłumaczenie: Ten dokument opisuje klienta rozmów WeeChat, będącego częścią WeeChat. Najnowsza wersja tego dokumentu dostępna jest na stronie: -https://weechat.org/doc +https://weechat.org/doc/ [[introduction]] @@ -70,7 +70,7 @@ Pakiety binarne dostępne są dla wielu dystrybucji, wliczając: * Cygwin (Windows): wybierz pakiet WeeChat w setup.exe * Debiana/Ubuntu (lub dowolna kompatybilna): `apt-get install weechat-curses weechat-plugins` + - Najnowsze wersje i nocne buildy można znaleźć na stonie: https://weechat.org/download/debian + Najnowsze wersje i nocne buildy można znaleźć na stonie: https://weechat.org/download/debian/ * Fedora Core: `dnf install weechat` * FreeBSD: `pkg install weechat` * Gentoo: `emerge weechat` @@ -3355,7 +3355,7 @@ który może być ustawiony na przykład na `~/.weechat`. /msg nickserv cert add ---- -Więcej informacji można znaleźć pod adresem: https://www.oftc.net/NickServ/CertFP +Więcej informacji można znaleźć pod adresem: https://www.oftc.net/NickServ/CertFP/ [[irc_sasl_authentication]] ==== Uwierzytelnianie SASL @@ -3655,7 +3655,7 @@ przez WeeChat podczas odpowiedzi na CTCP: | $compilation | Data kompilacji WeeChat | `+Dec 16 2012+` | $osinfo | Informacje o systemie operacyjnym | `+Linux 2.6.32-5-amd64 / x86_64+` | $site | Strona WeeChat | `+https://weechat.org/+` -| $download | Strona WeeChat, pobieranie | `+https://weechat.org/download+` +| $download | Strona WeeChat, pobieranie | `+https://weechat.org/download/+` | $time | Obecna data/czas | `+Sun, 16 Dec 2012 10:40:48 +0100+` | $username | Nazwa użytkownika na serwerze IRC | `+name+` | $realname | Prawdziwa nazwa na serwerze IRC | `+John Doe+` @@ -3672,7 +3672,7 @@ Jeśli opcje CTCP nie są zdefiniowane (domyślne), odpowiedzi CTCP to: | CTCP | Format odpowiedzi | Przykład | CLIENTINFO | `+$clientinfo+` | `+ACTION DCC CLIENTINFO FINGER PING SOURCE TIME USERINFO VERSION+` | FINGER | `+WeeChat $versiongit+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4)+` -| SOURCE | `+$download+` | `+https://weechat.org/download+` +| SOURCE | `+$download+` | `+https://weechat.org/download/+` | TIME | `+$time+` | `+Sun, 16 Dec 2012 10:40:48 +0100+` | USERINFO | `+$username ($realname)+` | `+name (John Doe)+` | VERSION | `+WeeChat $versiongit ($compilation)+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4) (Dec 16 2012)+` @@ -3974,7 +3974,7 @@ protokołów: * _irc_: pośrednik IRC: używany do dzielenia połączeń z serwerami IRC z jednym lub wieloma klientami IRC * _weechat_: protocol used by remote interfaces to display and interact with - WeeChat, see: https://weechat.org/about/interfaces + WeeChat, see: https://weechat.org/about/interfaces/ [[relay_password]] === Hasło @@ -4092,7 +4092,7 @@ za pomocą tych komend: Wtyczka relay może wysyłać dane do zdalnego interfejsu korzystając z protokołu WeeChat. -Możesz się połączyć ze zdalnym interfejsem, zobacz: https://weechat.org/about/interfaces +Możesz się połączyć ze zdalnym interfejsem, zobacz: https://weechat.org/about/interfaces/ [IMPORTANT] WeeChat NIE MOŻE się połączyć z innym WeeChat za pomocą tego protokołu. @@ -5072,7 +5072,7 @@ znaleźć w link:weechat_scripting.pl.html[Poradniku pisania skryptów]. Manager skryptów (polecenie <<command_script_script,/script>>) jest używany do ładowania/wyładowywania skryptów w dowolnym języku, oraz instalowania/kasowania skryptów z repozytorium ze skryptami WeeChat, które można znaleźć pod adresem -URL: https://weechat.org/scripts +URL: https://weechat.org/scripts/ W trosce o prywatność pobieranie skryptów jest domyślnie wyłąćzone. + Żeby je włączyć, wpisz poniższe polecenie: @@ -5321,4 +5321,4 @@ Wsparcie w sieci IRC na serwerze _irc.libera.chat_: ** _#weechat-fi_ (Fiński) Inne sposoby na uzyskanie pomocy można znaleźć pod adresem: -https://weechat.org/about/support +https://weechat.org/about/support/ diff --git a/doc/python_stub.py b/doc/python_stub.py index 182a46512..afb2a6926 100755 --- a/doc/python_stub.py +++ b/doc/python_stub.py @@ -68,7 +68,7 @@ def print_stub_functions() -> None: with open(DOC_DIR / "weechat_plugin_api.en.adoc") as api_doc_file: api_doc = api_doc_file.read() for match in function_pattern.finditer(api_doc): - url = f'https://weechat.org/doc/api#_{match["function"]}' + url = f'https://weechat.org/doc/api/#_{match["function"]}' print( f"""\n def {match["function"]}{match["args"]}{match["return"]} diff --git a/doc/ru/includes/man.ru.adoc b/doc/ru/includes/man.ru.adoc index 25669056a..a422baf52 100644 --- a/doc/ru/includes/man.ru.adoc +++ b/doc/ru/includes/man.ru.adoc @@ -1,6 +1,6 @@ // tag::plugin_options[] Полное описание параметров плагинов доступно в документации по плагинам в -https://weechat.org/doc[Руководстве пользователя WeeChat]. +https://weechat.org/doc/[Руководстве пользователя WeeChat]. С помощью плагина irc можно присоединиться ко временному серверу, используя URL вроде: diff --git a/doc/ru/weechat-headless.1.ru.adoc b/doc/ru/weechat-headless.1.ru.adoc index abe05c0fe..7c2f17984 100644 --- a/doc/ru/weechat-headless.1.ru.adoc +++ b/doc/ru/weechat-headless.1.ru.adoc @@ -68,4 +68,4 @@ include::includes/man.ru.adoc[tag=copyright] == ПОДДЕРЖКА / СООБЩЕНИЯ ОБ ОШИБКАХ -Получить помощь или сообщить об ошибке: https://weechat.org/about/support +Получить помощь или сообщить об ошибке: https://weechat.org/about/support/ diff --git a/doc/ru/weechat.1.ru.adoc b/doc/ru/weechat.1.ru.adoc index 379423f7e..7b1839c0e 100644 --- a/doc/ru/weechat.1.ru.adoc +++ b/doc/ru/weechat.1.ru.adoc @@ -63,4 +63,4 @@ include::includes/man.ru.adoc[tag=copyright] == ПОДДЕРЖКА / СООБЩЕНИЯ ОБ ОШИБКАХ -Получить помощь или сообщить об ошибке: https://weechat.org/about/support +Получить помощь или сообщить об ошибке: https://weechat.org/about/support/ diff --git a/doc/ru/weechat_quickstart.ru.adoc b/doc/ru/weechat_quickstart.ru.adoc index fea8252eb..3d1fdc570 100644 --- a/doc/ru/weechat_quickstart.ru.adoc +++ b/doc/ru/weechat_quickstart.ru.adoc @@ -397,13 +397,13 @@ _foo_): Для получения дополнительной информации введите команду `/help script`. Список скриптов, доступных в WeeChat, можно просмотреть, введя команду `/script`, или на сайте: -https://weechat.org/scripts +https://weechat.org/scripts/ [[more_doc]] == Документация для дальнейшего чтения Теперь вы можете пользоваться WeeChat и консультироваться с FAQ/documentation по возникающим вопросам: -https://weechat.org/doc +https://weechat.org/doc/ Приятной работы с WeeChat! diff --git a/doc/sr/includes/man.sr.adoc b/doc/sr/includes/man.sr.adoc index 31761d742..4a0982dac 100644 --- a/doc/sr/includes/man.sr.adoc +++ b/doc/sr/includes/man.sr.adoc @@ -1,5 +1,5 @@ // tag::plugin_options[] -За комплетну документацију у вези опција додатака, молимо вас да погледате документацију за додатке у https://weechat.org/doc[WeeChat корисничком упутству]. +За комплетну документацију у вези опција додатака, молимо вас да погледате документацију за додатке у https://weechat.org/doc/[WeeChat корисничком упутству]. irc додатком се овако повезујете са привременим сервером датим URL адресом: diff --git a/doc/sr/weechat-headless.1.sr.adoc b/doc/sr/weechat-headless.1.sr.adoc index bbc24ae7e..43c739138 100644 --- a/doc/sr/weechat-headless.1.sr.adoc +++ b/doc/sr/weechat-headless.1.sr.adoc @@ -57,4 +57,4 @@ include::includes/man.sr.adoc[tag=copyright] == ПОДРШКА / ПРИЈАВА БАГОВА -За помоћ или пријаву бага: https://weechat.org/about/support +За помоћ или пријаву бага: https://weechat.org/about/support/ diff --git a/doc/sr/weechat.1.sr.adoc b/doc/sr/weechat.1.sr.adoc index 2cf6e3cec..16f506752 100644 --- a/doc/sr/weechat.1.sr.adoc +++ b/doc/sr/weechat.1.sr.adoc @@ -55,4 +55,4 @@ include::includes/man.sr.adoc[tag=copyright] == ПОДРШКА / ПРИЈАВА БАГОВА -За помоћ или пријаву бага: https://weechat.org/about/support +За помоћ или пријаву бага: https://weechat.org/about/support/ diff --git a/doc/sr/weechat_dev.sr.adoc b/doc/sr/weechat_dev.sr.adoc index da2bf4ca8..8cb05f103 100644 --- a/doc/sr/weechat_dev.sr.adoc +++ b/doc/sr/weechat_dev.sr.adoc @@ -15,7 +15,7 @@ Ово упутство описује WeeChat чет клијент и део је програма WeeChat. -Последња верзија овог документа може да се нађе на следећој страници: https://weechat.org/doc +Последња верзија овог документа може да се нађе на следећој страници: https://weechat.org/doc/ [[introduction]] diff --git a/doc/sr/weechat_faq.sr.adoc b/doc/sr/weechat_faq.sr.adoc index 5a03fd1b0..0e9590293 100644 --- a/doc/sr/weechat_faq.sr.adoc +++ b/doc/sr/weechat_faq.sr.adoc @@ -34,7 +34,7 @@ toc::[] Јер WeeChat уопште не оптерећује систем и доноси иновативне могућности. -Више информација на WeeChat страници са могућностима: https://weechat.org/about/features +Више информација на WeeChat страници са могућностима: https://weechat.org/about/features/ [[compilation_install]] == Компајлирање / инсталација @@ -42,7 +42,7 @@ toc::[] [[gui]] === Чуо сам о многим ГКИ за WeeChat. Како да их компајлирам/користим? -Доступни су неки удаљени ГКИ, погледајте страницу са удаљеним интерфејсима: https://weechat.org/about/interfaces +Доступни су неки удаљени ГКИ, погледајте страницу са удаљеним интерфејсима: https://weechat.org/about/interfaces/ [[compile_git]] === Након клонирања git репозиторијума не могу да компајлирам програм WeeChat, зашто? @@ -1092,7 +1092,7 @@ export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES [[bug_task_patch]] === Како би требало да пријавим багове, тражим нове могућности, или пошаљем закрпе? -Погледајте: https://weechat.org/about/support +Погледајте: https://weechat.org/about/support/ [[gdb_error_threads]] === Када програм WeeChat покренем под gdb, појави се грешка везана за нити, шта могу да урадим? @@ -1125,9 +1125,9 @@ WeeChat се лепо извршава на већини Linux/BSD дистри Постоји много задатака који могу да се ураде (тестирање, програмирање, документација, итд.) -Молимо вас да нас контактирате преко IRC или имејла, погледајте страну о подршки: https://weechat.org/about/support +Молимо вас да нас контактирате преко IRC или имејла, погледајте страну о подршки: https://weechat.org/about/support/ [[donate]] === Могу ли програмерима програма WeeChat да дам новац или нешто друго? -Можете нам донирати новац као подршку развоја. Детаљи се налазе на страници https://weechat.org/donate +Можете нам донирати новац као подршку развоја. Детаљи се налазе на страници https://weechat.org/donate/ diff --git a/doc/sr/weechat_plugin_api.sr.adoc b/doc/sr/weechat_plugin_api.sr.adoc index bc9d65ac6..001dd76f7 100644 --- a/doc/sr/weechat_plugin_api.sr.adoc +++ b/doc/sr/weechat_plugin_api.sr.adoc @@ -16,7 +16,7 @@ Ово упутство описује WeeChat чет клијент и део је програма WeeChat. -Последња верзија овог документа може да се нађе на следећој страници: https://weechat.org/doc +Последња верзија овог документа може да се нађе на следећој страници: https://weechat.org/doc/ [[introduction]] @@ -9022,7 +9022,7 @@ struct t_hook *weechat_hook_process (const char *command, У API скриптовања, функција _име_ се директно позива и њен резултат (стринг) се прослеђује функцији повратног позива (као и излаз спољне команде.) [TIP] -Ако желите да сазнате инфо у вези програма WeeChat (као што је тренутна стабилна верзија, последњи git комит, итд.), можете да употребите URL адресе на страници https://weechat.org/dev/info +Ако желите да сазнате инфо у вези програма WeeChat (као што је тренутна стабилна верзија, последњи git комит, итд.), можете да употребите URL адресе на страници https://weechat.org/dev/info/ [NOTE] Величина бафера за слање података је 64KB (постоји 2 бафера: један за stdout и једна за stderr). Ако је излаз из дете процеса (stdout или stderr) дужи од 64KB, функција повратног позива ће се позивати више пута. diff --git a/doc/sr/weechat_quickstart.sr.adoc b/doc/sr/weechat_quickstart.sr.adoc index 084c1ea82..12aa731e4 100644 --- a/doc/sr/weechat_quickstart.sr.adoc +++ b/doc/sr/weechat_quickstart.sr.adoc @@ -329,11 +329,11 @@ IRC сервер можете додати командом `/server`, на пр За више детаља погледајте `/help script`. -Листа скрипти је доступна у програму WeeChat командом `/script` или на URL адреси: https://weechat.org/scripts +Листа скрипти је доступна у програму WeeChat командом `/script` или на URL адреси: https://weechat.org/scripts/ [[more_doc]] == Још документације -Сада можете почети са коришћењем програма WeeChat и ако имате нека друга питања, прочитајте ЧПП/документацију: https://weechat.org/doc +Сада можете почети са коришћењем програма WeeChat и ако имате нека друга питања, прочитајте ЧПП/документацију: https://weechat.org/doc/ Уживајте у коришћењу програма WeeChat! diff --git a/doc/sr/weechat_scripting.sr.adoc b/doc/sr/weechat_scripting.sr.adoc index 7e98f8876..28992e223 100644 --- a/doc/sr/weechat_scripting.sr.adoc +++ b/doc/sr/weechat_scripting.sr.adoc @@ -16,7 +16,7 @@ Ово упутство описује WeeChat чет клијент и део је програма WeeChat. -Последња верзија овог документа може да се нађе на следећој страници: https://weechat.org/doc +Последња верзија овог документа може да се нађе на следећој страници: https://weechat.org/doc/ [[introduction]] @@ -1080,7 +1080,7 @@ weechat.hook_process("url:https://weechat.org/dev/info/stable/", ---- [TIP] -Све доступне информације у вези програма WeeChat се налазе на страници https://weechat.org/dev/info +Све доступне информације у вези програма WeeChat се налазе на страници https://weechat.org/dev/info/ Пример URL преноса са опцијом: преузимање најновијег WeeChat развојног пакета у фајл _/tmp/weechat-devel.tar.gz_: diff --git a/doc/sr/weechat_user.sr.adoc b/doc/sr/weechat_user.sr.adoc index 88b988406..ddb7f49ee 100644 --- a/doc/sr/weechat_user.sr.adoc +++ b/doc/sr/weechat_user.sr.adoc @@ -16,7 +16,7 @@ Ово упутство описује WeeChat чет клијент и део је програма WeeChat. -Последња верзија овог документа може да се нађе на следећој страници: https://weechat.org/doc +Последња верзија овог документа може да се нађе на следећој страници: https://weechat.org/doc/ [[introduction]] @@ -60,7 +60,7 @@ WeeChat почетна страница се налази на адреси: htt * Arch Linux: `pacman -S weechat` * Cygwin (Windows): изаберите WeeChat пакете у setup.exe * Debian/Ubuntu (или било која Debian компатибилна дистрибуција): `apt-get install weechat-curses weechat-plugins` + -За најновије верзије и ноћне изградње: https://weechat.org/download/debian +За најновије верзије и ноћне изградње: https://weechat.org/download/debian/ * Fedora Core: `dnf install weechat` * FreeBSD: `pkg install weechat` * Gentoo: `emerge weechat` @@ -3107,7 +3107,7 @@ $ openssl req -nodes -newkey rsa:2048 -keyout nick.pem -x509 -days 365 -out nick /msg nickserv cert add ---- -За више информација, погледајте https://www.oftc.net/NickServ/CertFP +За више информација, погледајте https://www.oftc.net/NickServ/CertFP/ [[irc_sasl_authentication]] ==== SASL аутентификација @@ -3383,7 +3383,7 @@ CTCP може да се прилагоди само за један сервер | $compilation | Датум компајлирања програма WeeChat | `+Dec 16 2012+` | $osinfo | Инфо о ОС | `+Linux 2.6.32-5-amd64 / x86_64+` | $site | WeeChat вебсајт | `+https://weechat.org/+` -| $download | WeeChat сајт, страна за преузимање | `+https://weechat.org/download+` +| $download | WeeChat сајт, страна за преузимање | `+https://weechat.org/download/+` | $time | Текући датум/време | `+Sun, 16 Dec 2012 10:40:48 +0100+` | $username | Корисничко име на IRC серверу | `+name+` | $realname | Реално име на IRC серверу | `+John Doe+` @@ -3399,7 +3399,7 @@ CTCP може да се прилагоди само за један сервер | CTCP | Формат одговора | Пример | CLIENTINFO | `+$clientinfo+` | `+ACTION DCC CLIENTINFO FINGER PING SOURCE TIME USERINFO VERSION+` | FINGER | `+WeeChat $versiongit+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4)+` -| SOURCE | `+$download+` | `+https://weechat.org/download+` +| SOURCE | `+$download+` | `+https://weechat.org/download/+` | TIME | `+$time+` | `+нед, 16 дец 2012 10:40:48 +0100+` | USERINFO | `+$username ($realname)+` | `+име (Пера Перић)+` | VERSION | `+WeeChat $versiongit ($compilation)+` | `+WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4) (Dec 16 2012)+` @@ -3692,7 +3692,7 @@ include::includes/autogen_user_options.sr.adoc[tag=typing_options] * _irc_: IRC прокси: користи се за дељење веза са IRC серверима са једним или више других клијената * _weechat_: protocol used by remote interfaces to display and interact with - WeeChat, see: https://weechat.org/about/interfaces + WeeChat, see: https://weechat.org/about/interfaces/ [[relay_password]] === Лозинка @@ -3790,7 +3790,7 @@ PASS сервер:лозинка Релеј додатак може да шаље податке удаљеном интерфејсу користећи WeeChat протокол. -Можете се повезати помоћу удаљеног интерфејса, погледајте: https://weechat.org/about/interfaces +Можете се повезати помоћу удаљеног интерфејса, погледајте: https://weechat.org/about/interfaces/ [IMPORTANT] Сам програм WeeChat НЕ може да се повеже на други програм WeeChat преко овог протокола. @@ -4696,7 +4696,7 @@ include::includes/autogen_user_options.sr.adoc[tag=trigger_options] Менаџер скрипти (команда <<command_script_script,/script>>) се користи за учитавање/уклањање из меморије скрипти на било ком језику, и за инсталирање/уклањање скрипти из WeeChat -репозиторијума скрипти, који се налази на URL адреси: https://weechat.org/scripts +репозиторијума скрипти, који се налази на URL адреси: https://weechat.org/scripts/ Из разлога приватности, преузимање скрипти је подразумевано искључено. + Ако желите да га укључите, откуцајте следећу команду: @@ -4943,4 +4943,4 @@ include::includes/autogen_user_options.sr.adoc[tag=php_options] ** _#weechat-de_ (немачки) ** _#weechat-fi_ (фински) -За остале начине подршке, погледајте: https://weechat.org/about/support +За остале начине подршке, погледајте: https://weechat.org/about/support/ diff --git a/src/plugins/python/weechat.pyi b/src/plugins/python/weechat.pyi index 8dab95a99..5c2f1cb2d 100644 --- a/src/plugins/python/weechat.pyi +++ b/src/plugins/python/weechat.pyi @@ -48,197 +48,197 @@ WEECHAT_HOOK_SIGNAL_POINTER: str def register(name: str, author: str, version: str, license: str, description: str, shutdown_function: str, charset: str) -> int: - """`register in WeeChat plugin API reference <https://weechat.org/doc/api#_register>`_""" + """`register in WeeChat plugin API reference <https://weechat.org/doc/api/#_register>`_""" ... def plugin_get_name(plugin: str) -> str: - """`plugin_get_name in WeeChat plugin API reference <https://weechat.org/doc/api#_plugin_get_name>`_""" + """`plugin_get_name in WeeChat plugin API reference <https://weechat.org/doc/api/#_plugin_get_name>`_""" ... def charset_set(charset: str) -> int: - """`charset_set in WeeChat plugin API reference <https://weechat.org/doc/api#_charset_set>`_""" + """`charset_set in WeeChat plugin API reference <https://weechat.org/doc/api/#_charset_set>`_""" ... def iconv_to_internal(charset: str, string: str) -> str: - """`iconv_to_internal in WeeChat plugin API reference <https://weechat.org/doc/api#_iconv_to_internal>`_""" + """`iconv_to_internal in WeeChat plugin API reference <https://weechat.org/doc/api/#_iconv_to_internal>`_""" ... def iconv_from_internal(charset: str, string: str) -> str: - """`iconv_from_internal in WeeChat plugin API reference <https://weechat.org/doc/api#_iconv_from_internal>`_""" + """`iconv_from_internal in WeeChat plugin API reference <https://weechat.org/doc/api/#_iconv_from_internal>`_""" ... def gettext(string: str) -> str: - """`gettext in WeeChat plugin API reference <https://weechat.org/doc/api#_gettext>`_""" + """`gettext in WeeChat plugin API reference <https://weechat.org/doc/api/#_gettext>`_""" ... def ngettext(string: str, plural: str, count: int) -> str: - """`ngettext in WeeChat plugin API reference <https://weechat.org/doc/api#_ngettext>`_""" + """`ngettext in WeeChat plugin API reference <https://weechat.org/doc/api/#_ngettext>`_""" ... def strlen_screen(string: str) -> int: - """`strlen_screen in WeeChat plugin API reference <https://weechat.org/doc/api#_strlen_screen>`_""" + """`strlen_screen in WeeChat plugin API reference <https://weechat.org/doc/api/#_strlen_screen>`_""" ... def string_match(string: str, mask: str, case_sensitive: int) -> int: - """`string_match in WeeChat plugin API reference <https://weechat.org/doc/api#_string_match>`_""" + """`string_match in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_match>`_""" ... def string_match_list(string: str, masks: str, case_sensitive: int) -> int: - """`string_match_list in WeeChat plugin API reference <https://weechat.org/doc/api#_string_match_list>`_""" + """`string_match_list in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_match_list>`_""" ... def string_eval_path_home(path: str, pointers: Dict[str, str], extra_vars: Dict[str, str], options: Dict[str, str]) -> str: - """`string_eval_path_home in WeeChat plugin API reference <https://weechat.org/doc/api#_string_eval_path_home>`_""" + """`string_eval_path_home in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_eval_path_home>`_""" ... def string_mask_to_regex(mask: str) -> str: - """`string_mask_to_regex in WeeChat plugin API reference <https://weechat.org/doc/api#_string_mask_to_regex>`_""" + """`string_mask_to_regex in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_mask_to_regex>`_""" ... def string_has_highlight(string: str, highlight_words: str) -> int: - """`string_has_highlight in WeeChat plugin API reference <https://weechat.org/doc/api#_string_has_highlight>`_""" + """`string_has_highlight in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_has_highlight>`_""" ... def string_has_highlight_regex(string: str, regex: str) -> int: - """`string_has_highlight_regex in WeeChat plugin API reference <https://weechat.org/doc/api#_string_has_highlight_regex>`_""" + """`string_has_highlight_regex in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_has_highlight_regex>`_""" ... def string_format_size(size: int) -> str: - """`string_format_size in WeeChat plugin API reference <https://weechat.org/doc/api#_string_format_size>`_""" + """`string_format_size in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_format_size>`_""" ... def string_color_code_size(string: str) -> int: - """`string_color_code_size in WeeChat plugin API reference <https://weechat.org/doc/api#_string_color_code_size>`_""" + """`string_color_code_size in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_color_code_size>`_""" ... def string_remove_color(string: str, replacement: str) -> str: - """`string_remove_color in WeeChat plugin API reference <https://weechat.org/doc/api#_string_remove_color>`_""" + """`string_remove_color in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_remove_color>`_""" ... def string_is_command_char(string: str) -> int: - """`string_is_command_char in WeeChat plugin API reference <https://weechat.org/doc/api#_string_is_command_char>`_""" + """`string_is_command_char in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_is_command_char>`_""" ... def string_input_for_buffer(string: str) -> str: - """`string_input_for_buffer in WeeChat plugin API reference <https://weechat.org/doc/api#_string_input_for_buffer>`_""" + """`string_input_for_buffer in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_input_for_buffer>`_""" ... def string_eval_expression(expr: str, pointers: Dict[str, str], extra_vars: Dict[str, str], options: Dict[str, str]) -> str: - """`string_eval_expression in WeeChat plugin API reference <https://weechat.org/doc/api#_string_eval_expression>`_""" + """`string_eval_expression in WeeChat plugin API reference <https://weechat.org/doc/api/#_string_eval_expression>`_""" ... def mkdir_home(directory: str, mode: int) -> int: - """`mkdir_home in WeeChat plugin API reference <https://weechat.org/doc/api#_mkdir_home>`_""" + """`mkdir_home in WeeChat plugin API reference <https://weechat.org/doc/api/#_mkdir_home>`_""" ... def mkdir(directory: str, mode: int) -> int: - """`mkdir in WeeChat plugin API reference <https://weechat.org/doc/api#_mkdir>`_""" + """`mkdir in WeeChat plugin API reference <https://weechat.org/doc/api/#_mkdir>`_""" ... def mkdir_parents(directory: str, mode: int) -> int: - """`mkdir_parents in WeeChat plugin API reference <https://weechat.org/doc/api#_mkdir_parents>`_""" + """`mkdir_parents in WeeChat plugin API reference <https://weechat.org/doc/api/#_mkdir_parents>`_""" ... def list_new() -> str: - """`list_new in WeeChat plugin API reference <https://weechat.org/doc/api#_list_new>`_""" + """`list_new in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_new>`_""" ... def list_add(list: str, data: str, where: str, user_data: str) -> str: - """`list_add in WeeChat plugin API reference <https://weechat.org/doc/api#_list_add>`_""" + """`list_add in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_add>`_""" ... def list_search(list: str, data: str) -> str: - """`list_search in WeeChat plugin API reference <https://weechat.org/doc/api#_list_search>`_""" + """`list_search in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_search>`_""" ... def list_search_pos(list: str, data: str) -> int: - """`list_search_pos in WeeChat plugin API reference <https://weechat.org/doc/api#_list_search_pos>`_""" + """`list_search_pos in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_search_pos>`_""" ... def list_casesearch(list: str, data: str) -> str: - """`list_casesearch in WeeChat plugin API reference <https://weechat.org/doc/api#_list_casesearch>`_""" + """`list_casesearch in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_casesearch>`_""" ... def list_casesearch_pos(list: str, data: str) -> int: - """`list_casesearch_pos in WeeChat plugin API reference <https://weechat.org/doc/api#_list_casesearch_pos>`_""" + """`list_casesearch_pos in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_casesearch_pos>`_""" ... def list_get(list: str, position: int) -> str: - """`list_get in WeeChat plugin API reference <https://weechat.org/doc/api#_list_get>`_""" + """`list_get in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_get>`_""" ... def list_set(item: str, value: str) -> int: - """`list_set in WeeChat plugin API reference <https://weechat.org/doc/api#_list_set>`_""" + """`list_set in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_set>`_""" ... def list_next(item: str) -> str: - """`list_next in WeeChat plugin API reference <https://weechat.org/doc/api#_list_next>`_""" + """`list_next in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_next>`_""" ... def list_prev(item: str) -> str: - """`list_prev in WeeChat plugin API reference <https://weechat.org/doc/api#_list_prev>`_""" + """`list_prev in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_prev>`_""" ... def list_string(item: str) -> str: - """`list_string in WeeChat plugin API reference <https://weechat.org/doc/api#_list_string>`_""" + """`list_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_string>`_""" ... def list_size(list: str) -> int: - """`list_size in WeeChat plugin API reference <https://weechat.org/doc/api#_list_size>`_""" + """`list_size in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_size>`_""" ... def list_remove(list: str, item: str) -> int: - """`list_remove in WeeChat plugin API reference <https://weechat.org/doc/api#_list_remove>`_""" + """`list_remove in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_remove>`_""" ... def list_remove_all(list: str) -> int: - """`list_remove_all in WeeChat plugin API reference <https://weechat.org/doc/api#_list_remove_all>`_""" + """`list_remove_all in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_remove_all>`_""" ... def list_free(list: str) -> int: - """`list_free in WeeChat plugin API reference <https://weechat.org/doc/api#_list_free>`_""" + """`list_free in WeeChat plugin API reference <https://weechat.org/doc/api/#_list_free>`_""" ... def config_new(name: str, callback_reload: str, callback_reload_data: str) -> str: - """`config_new in WeeChat plugin API reference <https://weechat.org/doc/api#_config_new>`_""" + """`config_new in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_new>`_""" ... @@ -249,12 +249,12 @@ def config_new_section(config_file: str, name: str, callback_write_default: str, callback_write_default_data: str, callback_create_option: str, callback_create_option_data: str, callback_delete_option: str, callback_delete_option_data: str) -> str: - """`config_new_section in WeeChat plugin API reference <https://weechat.org/doc/api#_config_new_section>`_""" + """`config_new_section in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_new_section>`_""" ... def config_search_section(config_file: str, section_name: str) -> str: - """`config_search_section in WeeChat plugin API reference <https://weechat.org/doc/api#_config_search_section>`_""" + """`config_search_section in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_search_section>`_""" ... @@ -264,545 +264,545 @@ def config_new_option(config_file: str, section: str, name: str, type: str, desc callback_check_value: str, callback_check_value_data: str, callback_change: str, callback_change_data: str, callback_delete: str, callback_delete_data: str) -> str: - """`config_new_option in WeeChat plugin API reference <https://weechat.org/doc/api#_config_new_option>`_""" + """`config_new_option in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_new_option>`_""" ... def config_search_option(config_file: str, section: str, option_name: str) -> str: - """`config_search_option in WeeChat plugin API reference <https://weechat.org/doc/api#_config_search_option>`_""" + """`config_search_option in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_search_option>`_""" ... def config_string_to_boolean(text: str) -> int: - """`config_string_to_boolean in WeeChat plugin API reference <https://weechat.org/doc/api#_config_string_to_boolean>`_""" + """`config_string_to_boolean in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_string_to_boolean>`_""" ... def config_option_reset(option: str, run_callback: int) -> int: - """`config_option_reset in WeeChat plugin API reference <https://weechat.org/doc/api#_config_option_reset>`_""" + """`config_option_reset in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_option_reset>`_""" ... def config_option_set(option: str, value: str, run_callback: int) -> int: - """`config_option_set in WeeChat plugin API reference <https://weechat.org/doc/api#_config_option_set>`_""" + """`config_option_set in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_option_set>`_""" ... def config_option_set_null(option: str, run_callback: int) -> int: - """`config_option_set_null in WeeChat plugin API reference <https://weechat.org/doc/api#_config_option_set_null>`_""" + """`config_option_set_null in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_option_set_null>`_""" ... def config_option_unset(option: str) -> int: - """`config_option_unset in WeeChat plugin API reference <https://weechat.org/doc/api#_config_option_unset>`_""" + """`config_option_unset in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_option_unset>`_""" ... def config_option_rename(option: str, new_name: str) -> int: - """`config_option_rename in WeeChat plugin API reference <https://weechat.org/doc/api#_config_option_rename>`_""" + """`config_option_rename in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_option_rename>`_""" ... def config_option_is_null(option: str) -> int: - """`config_option_is_null in WeeChat plugin API reference <https://weechat.org/doc/api#_config_option_is_null>`_""" + """`config_option_is_null in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_option_is_null>`_""" ... def config_option_default_is_null(option: str) -> int: - """`config_option_default_is_null in WeeChat plugin API reference <https://weechat.org/doc/api#_config_option_default_is_null>`_""" + """`config_option_default_is_null in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_option_default_is_null>`_""" ... def config_boolean(option: str) -> int: - """`config_boolean in WeeChat plugin API reference <https://weechat.org/doc/api#_config_boolean>`_""" + """`config_boolean in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_boolean>`_""" ... def config_boolean_default(option: str) -> int: - """`config_boolean_default in WeeChat plugin API reference <https://weechat.org/doc/api#_config_boolean_default>`_""" + """`config_boolean_default in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_boolean_default>`_""" ... def config_integer(option: str) -> int: - """`config_integer in WeeChat plugin API reference <https://weechat.org/doc/api#_config_integer>`_""" + """`config_integer in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_integer>`_""" ... def config_integer_default(option: str) -> int: - """`config_integer_default in WeeChat plugin API reference <https://weechat.org/doc/api#_config_integer_default>`_""" + """`config_integer_default in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_integer_default>`_""" ... def config_string(option: str) -> str: - """`config_string in WeeChat plugin API reference <https://weechat.org/doc/api#_config_string>`_""" + """`config_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_string>`_""" ... def config_string_default(option: str) -> str: - """`config_string_default in WeeChat plugin API reference <https://weechat.org/doc/api#_config_string_default>`_""" + """`config_string_default in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_string_default>`_""" ... def config_color(option: str) -> str: - """`config_color in WeeChat plugin API reference <https://weechat.org/doc/api#_config_color>`_""" + """`config_color in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_color>`_""" ... def config_color_default(option: str) -> str: - """`config_color_default in WeeChat plugin API reference <https://weechat.org/doc/api#_config_color_default>`_""" + """`config_color_default in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_color_default>`_""" ... def config_write_option(config_file: str, option: str) -> int: - """`config_write_option in WeeChat plugin API reference <https://weechat.org/doc/api#_config_write_option>`_""" + """`config_write_option in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_write_option>`_""" ... def config_write_line(config_file: str, option_name: str, value: str) -> int: - """`config_write_line in WeeChat plugin API reference <https://weechat.org/doc/api#_config_write_line>`_""" + """`config_write_line in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_write_line>`_""" ... def config_write(config_file: str) -> int: - """`config_write in WeeChat plugin API reference <https://weechat.org/doc/api#_config_write>`_""" + """`config_write in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_write>`_""" ... def config_read(config_file: str) -> int: - """`config_read in WeeChat plugin API reference <https://weechat.org/doc/api#_config_read>`_""" + """`config_read in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_read>`_""" ... def config_reload(config_file: str) -> int: - """`config_reload in WeeChat plugin API reference <https://weechat.org/doc/api#_config_reload>`_""" + """`config_reload in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_reload>`_""" ... def config_option_free(option: str) -> int: - """`config_option_free in WeeChat plugin API reference <https://weechat.org/doc/api#_config_option_free>`_""" + """`config_option_free in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_option_free>`_""" ... def config_section_free_options(section: str) -> int: - """`config_section_free_options in WeeChat plugin API reference <https://weechat.org/doc/api#_config_section_free_options>`_""" + """`config_section_free_options in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_section_free_options>`_""" ... def config_section_free(section: str) -> int: - """`config_section_free in WeeChat plugin API reference <https://weechat.org/doc/api#_config_section_free>`_""" + """`config_section_free in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_section_free>`_""" ... def config_free(config_file: str) -> int: - """`config_free in WeeChat plugin API reference <https://weechat.org/doc/api#_config_free>`_""" + """`config_free in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_free>`_""" ... def config_get(option_name: str) -> str: - """`config_get in WeeChat plugin API reference <https://weechat.org/doc/api#_config_get>`_""" + """`config_get in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_get>`_""" ... def config_get_plugin(option_name: str) -> str: - """`config_get_plugin in WeeChat plugin API reference <https://weechat.org/doc/api#_config_get_plugin>`_""" + """`config_get_plugin in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_get_plugin>`_""" ... def config_is_set_plugin(option_name: str) -> int: - """`config_is_set_plugin in WeeChat plugin API reference <https://weechat.org/doc/api#_config_is_set_plugin>`_""" + """`config_is_set_plugin in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_is_set_plugin>`_""" ... def config_set_plugin(option_name: str, value: str) -> int: - """`config_set_plugin in WeeChat plugin API reference <https://weechat.org/doc/api#_config_set_plugin>`_""" + """`config_set_plugin in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_set_plugin>`_""" ... def config_set_desc_plugin(option_name: str, description: str) -> int: - """`config_set_desc_plugin in WeeChat plugin API reference <https://weechat.org/doc/api#_config_set_desc_plugin>`_""" + """`config_set_desc_plugin in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_set_desc_plugin>`_""" ... def config_unset_plugin(option_name: str) -> int: - """`config_unset_plugin in WeeChat plugin API reference <https://weechat.org/doc/api#_config_unset_plugin>`_""" + """`config_unset_plugin in WeeChat plugin API reference <https://weechat.org/doc/api/#_config_unset_plugin>`_""" ... def key_bind(context: str, keys: Dict[str, str]) -> int: - """`key_bind in WeeChat plugin API reference <https://weechat.org/doc/api#_key_bind>`_""" + """`key_bind in WeeChat plugin API reference <https://weechat.org/doc/api/#_key_bind>`_""" ... def key_unbind(context: str, key: str) -> int: - """`key_unbind in WeeChat plugin API reference <https://weechat.org/doc/api#_key_unbind>`_""" + """`key_unbind in WeeChat plugin API reference <https://weechat.org/doc/api/#_key_unbind>`_""" ... def prefix(prefix: str) -> str: - """`prefix in WeeChat plugin API reference <https://weechat.org/doc/api#_prefix>`_""" + """`prefix in WeeChat plugin API reference <https://weechat.org/doc/api/#_prefix>`_""" ... def color(color_name: str) -> str: - """`color in WeeChat plugin API reference <https://weechat.org/doc/api#_color>`_""" + """`color in WeeChat plugin API reference <https://weechat.org/doc/api/#_color>`_""" ... def prnt(buffer: str, message: str) -> int: - """`prnt in WeeChat plugin API reference <https://weechat.org/doc/api#_prnt>`_""" + """`prnt in WeeChat plugin API reference <https://weechat.org/doc/api/#_prnt>`_""" ... def prnt_date_tags(buffer: str, date: int, tags: str, message: str) -> int: - """`prnt_date_tags in WeeChat plugin API reference <https://weechat.org/doc/api#_prnt_date_tags>`_""" + """`prnt_date_tags in WeeChat plugin API reference <https://weechat.org/doc/api/#_prnt_date_tags>`_""" ... def prnt_y(buffer: str, y: int, message: str) -> int: - """`prnt_y in WeeChat plugin API reference <https://weechat.org/doc/api#_prnt_y>`_""" + """`prnt_y in WeeChat plugin API reference <https://weechat.org/doc/api/#_prnt_y>`_""" ... def prnt_y_date_tags(buffer: str, y: int, date: int, tags: str, message: str) -> int: - """`prnt_y_date_tags in WeeChat plugin API reference <https://weechat.org/doc/api#_prnt_y_date_tags>`_""" + """`prnt_y_date_tags in WeeChat plugin API reference <https://weechat.org/doc/api/#_prnt_y_date_tags>`_""" ... def log_print(message: str) -> int: - """`log_print in WeeChat plugin API reference <https://weechat.org/doc/api#_log_print>`_""" + """`log_print in WeeChat plugin API reference <https://weechat.org/doc/api/#_log_print>`_""" ... def hook_command(command: str, description: str, args: str, args_description: str, completion: str, callback: str, callback_data: str) -> str: - """`hook_command in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_command>`_""" + """`hook_command in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_command>`_""" ... def hook_completion(completion_item: str, description: str, callback: str, callback_data: str) -> str: - """`hook_completion in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_completion>`_""" + """`hook_completion in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_completion>`_""" ... def hook_command_run(command: str, callback: str, callback_data: str) -> str: - """`hook_command_run in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_command_run>`_""" + """`hook_command_run in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_command_run>`_""" ... def hook_timer(interval: int, align_second: int, max_calls: int, callback: str, callback_data: str) -> str: - """`hook_timer in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_timer>`_""" + """`hook_timer in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_timer>`_""" ... def hook_fd(fd: int, flag_read: int, flag_write: int, flag_exception: int, callback: str, callback_data: str) -> str: - """`hook_fd in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_fd>`_""" + """`hook_fd in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_fd>`_""" ... def hook_process(command: str, timeout: int, callback: str, callback_data: str) -> str: - """`hook_process in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_process>`_""" + """`hook_process in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_process>`_""" ... def hook_process_hashtable(command: str, options: Dict[str, str], timeout: int, callback: str, callback_data: str) -> str: - """`hook_process_hashtable in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_process_hashtable>`_""" + """`hook_process_hashtable in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_process_hashtable>`_""" ... def hook_connect(proxy: str, address: str, port: int, ipv6: int, retry: int, local_hostname: str, callback: str, callback_data: str) -> str: - """`hook_connect in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_connect>`_""" + """`hook_connect in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_connect>`_""" ... def hook_line(buffer_type: str, buffer_name: str, tags: str, callback: str, callback_data: str) -> str: - """`hook_line in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_line>`_""" + """`hook_line in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_line>`_""" ... def hook_print(buffer: str, tags: str, message: str, strip_colors: int, callback: str, callback_data: str) -> str: - """`hook_print in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_print>`_""" + """`hook_print in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_print>`_""" ... def hook_signal(signal: str, callback: str, callback_data: str) -> str: - """`hook_signal in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_signal>`_""" + """`hook_signal in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_signal>`_""" ... def hook_signal_send(signal: str, type_data: str, signal_data: str) -> int: - """`hook_signal_send in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_signal_send>`_""" + """`hook_signal_send in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_signal_send>`_""" ... def hook_hsignal(signal: str, callback: str, callback_data: str) -> str: - """`hook_hsignal in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_hsignal>`_""" + """`hook_hsignal in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_hsignal>`_""" ... def hook_hsignal_send(signal: str, hashtable: Dict[str, str]) -> int: - """`hook_hsignal_send in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_hsignal_send>`_""" + """`hook_hsignal_send in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_hsignal_send>`_""" ... def hook_config(option: str, callback: str, callback_data: str) -> str: - """`hook_config in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_config>`_""" + """`hook_config in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_config>`_""" ... def hook_modifier(modifier: str, callback: str, callback_data: str) -> str: - """`hook_modifier in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_modifier>`_""" + """`hook_modifier in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_modifier>`_""" ... def hook_modifier_exec(modifier: str, modifier_data: str, string: str) -> str: - """`hook_modifier_exec in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_modifier_exec>`_""" + """`hook_modifier_exec in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_modifier_exec>`_""" ... def hook_info(info_name: str, description: str, args_description: str, callback: str, callback_data: str) -> str: - """`hook_info in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_info>`_""" + """`hook_info in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_info>`_""" ... def hook_info_hashtable(info_name: str, description: str, args_description: str, output_description: str, callback: str, callback_data: str) -> str: - """`hook_info_hashtable in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_info_hashtable>`_""" + """`hook_info_hashtable in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_info_hashtable>`_""" ... def hook_infolist(infolist_name: str, description: str, pointer_description: str, args_description: str, callback: str, callback_data: str) -> str: - """`hook_infolist in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_infolist>`_""" + """`hook_infolist in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_infolist>`_""" ... def hook_focus(area: str, callback: str, callback_data: str) -> str: - """`hook_focus in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_focus>`_""" + """`hook_focus in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_focus>`_""" ... def hook_set(hook: str, property: str, value: str) -> int: - """`hook_set in WeeChat plugin API reference <https://weechat.org/doc/api#_hook_set>`_""" + """`hook_set in WeeChat plugin API reference <https://weechat.org/doc/api/#_hook_set>`_""" ... def unhook(hook: str) -> int: - """`unhook in WeeChat plugin API reference <https://weechat.org/doc/api#_unhook>`_""" + """`unhook in WeeChat plugin API reference <https://weechat.org/doc/api/#_unhook>`_""" ... def unhook_all() -> int: - """`unhook_all in WeeChat plugin API reference <https://weechat.org/doc/api#_unhook_all>`_""" + """`unhook_all in WeeChat plugin API reference <https://weechat.org/doc/api/#_unhook_all>`_""" ... def buffer_new(name: str, input_callback: str, input_callback_data: str, close_callback: str, close_callback_data: str) -> str: - """`buffer_new in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_new>`_""" + """`buffer_new in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_new>`_""" ... def buffer_new_props(name: str, properties: Dict[str, str], input_callback: str, input_callback_data: str, close_callback: str, close_callback_data: str) -> str: - """`buffer_new_props in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_new_props>`_""" + """`buffer_new_props in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_new_props>`_""" ... def current_buffer() -> str: - """`current_buffer in WeeChat plugin API reference <https://weechat.org/doc/api#_current_buffer>`_""" + """`current_buffer in WeeChat plugin API reference <https://weechat.org/doc/api/#_current_buffer>`_""" ... def buffer_search(plugin: str, name: str) -> str: - """`buffer_search in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_search>`_""" + """`buffer_search in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_search>`_""" ... def buffer_search_main() -> str: - """`buffer_search_main in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_search_main>`_""" + """`buffer_search_main in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_search_main>`_""" ... def buffer_clear(buffer: str) -> int: - """`buffer_clear in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_clear>`_""" + """`buffer_clear in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_clear>`_""" ... def buffer_close(buffer: str) -> int: - """`buffer_close in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_close>`_""" + """`buffer_close in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_close>`_""" ... def buffer_merge(buffer: str, target_buffer: str) -> int: - """`buffer_merge in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_merge>`_""" + """`buffer_merge in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_merge>`_""" ... def buffer_unmerge(buffer: str, number: int) -> int: - """`buffer_unmerge in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_unmerge>`_""" + """`buffer_unmerge in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_unmerge>`_""" ... def buffer_get_integer(buffer: str, property: str) -> int: - """`buffer_get_integer in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_get_integer>`_""" + """`buffer_get_integer in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_get_integer>`_""" ... def buffer_get_string(buffer: str, property: str) -> str: - """`buffer_get_string in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_get_string>`_""" + """`buffer_get_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_get_string>`_""" ... def buffer_get_pointer(buffer: str, property: str) -> str: - """`buffer_get_pointer in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_get_pointer>`_""" + """`buffer_get_pointer in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_get_pointer>`_""" ... def buffer_set(buffer: str, property: str, value: str) -> int: - """`buffer_set in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_set>`_""" + """`buffer_set in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_set>`_""" ... def buffer_string_replace_local_var(buffer: str, string: str) -> str: - """`buffer_string_replace_local_var in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_string_replace_local_var>`_""" + """`buffer_string_replace_local_var in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_string_replace_local_var>`_""" ... def buffer_match_list(buffer: str, string: str) -> int: - """`buffer_match_list in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_match_list>`_""" + """`buffer_match_list in WeeChat plugin API reference <https://weechat.org/doc/api/#_buffer_match_list>`_""" ... def current_window() -> str: - """`current_window in WeeChat plugin API reference <https://weechat.org/doc/api#_current_window>`_""" + """`current_window in WeeChat plugin API reference <https://weechat.org/doc/api/#_current_window>`_""" ... def window_search_with_buffer(buffer: str) -> str: - """`window_search_with_buffer in WeeChat plugin API reference <https://weechat.org/doc/api#_window_search_with_buffer>`_""" + """`window_search_with_buffer in WeeChat plugin API reference <https://weechat.org/doc/api/#_window_search_with_buffer>`_""" ... def window_get_integer(window: str, property: str) -> int: - """`window_get_integer in WeeChat plugin API reference <https://weechat.org/doc/api#_window_get_integer>`_""" + """`window_get_integer in WeeChat plugin API reference <https://weechat.org/doc/api/#_window_get_integer>`_""" ... def window_get_string(window: str, property: str) -> str: - """`window_get_string in WeeChat plugin API reference <https://weechat.org/doc/api#_window_get_string>`_""" + """`window_get_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_window_get_string>`_""" ... def window_get_pointer(window: str, property: str) -> str: - """`window_get_pointer in WeeChat plugin API reference <https://weechat.org/doc/api#_window_get_pointer>`_""" + """`window_get_pointer in WeeChat plugin API reference <https://weechat.org/doc/api/#_window_get_pointer>`_""" ... def window_set_title(title: str) -> int: - """`window_set_title in WeeChat plugin API reference <https://weechat.org/doc/api#_window_set_title>`_""" + """`window_set_title in WeeChat plugin API reference <https://weechat.org/doc/api/#_window_set_title>`_""" ... def nicklist_add_group(buffer: str, parent_group: str, name: str, color: str, visible: int) -> str: - """`nicklist_add_group in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_add_group>`_""" + """`nicklist_add_group in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_add_group>`_""" ... def nicklist_search_group(buffer: str, from_group: str, name: str) -> str: - """`nicklist_search_group in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_search_group>`_""" + """`nicklist_search_group in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_search_group>`_""" ... def nicklist_add_nick(buffer: str, group: str, name: str, color: str, prefix: str, prefix_color: str, visible: int) -> str: - """`nicklist_add_nick in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_add_nick>`_""" + """`nicklist_add_nick in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_add_nick>`_""" ... def nicklist_search_nick(buffer: str, from_group: str, name: str) -> str: - """`nicklist_search_nick in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_search_nick>`_""" + """`nicklist_search_nick in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_search_nick>`_""" ... def nicklist_remove_group(buffer: str, group: str) -> int: - """`nicklist_remove_group in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_remove_group>`_""" + """`nicklist_remove_group in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_remove_group>`_""" ... def nicklist_remove_nick(buffer: str, nick: str) -> int: - """`nicklist_remove_nick in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_remove_nick>`_""" + """`nicklist_remove_nick in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_remove_nick>`_""" ... def nicklist_remove_all(buffer: str) -> int: - """`nicklist_remove_all in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_remove_all>`_""" + """`nicklist_remove_all in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_remove_all>`_""" ... def nicklist_group_get_integer(buffer: str, group: str, property: str) -> int: - """`nicklist_group_get_integer in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_group_get_integer>`_""" + """`nicklist_group_get_integer in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_group_get_integer>`_""" ... def nicklist_group_get_string(buffer: str, group: str, property: str) -> str: - """`nicklist_group_get_string in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_group_get_string>`_""" + """`nicklist_group_get_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_group_get_string>`_""" ... def nicklist_group_get_pointer(buffer: str, group: str, property: str) -> str: - """`nicklist_group_get_pointer in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_group_get_pointer>`_""" + """`nicklist_group_get_pointer in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_group_get_pointer>`_""" ... def nicklist_group_set(buffer: str, group: str, property: str, value: str) -> int: - """`nicklist_group_set in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_group_set>`_""" + """`nicklist_group_set in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_group_set>`_""" ... def nicklist_nick_get_integer(buffer: str, nick: str, property: str) -> int: - """`nicklist_nick_get_integer in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_nick_get_integer>`_""" + """`nicklist_nick_get_integer in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_nick_get_integer>`_""" ... def nicklist_nick_get_string(buffer: str, nick: str, property: str) -> str: - """`nicklist_nick_get_string in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_nick_get_string>`_""" + """`nicklist_nick_get_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_nick_get_string>`_""" ... def nicklist_nick_get_pointer(buffer: str, nick: str, property: str) -> str: - """`nicklist_nick_get_pointer in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_nick_get_pointer>`_""" + """`nicklist_nick_get_pointer in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_nick_get_pointer>`_""" ... def nicklist_nick_set(buffer: str, nick: str, property: str, value: str) -> int: - """`nicklist_nick_set in WeeChat plugin API reference <https://weechat.org/doc/api#_nicklist_nick_set>`_""" + """`nicklist_nick_set in WeeChat plugin API reference <https://weechat.org/doc/api/#_nicklist_nick_set>`_""" ... def bar_item_search(name: str) -> str: - """`bar_item_search in WeeChat plugin API reference <https://weechat.org/doc/api#_bar_item_search>`_""" + """`bar_item_search in WeeChat plugin API reference <https://weechat.org/doc/api/#_bar_item_search>`_""" ... def bar_item_new(name: str, build_callback: str, build_callback_data: str) -> str: - """`bar_item_new in WeeChat plugin API reference <https://weechat.org/doc/api#_bar_item_new>`_""" + """`bar_item_new in WeeChat plugin API reference <https://weechat.org/doc/api/#_bar_item_new>`_""" ... def bar_item_update(name: str) -> int: - """`bar_item_update in WeeChat plugin API reference <https://weechat.org/doc/api#_bar_item_update>`_""" + """`bar_item_update in WeeChat plugin API reference <https://weechat.org/doc/api/#_bar_item_update>`_""" ... def bar_item_remove(item: str) -> int: - """`bar_item_remove in WeeChat plugin API reference <https://weechat.org/doc/api#_bar_item_remove>`_""" + """`bar_item_remove in WeeChat plugin API reference <https://weechat.org/doc/api/#_bar_item_remove>`_""" ... def bar_search(name: str) -> str: - """`bar_search in WeeChat plugin API reference <https://weechat.org/doc/api#_bar_search>`_""" + """`bar_search in WeeChat plugin API reference <https://weechat.org/doc/api/#_bar_search>`_""" ... @@ -810,272 +810,272 @@ def bar_new(name: str, hidden: str, priority: str, type: str, condition: str, po filling_top_bottom: str, filling_left_right: str, size: str, size_max: str, color_fg: str, color_delim: str, color_bg: str, color_bg_inactive: str, separator: str, items: str) -> str: - """`bar_new in WeeChat plugin API reference <https://weechat.org/doc/api#_bar_new>`_""" + """`bar_new in WeeChat plugin API reference <https://weechat.org/doc/api/#_bar_new>`_""" ... def bar_set(bar: str, property: str, value: str) -> int: - """`bar_set in WeeChat plugin API reference <https://weechat.org/doc/api#_bar_set>`_""" + """`bar_set in WeeChat plugin API reference <https://weechat.org/doc/api/#_bar_set>`_""" ... def bar_update(name: str) -> int: - """`bar_update in WeeChat plugin API reference <https://weechat.org/doc/api#_bar_update>`_""" + """`bar_update in WeeChat plugin API reference <https://weechat.org/doc/api/#_bar_update>`_""" ... def bar_remove(bar: str) -> int: - """`bar_remove in WeeChat plugin API reference <https://weechat.org/doc/api#_bar_remove>`_""" + """`bar_remove in WeeChat plugin API reference <https://weechat.org/doc/api/#_bar_remove>`_""" ... def command(buffer: str, command: str) -> int: - """`command in WeeChat plugin API reference <https://weechat.org/doc/api#_command>`_""" + """`command in WeeChat plugin API reference <https://weechat.org/doc/api/#_command>`_""" ... def command_options(buffer: str, command: str, options: Dict[str, str]) -> int: - """`command_options in WeeChat plugin API reference <https://weechat.org/doc/api#_command_options>`_""" + """`command_options in WeeChat plugin API reference <https://weechat.org/doc/api/#_command_options>`_""" ... def completion_new(buffer: str) -> str: - """`completion_new in WeeChat plugin API reference <https://weechat.org/doc/api#_completion_new>`_""" + """`completion_new in WeeChat plugin API reference <https://weechat.org/doc/api/#_completion_new>`_""" ... def completion_search(completion: str, data: str, position: int, direction: int) -> int: - """`completion_search in WeeChat plugin API reference <https://weechat.org/doc/api#_completion_search>`_""" + """`completion_search in WeeChat plugin API reference <https://weechat.org/doc/api/#_completion_search>`_""" ... def completion_get_string(completion: str, property: str) -> str: - """`completion_get_string in WeeChat plugin API reference <https://weechat.org/doc/api#_completion_get_string>`_""" + """`completion_get_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_completion_get_string>`_""" ... def completion_list_add(completion: str, word: str, nick_completion: int, where: str) -> int: - """`completion_list_add in WeeChat plugin API reference <https://weechat.org/doc/api#_completion_list_add>`_""" + """`completion_list_add in WeeChat plugin API reference <https://weechat.org/doc/api/#_completion_list_add>`_""" ... def completion_free(completion: str) -> int: - """`completion_free in WeeChat plugin API reference <https://weechat.org/doc/api#_completion_free>`_""" + """`completion_free in WeeChat plugin API reference <https://weechat.org/doc/api/#_completion_free>`_""" ... def info_get(info_name: str, arguments: str) -> str: - """`info_get in WeeChat plugin API reference <https://weechat.org/doc/api#_info_get>`_""" + """`info_get in WeeChat plugin API reference <https://weechat.org/doc/api/#_info_get>`_""" ... def info_get_hashtable(info_name: str, dict_in: Dict[str, str]) -> Dict[str, str]: - """`info_get_hashtable in WeeChat plugin API reference <https://weechat.org/doc/api#_info_get_hashtable>`_""" + """`info_get_hashtable in WeeChat plugin API reference <https://weechat.org/doc/api/#_info_get_hashtable>`_""" ... def infolist_new() -> str: - """`infolist_new in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_new>`_""" + """`infolist_new in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_new>`_""" ... def infolist_new_item(infolist: str) -> str: - """`infolist_new_item in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_new_item>`_""" + """`infolist_new_item in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_new_item>`_""" ... def infolist_new_var_integer(item: str, name: str, value: int) -> str: - """`infolist_new_var_integer in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_new_var_integer>`_""" + """`infolist_new_var_integer in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_new_var_integer>`_""" ... def infolist_new_var_string(item: str, name: str, value: str) -> str: - """`infolist_new_var_string in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_new_var_string>`_""" + """`infolist_new_var_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_new_var_string>`_""" ... def infolist_new_var_pointer(item: str, name: str, pointer: str) -> str: - """`infolist_new_var_pointer in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_new_var_pointer>`_""" + """`infolist_new_var_pointer in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_new_var_pointer>`_""" ... def infolist_new_var_time(item: str, name: str, time: int) -> str: - """`infolist_new_var_time in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_new_var_time>`_""" + """`infolist_new_var_time in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_new_var_time>`_""" ... def infolist_get(infolist_name: str, pointer: str, arguments: str) -> str: - """`infolist_get in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_get>`_""" + """`infolist_get in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_get>`_""" ... def infolist_next(infolist: str) -> int: - """`infolist_next in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_next>`_""" + """`infolist_next in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_next>`_""" ... def infolist_prev(infolist: str) -> int: - """`infolist_prev in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_prev>`_""" + """`infolist_prev in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_prev>`_""" ... def infolist_reset_item_cursor(infolist: str) -> int: - """`infolist_reset_item_cursor in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_reset_item_cursor>`_""" + """`infolist_reset_item_cursor in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_reset_item_cursor>`_""" ... def infolist_search_var(infolist: str, name: str) -> str: - """`infolist_search_var in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_search_var>`_""" + """`infolist_search_var in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_search_var>`_""" ... def infolist_fields(infolist: str) -> str: - """`infolist_fields in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_fields>`_""" + """`infolist_fields in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_fields>`_""" ... def infolist_integer(infolist: str, var: str) -> int: - """`infolist_integer in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_integer>`_""" + """`infolist_integer in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_integer>`_""" ... def infolist_string(infolist: str, var: str) -> str: - """`infolist_string in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_string>`_""" + """`infolist_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_string>`_""" ... def infolist_pointer(infolist: str, var: str) -> str: - """`infolist_pointer in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_pointer>`_""" + """`infolist_pointer in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_pointer>`_""" ... def infolist_time(infolist: str, var: str) -> int: - """`infolist_time in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_time>`_""" + """`infolist_time in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_time>`_""" ... def infolist_free(infolist: str) -> int: - """`infolist_free in WeeChat plugin API reference <https://weechat.org/doc/api#_infolist_free>`_""" + """`infolist_free in WeeChat plugin API reference <https://weechat.org/doc/api/#_infolist_free>`_""" ... def hdata_get(hdata_name: str) -> str: - """`hdata_get in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_get>`_""" + """`hdata_get in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_get>`_""" ... def hdata_get_var_offset(hdata: str, name: str) -> int: - """`hdata_get_var_offset in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_get_var_offset>`_""" + """`hdata_get_var_offset in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_get_var_offset>`_""" ... def hdata_get_var_type_string(hdata: str, name: str) -> str: - """`hdata_get_var_type_string in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_get_var_type_string>`_""" + """`hdata_get_var_type_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_get_var_type_string>`_""" ... def hdata_get_var_array_size(hdata: str, pointer: str, name: str) -> int: - """`hdata_get_var_array_size in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_get_var_array_size>`_""" + """`hdata_get_var_array_size in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_get_var_array_size>`_""" ... def hdata_get_var_array_size_string(hdata: str, pointer: str, name: str) -> str: - """`hdata_get_var_array_size_string in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_get_var_array_size_string>`_""" + """`hdata_get_var_array_size_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_get_var_array_size_string>`_""" ... def hdata_get_var_hdata(hdata: str, name: str) -> str: - """`hdata_get_var_hdata in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_get_var_hdata>`_""" + """`hdata_get_var_hdata in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_get_var_hdata>`_""" ... def hdata_get_list(hdata: str, name: str) -> str: - """`hdata_get_list in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_get_list>`_""" + """`hdata_get_list in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_get_list>`_""" ... def hdata_check_pointer(hdata: str, list: str, pointer: str) -> int: - """`hdata_check_pointer in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_check_pointer>`_""" + """`hdata_check_pointer in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_check_pointer>`_""" ... def hdata_move(hdata: str, pointer: str, count: int) -> str: - """`hdata_move in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_move>`_""" + """`hdata_move in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_move>`_""" ... def hdata_search(hdata: str, pointer: str, search: str, pointers: Dict[str, str], extra_vars: Dict[str, str], options: Dict[str, str], count: int) -> str: - """`hdata_search in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_search>`_""" + """`hdata_search in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_search>`_""" ... def hdata_char(hdata: str, pointer: str, name: str) -> int: - """`hdata_char in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_char>`_""" + """`hdata_char in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_char>`_""" ... def hdata_integer(hdata: str, pointer: str, name: str) -> int: - """`hdata_integer in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_integer>`_""" + """`hdata_integer in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_integer>`_""" ... def hdata_long(hdata: str, pointer: str, name: str) -> int: - """`hdata_long in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_long>`_""" + """`hdata_long in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_long>`_""" ... def hdata_string(hdata: str, pointer: str, name: str) -> str: - """`hdata_string in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_string>`_""" + """`hdata_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_string>`_""" ... def hdata_pointer(hdata: str, pointer: str, name: str) -> str: - """`hdata_pointer in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_pointer>`_""" + """`hdata_pointer in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_pointer>`_""" ... def hdata_time(hdata: str, pointer: str, name: str) -> int: - """`hdata_time in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_time>`_""" + """`hdata_time in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_time>`_""" ... def hdata_hashtable(hdata: str, pointer: str, name: str) -> Dict[str, str]: - """`hdata_hashtable in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_hashtable>`_""" + """`hdata_hashtable in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_hashtable>`_""" ... def hdata_compare(hdata: str, pointer1: str, pointer2: str, name: str, case_sensitive: int) -> int: - """`hdata_compare in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_compare>`_""" + """`hdata_compare in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_compare>`_""" ... def hdata_update(hdata: str, pointer: str, hashtable: Dict[str, str]) -> int: - """`hdata_update in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_update>`_""" + """`hdata_update in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_update>`_""" ... def hdata_get_string(hdata: str, property: str) -> str: - """`hdata_get_string in WeeChat plugin API reference <https://weechat.org/doc/api#_hdata_get_string>`_""" + """`hdata_get_string in WeeChat plugin API reference <https://weechat.org/doc/api/#_hdata_get_string>`_""" ... def upgrade_new(filename: str, callback_read: str, callback_read_data: str) -> str: - """`upgrade_new in WeeChat plugin API reference <https://weechat.org/doc/api#_upgrade_new>`_""" + """`upgrade_new in WeeChat plugin API reference <https://weechat.org/doc/api/#_upgrade_new>`_""" ... def upgrade_write_object(upgrade_file: str, object_id: int, infolist: str) -> int: - """`upgrade_write_object in WeeChat plugin API reference <https://weechat.org/doc/api#_upgrade_write_object>`_""" + """`upgrade_write_object in WeeChat plugin API reference <https://weechat.org/doc/api/#_upgrade_write_object>`_""" ... def upgrade_read(upgrade_file: str) -> int: - """`upgrade_read in WeeChat plugin API reference <https://weechat.org/doc/api#_upgrade_read>`_""" + """`upgrade_read in WeeChat plugin API reference <https://weechat.org/doc/api/#_upgrade_read>`_""" ... def upgrade_close(upgrade_file: str) -> int: - """`upgrade_close in WeeChat plugin API reference <https://weechat.org/doc/api#_upgrade_close>`_""" + """`upgrade_close in WeeChat plugin API reference <https://weechat.org/doc/api/#_upgrade_close>`_""" ... |