From 59b06c96de42ae0fbb3836da532016aa51e4a283 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Mon, 5 May 2025 12:22:01 +0200 Subject: [PATCH] doc/dev: add missing tests directories and sources --- doc/en/weechat_dev.en.adoc | 246 ++++++++++++++++++---------------- doc/fr/weechat_dev.fr.adoc | 246 ++++++++++++++++++---------------- doc/ja/weechat_dev.ja.adoc | 260 ++++++++++++++++++++---------------- doc/sr/weechat_dev.sr.adoc | 262 +++++++++++++++++++++---------------- 4 files changed, 554 insertions(+), 460 deletions(-) diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc index dc3f9b5ed..4bcb9558c 100644 --- a/doc/en/weechat_dev.en.adoc +++ b/doc/en/weechat_dev.en.adoc @@ -93,12 +93,19 @@ The main WeeChat directories are: | tests/ | Tests. |    unit/ | Unit tests. |       core/ | Unit tests for core functions. +|          hook/ | Unit tests for hook functions. |       gui/ | Unit tests for interfaces functions. +|          curses/ | Unit tests for Curses interface functions. |       scripts/ | Scripting API tests. |          python/ | Python scripts to generate and run the scripting API tests. |       plugins/ | Unit tests for plugins. +|          alias/ | Unit tests for alias plugin. |          irc/ | Unit tests for IRC plugin. +|          logger/ | Unit tests for logger plugin. +|          relay/ | Unit tests for relay plugin. |          trigger/ | Unit tests for trigger plugin. +|          typing/ | Unit tests for typing plugin. +|          xfer/ | Unit tests for xfer plugin. | doc/ | Documentation. | po/ | Translations files (gettext). | debian/ | Debian packaging. @@ -406,121 +413,130 @@ WeeChat "core" is located in following directories: [width="100%",cols="2m,3",options="header"] |=== -| Path/file | Description -| tests/ | Root of tests. -|    unit/ | Root of unit tests. -|       tests.cpp | Program used to run all tests. -|       tests-record.cpp | Record and search in messages displayed. -|       core/ | Root of unit tests for core. -|          test-core-arraylist.cpp | Tests: arraylists. -|          test-core-calc.cpp | Tests: calculation of expressions. -|          test-core-command.cpp | Tests: commands. -|          test-core-config-file.cpp | Tests: configuration files. -|          test-core-crypto.cpp | Tests: cryptographic functions. -|          test-core-dir.cpp | Tests: directory/file functions. -|          test-core-eval.cpp | Tests: evaluation of expressions. -|          test-core-hashtable.cpp | Tests: hashtables. -|          test-core-hdata.cpp | Tests: hdata. -|          test-core-hook.cpp | Tests: hooks. -|          test-core-infolist.cpp | Tests: infolists. -|          test-core-input.cpp | Tests: input functions. -|          test-core-list.cpp | Tests: lists. -|          test-core-network.cpp | Tests: network functions. -|          test-core-secure.cpp | Tests: secured data. -|          test-core-signal.cpp | Tests: signals. -|          test-core-string.cpp | Tests: strings. -|          test-core-sys.cpp | Tests: system functions. -|          test-core-url.cpp | Tests: URLs. -|          test-core-utf8.cpp | Tests: UTF-8. -|          test-core-util.cpp | Tests: utility functions. -|          hook/ | Root of unit tests for hooks. -|             test-hook-command-run.cpp | Tests: hooks "command_run". -|             test-hook-command.cpp | Tests: hooks "command". -|             test-hook-completion.cpp | Tests: hooks "completion". -|             test-hook-config.cpp | Tests: hooks "config". -|             test-hook-connect.cpp | Tests: hooks "connect". -|             test-hook-fd.cpp | Tests: hooks "fd". -|             test-hook-focus.cpp | Tests: hooks "focus". -|             test-hook-hdata.cpp | Tests: hooks "hdata". -|             test-hook-hsignal.cpp | Tests: hooks "hsignal". -|             test-hook-info-hashtable.cpp | Tests: hooks "info_hashtable". -|             test-hook-info.cpp | Tests: hooks "info". -|             test-hook-infolist.cpp | Tests: hooks "infolist". -|             test-hook-line.cpp | Tests: hooks "line". -|             test-hook-modifier.cpp | Tests: hooks "modifier". -|             test-hook-print.cpp | Tests: hooks "print". -|             test-hook-process.cpp | Tests: hooks "process". -|             test-hook-signal.cpp | Tests: hooks "signal". -|             test-hook-timer.cpp | Tests: hooks "timer". -|             test-hook-url.cpp | Tests: hooks "url". -|       gui/ | Root of unit tests for interfaces. -|          test-gui-bar-window.cpp | Tests: bar window functions. -|          test-gui-buffer.cpp | Tests: buffer functions. -|          test-gui-chat.cpp | Tests: chat functions. -|          test-gui-color.cpp | Tests: colors. -|          test-gui-filter.cpp | Tests: filters. -|          test-gui-hotlist.cpp | Tests: hotlist functions. -|          test-gui-input.cpp | Tests: input functions. -|          test-gui-key.cpp | Tests: keys. -|          test-gui-line.cpp | Tests: lines. -|          test-gui-nick.cpp | Tests: nicks. -|          test-gui-nicklist.cpp | Tests: nicklist functions. -|          curses/ | Root of unit tests for Curses interface. -|             test-gui-curses-mouse.cpp | Tests: mouse (Curses interface). -|       scripts/ | Root of scripting API tests. -|          test-scripts.cpp | Program used to run the scripting API tests. -|          python/ | Python scripts to generate and run the scripting API tests. -|             testapigen.py | Python script generating scripts in all languages to test the scripting API. -|             testapi.py | Python script with scripting API tests, used by script testapigen.py. -|             unparse.py | Convert Python code to other languages, used by script testapigen.py. -|       plugins/ | Root of unit tests for plugins. -|          test-plugin-api-info.cpp | Tests: plugin API info functions. -|          test-plugin-config.cpp | Tests: plugin config functions. -|          test-plugins.cpp | Tests: plugins. -|          irc/ | Root of unit tests for IRC plugin. -|             test-irc-batch.cpp | Tests: IRC batched events. -|             test-irc-buffer.cpp | Tests: IRC buffers. -|             test-irc-channel.cpp | Tests: IRC channels. -|             test-irc-color.cpp | Tests: IRC colors. -|             test-irc-command.cpp | Tests: IRC commands. -|             test-irc-config.cpp | Tests: IRC configuration. -|             test-irc-ctcp.cpp | Tests: IRC CTCP. -|             test-irc-ignore.cpp | Tests: IRC ignores. -|             test-irc-info.cpp | Tests: IRC info. -|             test-irc-join.cpp | Tests: IRC join functions. -|             test-irc-list.cpp | Tests: IRC buffer for reply to /list command. -|             test-irc-message.cpp | Tests: IRC messages. -|             test-irc-mode.cpp | Tests: IRC modes. -|             test-irc-nick.cpp | Tests: IRC nicks. -|             test-irc-protocol.cpp | Tests: IRC protocol. -|             test-irc-sasl.cpp | Tests: SASL authentication with IRC protocol. -|             test-irc-server.cpp | Tests: IRC server. -|             test-irc-tag.cpp | Tests: IRC message tags. -|          logger/ | Root of unit tests for logger plugin. -|             test-logger.cpp | Tests: logger. -|             test-logger-backlog.cpp | Tests: logger backlog. -|             test-logger-tail.cpp | Tests: logger tail functions. -|          trigger/ | Root of unit tests for trigger plugin. -|             test-trigger.cpp | Tests: triggers. -|             test-trigger-config.cpp | Tests: trigger configuration. -|          typing/ | Root of unit tests for typing plugin. -|             test-typing.cpp | Tests: typing. -|             test-typing-status.cpp | Tests: typing status. -|          relay/ | Root of unit tests for Relay plugin. -|             test-relay-auth.cpp | Tests: clients authentication. -|             test-relay-http.cpp | Tests: HTTP functions for Relay plugin. -|             test-relay-raw.cpp | Tests: raw messages functions for Relay plugin. -|             test-relay-remote.cpp | Tests: remote functions for Relay plugin. -|             test-relay-websocket.cpp | Tests: websocket functions for Relay plugin. -|             api/ | Root of unit tests for Relay "api" protocol. -|                test-relay-api.cpp | Tests: Relay "api" protocol: general functions. -|                test-relay-api-msg.cpp | Tests: Relay "api" protocol: messages. -|                test-relay-api-protocol.cpp | Tests: Relay "api" protocol: protocol. -|             irc/ | Root of unit tests for Relay "irc" protocol. -|                test-relay-irc.cpp | Tests: Relay "irc" protocol. -|          xfer/ | Root of unit tests for Xfer plugin. -|             test-xfer-file.cpp | Tests: file functions. -|             test-xfer-network.cpp | Tests: network functions. +| Path/file | Description +| tests/ | Root of tests. +|    unit/ | Root of unit tests. +|       tests.cpp | Program used to run all tests. +|       tests-record.cpp | Record and search in messages displayed. +|       core/ | Root of unit tests for core. +|          test-core-arraylist.cpp | Tests: arraylists. +|          test-core-calc.cpp | Tests: calculation of expressions. +|          test-core-command.cpp | Tests: commands. +|          test-core-config-file.cpp | Tests: configuration files. +|          test-core-crypto.cpp | Tests: cryptographic functions. +|          test-core-dir.cpp | Tests: directory/file functions. +|          test-core-eval.cpp | Tests: evaluation of expressions. +|          test-core-hashtable.cpp | Tests: hashtables. +|          test-core-hdata.cpp | Tests: hdata. +|          test-core-hook.cpp | Tests: hooks. +|          test-core-infolist.cpp | Tests: infolists. +|          test-core-input.cpp | Tests: input functions. +|          test-core-list.cpp | Tests: lists. +|          test-core-network.cpp | Tests: network functions. +|          test-core-secure.cpp | Tests: secured data. +|          test-core-signal.cpp | Tests: signals. +|          test-core-string.cpp | Tests: strings. +|          test-core-sys.cpp | Tests: system functions. +|          test-core-url.cpp | Tests: URLs. +|          test-core-utf8.cpp | Tests: UTF-8. +|          test-core-util.cpp | Tests: utility functions. +|          hook/ | Root of unit tests for hooks. +|             test-hook-command-run.cpp | Tests: hooks "command_run". +|             test-hook-command.cpp | Tests: hooks "command". +|             test-hook-completion.cpp | Tests: hooks "completion". +|             test-hook-config.cpp | Tests: hooks "config". +|             test-hook-connect.cpp | Tests: hooks "connect". +|             test-hook-fd.cpp | Tests: hooks "fd". +|             test-hook-focus.cpp | Tests: hooks "focus". +|             test-hook-hdata.cpp | Tests: hooks "hdata". +|             test-hook-hsignal.cpp | Tests: hooks "hsignal". +|             test-hook-info-hashtable.cpp | Tests: hooks "info_hashtable". +|             test-hook-info.cpp | Tests: hooks "info". +|             test-hook-infolist.cpp | Tests: hooks "infolist". +|             test-hook-line.cpp | Tests: hooks "line". +|             test-hook-modifier.cpp | Tests: hooks "modifier". +|             test-hook-print.cpp | Tests: hooks "print". +|             test-hook-process.cpp | Tests: hooks "process". +|             test-hook-signal.cpp | Tests: hooks "signal". +|             test-hook-timer.cpp | Tests: hooks "timer". +|             test-hook-url.cpp | Tests: hooks "url". +|       gui/ | Root of unit tests for interfaces. +|          test-gui-bar-item-custom.cpp | Tests: custom bar item functions. +|          test-gui-bar-item.cpp | Tests: bar item functions. +|          test-gui-bar-window.cpp | Tests: bar window functions. +|          test-gui-bar.cpp | Tests: bar functions. +|          test-gui-buffer.cpp | Tests: buffer functions. +|          test-gui-chat.cpp | Tests: chat functions. +|          test-gui-color.cpp | Tests: colors. +|          test-gui-filter.cpp | Tests: filters. +|          test-gui-hotlist.cpp | Tests: hotlist functions. +|          test-gui-input.cpp | Tests: input functions. +|          test-gui-key.cpp | Tests: keys. +|          test-gui-line.cpp | Tests: lines. +|          test-gui-nick.cpp | Tests: nicks. +|          test-gui-nicklist.cpp | Tests: nicklist functions. +|          curses/ | Root of unit tests for Curses interface. +|             test-gui-curses-mouse.cpp | Tests: mouse (Curses interface). +|       scripts/ | Root of scripting API tests. +|          test-scripts.cpp | Program used to run the scripting API tests. +|          python/ | Python scripts to generate and run the scripting API tests. +|             testapigen.py | Python script generating scripts in all languages to test the scripting API. +|             testapi.py | Python script with scripting API tests, used by script testapigen.py. +|             unparse.py | Convert Python code to other languages, used by script testapigen.py. +|       plugins/ | Root of unit tests for plugins. +|          test-plugin-api-info.cpp | Tests: plugin API info functions. +|          test-plugin-config.cpp | Tests: plugin config functions. +|          test-plugins.cpp | Tests: plugins. +|          alias/ | Root of unit tests for alias plugin. +|             test-alias.cpp | Tests: aliases. +|          irc/ | Root of unit tests for IRC plugin. +|             test-irc-batch.cpp | Tests: IRC batched events. +|             test-irc-buffer.cpp | Tests: IRC buffers. +|             test-irc-channel.cpp | Tests: IRC channels. +|             test-irc-color.cpp | Tests: IRC colors. +|             test-irc-command.cpp | Tests: IRC commands. +|             test-irc-config.cpp | Tests: IRC configuration. +|             test-irc-ctcp.cpp | Tests: IRC CTCP. +|             test-irc-ignore.cpp | Tests: IRC ignores. +|             test-irc-info.cpp | Tests: IRC info. +|             test-irc-join.cpp | Tests: IRC join functions. +|             test-irc-list.cpp | Tests: IRC buffer for reply to /list command. +|             test-irc-message.cpp | Tests: IRC messages. +|             test-irc-mode.cpp | Tests: IRC modes. +|             test-irc-nick.cpp | Tests: IRC nicks. +|             test-irc-protocol.cpp | Tests: IRC protocol. +|             test-irc-sasl.cpp | Tests: SASL authentication with IRC protocol. +|             test-irc-server.cpp | Tests: IRC server. +|             test-irc-tag.cpp | Tests: IRC message tags. +|          logger/ | Root of unit tests for logger plugin. +|             test-logger.cpp | Tests: logger. +|             test-logger-backlog.cpp | Tests: logger backlog. +|             test-logger-tail.cpp | Tests: logger tail functions. +|          relay/ | Root of unit tests for Relay plugin. +|             test-relay-auth.cpp | Tests: clients authentication. +|             test-relay-bar-item.cpp | Tests: bar items for Relay plugin. +|             test-relay-http.cpp | Tests: HTTP functions for Relay plugin. +|             test-relay-raw.cpp | Tests: raw messages functions for Relay plugin. +|             test-relay-remote.cpp | Tests: remote functions for Relay plugin. +|             test-relay-websocket.cpp | Tests: websocket functions for Relay plugin. +|             api/ | Root of unit tests for Relay "api" protocol. +|                test-relay-api.cpp | Tests: Relay "api" protocol: general functions. +|                test-relay-api-msg.cpp | Tests: Relay "api" protocol: messages. +|                test-relay-api-protocol.cpp | Tests: Relay "api" protocol: protocol. +|                remote/ | Tests: Relay "api" protocol: remote functions. +|                   test-relay-remote-event.cpp | Tests: Relay "api" protocol: remote events. +|                   test-relay-remote-network.cpp | Tests: Relay "api" protocol: remote network. +|             irc/ | Root of unit tests for Relay "irc" protocol. +|                test-relay-irc.cpp | Tests: Relay "irc" protocol. +|          trigger/ | Root of unit tests for trigger plugin. +|             test-trigger.cpp | Tests: triggers. +|             test-trigger-config.cpp | Tests: trigger configuration. +|          typing/ | Root of unit tests for typing plugin. +|             test-typing.cpp | Tests: typing. +|             test-typing-status.cpp | Tests: typing status. +|          xfer/ | Root of unit tests for Xfer plugin. +|             test-xfer-file.cpp | Tests: file functions. +|             test-xfer-network.cpp | Tests: network functions. |=== [[documentation_translations]] diff --git a/doc/fr/weechat_dev.fr.adoc b/doc/fr/weechat_dev.fr.adoc index 09bb545c5..41f8b180a 100644 --- a/doc/fr/weechat_dev.fr.adoc +++ b/doc/fr/weechat_dev.fr.adoc @@ -94,12 +94,19 @@ Les répertoires principaux de WeeChat sont : | tests/ | Tests. |    unit/ | Tests unitaires. |       core/ | Tests unitaires pour les fonctions du cœur. +|          hook/ | Tests unitaires pour les fonctions hook. |       gui/ | Tests unitaires pour les fonctions de l'interface. +|          curses/ | Tests unitaires pour les fonctions de l'interface Curses. |       scripts/ | Tests de l'API script. |          python/ | Scripts Python pour générer et lancer les tests de l'API script. |       plugins/ | Tests unitaires pour les extensions. +|          alias/ | Tests unitaires pour l'extension alias. |          irc/ | Tests unitaires pour l'extension IRC. +|          logger/ | Tests unitaires pour l'extension logger. +|          relay/ | Tests unitaires pour l'extension relay. |          trigger/ | Tests unitaires pour l'extension trigger. +|          typing/ | Tests unitaires pour l'extension typing. +|          xfer/ | Tests unitaires pour l'extension xfer. | doc/ | Documentation. | po/ | Fichiers de traductions (gettext). | debian/ | Empaquetage Debian. @@ -407,121 +414,130 @@ Le cœur de WeeChat est situé dans les répertoires suivants : [width="100%",cols="2m,3",options="header"] |=== -| Chemin/fichier | Description -| tests/ | Racine des tests. -|    unit/ | Racine des tests unitaires. -|       tests.cpp | Programme utilisé pour lancer tous les tests. -|       tests-record.cpp | Enregistrement et recherche dans les messages affichés. -|       core/ | Racine des tests unitaires pour le cœur. -|          test-core-arraylist.cpp | Tests : listes avec tableau (« arraylists »). -|          test-core-calc.cpp | Tests : calcul d'expressions. -|          test-core-command.cpp | Tests : commandes. -|          test-core-config-file.cpp | Tests : fichiers de configuration. -|          test-core-crypto.cpp | Tests : fonctions cryptographiques. -|          test-core-dir.cpp | Tests : répertoires/fichiers. -|          test-core-eval.cpp | Tests : évaluation d'expressions. -|          test-core-hashtable.cpp | Tests : tables de hachage. -|          test-core-hdata.cpp | Tests : hdata. -|          test-core-hook.cpp | Tests : hooks. -|          test-core-infolist.cpp | Tests : infolists. -|          test-core-input.cpp | Tests : fonctions d'entrée. -|          test-core-list.cpp | Tests : listes. -|          test-core-network.cpp | Tests : fonctions réseau. -|          test-core-secure.cpp | Tests : données sécurisées. -|          test-core-signal.cpp | Tests : signaux. -|          test-core-string.cpp | Tests : chaînes. -|          test-core-sys.cpp | Tests : fonctions système. -|          test-core-url.cpp | Tests : URLs. -|          test-core-utf8.cpp | Tests : UTF-8. -|          test-core-util.cpp | Tests : fonctions utiles. -|          hook/ | Racine des tests pour les hooks. -|             test-hook-command.cpp | Tests : hooks "command". -|             test-hook-command-run.cpp | Tests: hooks "command_run". -|             test-hook-completion.cpp | Tests: hooks "completion". -|             test-hook-config.cpp | Tests: hooks "config". -|             test-hook-connect.cpp | Tests: hooks "connect". -|             test-hook-fd.cpp | Tests: hooks "fd". -|             test-hook-focus.cpp | Tests: hooks "focus". -|             test-hook-hdata.cpp | Tests: hooks "hdata". -|             test-hook-hsignal.cpp | Tests: hooks "hsignal". -|             test-hook-info-hashtable.cpp | Tests: hooks "info_hashtable". -|             test-hook-info.cpp | Tests: hooks "info". -|             test-hook-infolist.cpp | Tests: hooks "infolist". -|             test-hook-line.cpp | Tests: hooks "line". -|             test-hook-modifier.cpp | Tests : hooks "modifier". -|             test-hook-print.cpp | Tests: hooks "print". -|             test-hook-process.cpp | Tests: hooks "process". -|             test-hook-signal.cpp | Tests: hooks "signal". -|             test-hook-timer.cpp | Tests: hooks "timer". -|             test-hook-url.cpp | Tests: hooks "url". -|       gui/ | Racine des tests unitaires pour les interfaces. -|          test-gui-bar-window.cpp | Tests : fonctions de fenêtres de barre. -|          test-gui-buffer.cpp | Tests : fonctions de tampons. -|          test-gui-chat.cpp | Tests : fonctions de discussion. -|          test-gui-color.cpp | Tests : couleurs. -|          test-gui-filter.cpp | Tests : filtres. -|          test-gui-hotlist.cpp | Tests : fonctions hotlist. -|          test-gui-input.cpp | Tests : fonctions d'entrée. -|          test-gui-key.cpp | Tests : touches. -|          test-gui-line.cpp | Tests : lignes. -|          test-gui-nick.cpp | Tests : pseudos. -|          test-gui-nicklist.cpp | Tests : fonctions de liste de pseudos. -|          curses/ | Racine des tests unitaires pour l'interface Curses. -|             test-gui-curses-mouse.cpp | Tests : souris (interface Curses). -|       scripts/ | Racine des tests de l'API script. -|          test-scripts.cpp | Programme utilisé pour lancer les tests de l'API script. -|          python/ | Scripts Python pour générer et lancer les tests de l'API script. -|             testapigen.py | Script Python générant des scripts dans tous les languages pour tester l'API script. -|             testapi.py | Script Python avec les tests API, utilisé par le script testapigen.py. -|             unparse.py | Conversion de code Python vers d'autres langages, utilisé par le script testapigen.py. -|       plugins/ | Racine des tests unitaires pour les extensions. -|          test-plugin-api-info.cpp | Tests : fonctions info de l'API extension. -|          test-plugin-config.cpp | Tests : fonctions config de l'extension. -|          test-plugins.cpp | Tests : extensions. -|          irc/ | Racine des tests unitaires pour l'extension IRC. -|             test-irc-batch.cpp | Tests : évènements batch IRC. -|             test-irc-buffer.cpp | Tests : tampons IRC. -|             test-irc-channel.cpp | Tests : canaux IRC. -|             test-irc-color.cpp | Tests : couleurs IRC. -|             test-irc-command.cpp | Tests : commandes IRC. -|             test-irc-config.cpp | Tests : configuration IRC. -|             test-irc-ctcp.cpp | Tests : CTCP IRC. -|             test-irc-ignore.cpp | Tests : ignores IRC. -|             test-irc-info.cpp | Tests : infos IRC. -|             test-irc-join.cpp | Tests : fonctions de join IRC. -|             test-irc-list.cpp | Tests : tampon IRC pour la réponse à la commande /list. -|             test-irc-message.cpp | Tests : messages IRC. -|             test-irc-mode.cpp | Tests : modes IRC. -|             test-irc-nick.cpp | Tests : pseudos IRC. -|             test-irc-protocol.cpp | Tests : protocole IRC. -|             test-irc-sasl.cpp | Tests : authentification SASL avec le protocole IRC. -|             test-irc-server.cpp | Tests : serveur IRC. -|             test-irc-tag.cpp | Tests : étiquettes des messages IRC. -|          logger/ | Racine des tests unitaires pour l'extension logger. -|             test-logger.cpp | Tests : logger. -|             test-logger-backlog.cpp | Tests : backlog logger. -|             test-logger-tail.cpp | Tests : fonctions "tail". -|          trigger/ | Racine des tests unitaires pour l'extension trigger. -|             test-trigger.cpp | Tests : triggers. -|             test-trigger-config.cpp | Tests : configuration trigger. -|          typing/ | Racine des tests unitaires pour l'extension typing. -|             test-typing.cpp | Tests : typing. -|             test-typing-status.cpp | Tests : statut d'écriture. -|          relay/ | Racine des tests unitaires pour l'extension Relay. -|             test-relay-auth.cpp | Tests : authentification des clients. -|             test-relay-http.cpp | Tests : fonctions HTTP pour l'extension Relay. -|             test-relay-raw.cpp | Tests : fonctions sur les messages bruts pour l'extension Relay. -|             test-relay-remote.cpp | Tests : fonctions remote pour l'extension Relay. -|             test-relay-websocket.cpp | Tests : fonctions websocket pour l'extension Relay. -|             api/ | Racine des tests unitaires pour le protocole relay "api". -|                test-relay-api.cpp | Tests : protocole relay "api" : fonctions générales. -|                test-relay-api-msg.cpp | Tests : protocole relay "api" : messages. -|                test-relay-api-protocol.cpp | Tests : protocole relay "api" : protocole. -|             irc/ | Racine des tests unitaires pour le protocole relay "irc". -|                test-relay-irc.cpp | Tests : protocole relay "irc". -|          xfer/ | Racine des tests unitaires pour l'extension Xfer. -|             test-xfer-file.cpp | Tests : fonctions sur les fichiers. -|             test-xfer-network.cpp | Tests : fonctions réseau. +| Chemin/fichier | Description +| tests/ | Racine des tests. +|    unit/ | Racine des tests unitaires. +|       tests.cpp | Programme utilisé pour lancer tous les tests. +|       tests-record.cpp | Enregistrement et recherche dans les messages affichés. +|       core/ | Racine des tests unitaires pour le cœur. +|          test-core-arraylist.cpp | Tests : listes avec tableau (« arraylists »). +|          test-core-calc.cpp | Tests : calcul d'expressions. +|          test-core-command.cpp | Tests : commandes. +|          test-core-config-file.cpp | Tests : fichiers de configuration. +|          test-core-crypto.cpp | Tests : fonctions cryptographiques. +|          test-core-dir.cpp | Tests : répertoires/fichiers. +|          test-core-eval.cpp | Tests : évaluation d'expressions. +|          test-core-hashtable.cpp | Tests : tables de hachage. +|          test-core-hdata.cpp | Tests : hdata. +|          test-core-hook.cpp | Tests : hooks. +|          test-core-infolist.cpp | Tests : infolists. +|          test-core-input.cpp | Tests : fonctions d'entrée. +|          test-core-list.cpp | Tests : listes. +|          test-core-network.cpp | Tests : fonctions réseau. +|          test-core-secure.cpp | Tests : données sécurisées. +|          test-core-signal.cpp | Tests : signaux. +|          test-core-string.cpp | Tests : chaînes. +|          test-core-sys.cpp | Tests : fonctions système. +|          test-core-url.cpp | Tests : URLs. +|          test-core-utf8.cpp | Tests : UTF-8. +|          test-core-util.cpp | Tests : fonctions utiles. +|          hook/ | Racine des tests pour les hooks. +|             test-hook-command.cpp | Tests : hooks "command". +|             test-hook-command-run.cpp | Tests : hooks "command_run". +|             test-hook-completion.cpp | Tests : hooks "completion". +|             test-hook-config.cpp | Tests : hooks "config". +|             test-hook-connect.cpp | Tests : hooks "connect". +|             test-hook-fd.cpp | Tests : hooks "fd". +|             test-hook-focus.cpp | Tests : hooks "focus". +|             test-hook-hdata.cpp | Tests : hooks "hdata". +|             test-hook-hsignal.cpp | Tests : hooks "hsignal". +|             test-hook-info-hashtable.cpp | Tests : hooks "info_hashtable". +|             test-hook-info.cpp | Tests : hooks "info". +|             test-hook-infolist.cpp | Tests : hooks "infolist". +|             test-hook-line.cpp | Tests : hooks "line". +|             test-hook-modifier.cpp | Tests : hooks "modifier". +|             test-hook-print.cpp | Tests : hooks "print". +|             test-hook-process.cpp | Tests : hooks "process". +|             test-hook-signal.cpp | Tests : hooks "signal". +|             test-hook-timer.cpp | Tests : hooks "timer". +|             test-hook-url.cpp | Tests : hooks "url". +|       gui/ | Racine des tests unitaires pour les interfaces. +|          test-gui-bar-item-custom.cpp | Tests : fonctions d'objets de barre personnalisés. +|          test-gui-bar-item.cpp | Tests : fonctions d'objets de barre. +|          test-gui-bar-window.cpp | Tests : fonctions de fenêtres de barre. +|          test-gui-bar.cpp | Tests : fonctions de barres. +|          test-gui-buffer.cpp | Tests : fonctions de tampons. +|          test-gui-chat.cpp | Tests : fonctions de discussion. +|          test-gui-color.cpp | Tests : couleurs. +|          test-gui-filter.cpp | Tests : filtres. +|          test-gui-hotlist.cpp | Tests : fonctions hotlist. +|          test-gui-input.cpp | Tests : fonctions d'entrée. +|          test-gui-key.cpp | Tests : touches. +|          test-gui-line.cpp | Tests : lignes. +|          test-gui-nick.cpp | Tests : pseudos. +|          test-gui-nicklist.cpp | Tests : fonctions de liste de pseudos. +|          curses/ | Racine des tests unitaires pour l'interface Curses. +|             test-gui-curses-mouse.cpp | Tests : souris (interface Curses). +|       scripts/ | Racine des tests de l'API script. +|          test-scripts.cpp | Programme utilisé pour lancer les tests de l'API script. +|          python/ | Scripts Python pour générer et lancer les tests de l'API script. +|             testapigen.py | Script Python générant des scripts dans tous les languages pour tester l'API script. +|             testapi.py | Script Python avec les tests API, utilisé par le script testapigen.py. +|             unparse.py | Conversion de code Python vers d'autres langages, utilisé par le script testapigen.py. +|       plugins/ | Racine des tests unitaires pour les extensions. +|          test-plugin-api-info.cpp | Tests : fonctions info de l'API extension. +|          test-plugin-config.cpp | Tests : fonctions config de l'extension. +|          test-plugins.cpp | Tests : extensions. +|          alias/ | Racine des tests unitaires pour l'extension alias. +|             test-alias.cpp | Tests : alias. +|          irc/ | Racine des tests unitaires pour l'extension IRC. +|             test-irc-batch.cpp | Tests : évènements batch IRC. +|             test-irc-buffer.cpp | Tests : tampons IRC. +|             test-irc-channel.cpp | Tests : canaux IRC. +|             test-irc-color.cpp | Tests : couleurs IRC. +|             test-irc-command.cpp | Tests : commandes IRC. +|             test-irc-config.cpp | Tests : configuration IRC. +|             test-irc-ctcp.cpp | Tests : CTCP IRC. +|             test-irc-ignore.cpp | Tests : ignores IRC. +|             test-irc-info.cpp | Tests : infos IRC. +|             test-irc-join.cpp | Tests : fonctions de join IRC. +|             test-irc-list.cpp | Tests : tampon IRC pour la réponse à la commande /list. +|             test-irc-message.cpp | Tests : messages IRC. +|             test-irc-mode.cpp | Tests : modes IRC. +|             test-irc-nick.cpp | Tests : pseudos IRC. +|             test-irc-protocol.cpp | Tests : protocole IRC. +|             test-irc-sasl.cpp | Tests : authentification SASL avec le protocole IRC. +|             test-irc-server.cpp | Tests : serveur IRC. +|             test-irc-tag.cpp | Tests : étiquettes des messages IRC. +|          logger/ | Racine des tests unitaires pour l'extension logger. +|             test-logger.cpp | Tests : logger. +|             test-logger-backlog.cpp | Tests : backlog logger. +|             test-logger-tail.cpp | Tests : fonctions "tail". +|          relay/ | Racine des tests unitaires pour l'extension Relay. +|             test-relay-auth.cpp | Tests : authentification des clients. +|             test-relay-bar-item.cpp | Tests : objets de barre pour l'extension Relay. +|             test-relay-http.cpp | Tests : fonctions HTTP pour l'extension Relay. +|             test-relay-raw.cpp | Tests : fonctions sur les messages bruts pour l'extension Relay. +|             test-relay-remote.cpp | Tests : fonctions remote pour l'extension Relay. +|             test-relay-websocket.cpp | Tests : fonctions websocket pour l'extension Relay. +|             api/ | Racine des tests unitaires pour le protocole relay "api". +|                test-relay-api.cpp | Tests : protocole relay "api" : fonctions générales. +|                test-relay-api-msg.cpp | Tests : protocole relay "api" : messages. +|                test-relay-api-protocol.cpp | Tests : protocole relay "api" : protocole. +|                remote/ | Tests : protocole relay "api" : fonctions "remote" : évènement. +|                   test-relay-remote-event.cpp | Tests : protocole relay "api" : fonctions "remote" : réseau. +|                   test-relay-remote-network.cpp | Tests: Relay "api" protocol: remote network. +|             irc/ | Racine des tests unitaires pour le protocole relay "irc". +|                test-relay-irc.cpp | Tests : protocole relay "irc". +|          trigger/ | Racine des tests unitaires pour l'extension trigger. +|             test-trigger.cpp | Tests : triggers. +|             test-trigger-config.cpp | Tests : configuration trigger. +|          typing/ | Racine des tests unitaires pour l'extension typing. +|             test-typing.cpp | Tests : typing. +|             test-typing-status.cpp | Tests : statut d'écriture. +|          xfer/ | Racine des tests unitaires pour l'extension Xfer. +|             test-xfer-file.cpp | Tests : fonctions sur les fichiers. +|             test-xfer-network.cpp | Tests : fonctions réseau. |=== [[documentation_translations]] diff --git a/doc/ja/weechat_dev.ja.adoc b/doc/ja/weechat_dev.ja.adoc index 9a99404d8..661356ccd 100644 --- a/doc/ja/weechat_dev.ja.adoc +++ b/doc/ja/weechat_dev.ja.adoc @@ -95,13 +95,27 @@ qweechat:: | tests/ | テスト |    unit/ | 単体テスト |       core/ | コア関数の単体テスト +// TRANSLATION MISSING +|          hook/ | Unit tests for hook functions. |       gui/ | インターフェース関数の単体テスト +// TRANSLATION MISSING +|          curses/ | Unit tests for Curses interface functions. |       scripts/ | スクリプト API テスト |          python/ | スクリプト API テストを生成、実行する Python スクリプト |       plugins/ | プラグインの単体テスト +// TRANSLATION MISSING +|          alias/ | Unit tests for alias plugin. |          irc/ | IRC プラグインの単体テスト // TRANSLATION MISSING +|          logger/ | Unit tests for logger plugin. +// TRANSLATION MISSING +|          relay/ | Unit tests for relay plugin. +// TRANSLATION MISSING |          trigger/ | Unit tests for trigger plugin. +// TRANSLATION MISSING +|          typing/ | Unit tests for typing plugin. +// TRANSLATION MISSING +|          xfer/ | Unit tests for xfer plugin. | doc/ | 文書 | po/ | 翻訳ファイル (gettext) | debian/ | Debian パッケージ用 @@ -440,206 +454,222 @@ WeeChat "core" は以下のディレクトリに配置されています: [width="100%",cols="2m,3",options="header"] |=== -| パス/ファイル名 | 説明 -| tests/ | テスト用のルートディレクトリ -|    unit/ | 単体テスト用のルートディレクトリ -|       tests.cpp | 全テストの実行時に使われるプログラム +| パス/ファイル名 | 説明 +| tests/ | テスト用のルートディレクトリ +|    unit/ | 単体テスト用のルートディレクトリ +|       tests.cpp | 全テストの実行時に使われるプログラム // TRANSLATION MISSING -|       tests-record.cpp | Record and search in messages displayed. -|       core/ | core 向け単体テスト用のルートディレクトリ -|          test-core-arraylist.cpp | テスト: 配列リスト +|       tests-record.cpp | Record and search in messages displayed. +|       core/ | core 向け単体テスト用のルートディレクトリ +|          test-core-arraylist.cpp | テスト: 配列リスト // TRANSLATION MISSING -|          test-core-calc.cpp | Tests: calculation of expressions. +|          test-core-calc.cpp | Tests: calculation of expressions. // TRANSLATION MISSING -|          test-core-command.cpp | Tests: commands. +|          test-core-command.cpp | Tests: commands. // TRANSLATION MISSING -|          test-core-config-file.cpp | Tests: configuration files. +|          test-core-config-file.cpp | Tests: configuration files. // TRANSLATION MISSING -|          test-core-crypto.cpp | Tests: cryptographic functions. +|          test-core-crypto.cpp | Tests: cryptographic functions. // TRANSLATION MISSING -|          test-core-dir.cpp | Tests: directory/file functions. -|          test-core-eval.cpp | テスト: 式の評価 -|          test-core-hashtable.cpp | テスト: ハッシュテーブル -|          test-core-hdata.cpp | テスト: hdata -|          test-core-hook.cpp | テスト: フック -|          test-core-infolist.cpp | テスト: インフォリスト +|          test-core-dir.cpp | Tests: directory/file functions. +|          test-core-eval.cpp | テスト: 式の評価 +|          test-core-hashtable.cpp | テスト: ハッシュテーブル +|          test-core-hdata.cpp | テスト: hdata +|          test-core-hook.cpp | テスト: フック +|          test-core-infolist.cpp | テスト: インフォリスト // TRANSLATION MISSING -|          test-core-input.cpp | Tests: input functions. -|          test-core-list.cpp | テスト: リスト +|          test-core-input.cpp | Tests: input functions. +|          test-core-list.cpp | テスト: リスト // TRANSLATION MISSING -|          test-core-network.cpp | Tests: network functions. -|          test-core-secure.cpp | テスト: データ保護 +|          test-core-network.cpp | Tests: network functions. +|          test-core-secure.cpp | テスト: データ保護 // TRANSLATION MISSING -|          test-core-signal.cpp | テスト: signals. -|          test-core-string.cpp | テスト: 文字列 +|          test-core-signal.cpp | テスト: signals. +|          test-core-string.cpp | テスト: 文字列 // TRANSLATION MISSING -|          test-core-sys.cpp | Tests: system functions. -|          test-core-url.cpp | テスト: URL -|          test-core-utf8.cpp | テスト: UTF-8 -|          test-core-util.cpp | テスト: ユーティリティ関数 +|          test-core-sys.cpp | Tests: system functions. +|          test-core-url.cpp | テスト: URL +|          test-core-utf8.cpp | テスト: UTF-8 +|          test-core-util.cpp | テスト: ユーティリティ関数 // TRANSLATION MISSING -|          hook/ | Root of unit tests for hooks. +|          hook/ | Root of unit tests for hooks. // TRANSLATION MISSING -|             test-hook-command.cpp | Tests: hooks "command". +|             test-hook-command.cpp | Tests: hooks "command". // TRANSLATION MISSING -|             test-hook-command-run.cpp | Tests: hooks "command_run". +|             test-hook-command-run.cpp | Tests: hooks "command_run". // TRANSLATION MISSING -|             test-hook-completion.cpp | Tests: hooks "completion". +|             test-hook-completion.cpp | Tests: hooks "completion". // TRANSLATION MISSING -|             test-hook-config.cpp | Tests: hooks "config". +|             test-hook-config.cpp | Tests: hooks "config". // TRANSLATION MISSING -|             test-hook-connect.cpp | Tests: hooks "connect". +|             test-hook-connect.cpp | Tests: hooks "connect". // TRANSLATION MISSING -|             test-hook-fd.cpp | Tests: hooks "fd". +|             test-hook-fd.cpp | Tests: hooks "fd". // TRANSLATION MISSING -|             test-hook-focus.cpp | Tests: hooks "focus". +|             test-hook-focus.cpp | Tests: hooks "focus". // TRANSLATION MISSING -|             test-hook-hdata.cpp | Tests: hooks "hdata". +|             test-hook-hdata.cpp | Tests: hooks "hdata". // TRANSLATION MISSING -|             test-hook-hsignal.cpp | Tests: hooks "hsignal". +|             test-hook-hsignal.cpp | Tests: hooks "hsignal". // TRANSLATION MISSING -|             test-hook-info-hashtable.cpp | Tests: hooks "info_hashtable". +|             test-hook-info-hashtable.cpp | Tests: hooks "info_hashtable". // TRANSLATION MISSING -|             test-hook-info.cpp | Tests: hooks "info". +|             test-hook-info.cpp | Tests: hooks "info". // TRANSLATION MISSING -|             test-hook-infolist.cpp | Tests: hooks "infolist". +|             test-hook-infolist.cpp | Tests: hooks "infolist". // TRANSLATION MISSING -|             test-hook-line.cpp | Tests: hooks "line". +|             test-hook-line.cpp | Tests: hooks "line". // TRANSLATION MISSING -|             test-hook-modifier.cpp | Tests: hooks "modifier". +|             test-hook-modifier.cpp | Tests: hooks "modifier". // TRANSLATION MISSING -|             test-hook-print.cpp | Tests: hooks "print". +|             test-hook-print.cpp | Tests: hooks "print". // TRANSLATION MISSING -|             test-hook-process.cpp | Tests: hooks "process". +|             test-hook-process.cpp | Tests: hooks "process". // TRANSLATION MISSING -|             test-hook-signal.cpp | Tests: hooks "signal". +|             test-hook-signal.cpp | Tests: hooks "signal". // TRANSLATION MISSING -|             test-hook-timer.cpp | Tests: hooks "timer". +|             test-hook-timer.cpp | Tests: hooks "timer". // TRANSLATION MISSING -|             test-hook-url.cpp | Tests: hooks "url". +|             test-hook-url.cpp | Tests: hooks "url". -|       gui/ | インターフェースの単体テストを収める最上位ディレクトリ +|       gui/ | インターフェースの単体テストを収める最上位ディレクトリ // TRANSLATION MISSING -|          test-gui-bar-window.cpp | Tests: bar window functions. +|          test-gui-bar-item-custom.cpp | Tests: custom bar item functions. // TRANSLATION MISSING -|          test-gui-buffer.cpp | Tests: buffer functions. +|          test-gui-bar-item.cpp | Tests: bar item functions. // TRANSLATION MISSING -|          test-gui-chat.cpp | Tests: chat functions. +|          test-gui-bar-window.cpp | Tests: bar window functions. // TRANSLATION MISSING -|          test-gui-color.cpp | Tests: colors. +|          test-gui-bar.cpp | Tests: bar functions. // TRANSLATION MISSING -|          test-gui-filter.cpp | Tests: filters. +|          test-gui-buffer.cpp | Tests: buffer functions. // TRANSLATION MISSING -|          test-gui-hotlist.cpp | Tests: hotlist functions. +|          test-gui-chat.cpp | Tests: chat functions. // TRANSLATION MISSING -|          test-gui-input.cpp | Tests: input functions. +|          test-gui-color.cpp | Tests: colors. // TRANSLATION MISSING -|          test-gui-key.cpp | Tests: keys. -|          test-gui-line.cpp | テスト: 行 +|          test-gui-filter.cpp | Tests: filters. // TRANSLATION MISSING -|          test-gui-nick.cpp | テスト: nicks +|          test-gui-hotlist.cpp | Tests: hotlist functions. // TRANSLATION MISSING -|          test-gui-nicklist.cpp | Tests: nicklist functions. +|          test-gui-input.cpp | Tests: input functions. // TRANSLATION MISSING -|          curses/ | Root of unit tests for Curses interface. +|          test-gui-key.cpp | Tests: keys. +|          test-gui-line.cpp | テスト: 行 // TRANSLATION MISSING -|             test-gui-curses-mouse.cpp | Tests: mouse (Curses interface). -|       scripts/ | スクリプト API テスト用のルートディレクトリ -|          test-scripts.cpp | スクリプト API テストの実行時に使われるプログラム -|          python/ | スクリプト API テストを生成、実行する Python スクリプト -|             testapigen.py | スクリプト API のテスト時にすべての言語に関するスクリプトを生成する Python スクリプト -|             testapi.py | スクリプト API テスト時に使われる Python スクリプト (スクリプト testapigen.py から使われます) -|          unparse.py | Python コードを別の言語に変換 (スクリプト testapigen.py から使われます) -|       plugins/ | プラグインの単体テストを収める最上位ディレクトリ +|          test-gui-nick.cpp | テスト: nicks // TRANSLATION MISSING -|          test-plugin-api-info.cpp | Tests: plugin API info functions. +|          test-gui-nicklist.cpp | Tests: nicklist functions. // TRANSLATION MISSING -|          test-plugin-config.cpp | Tests: plugin config functions. -|          test-plugins.cpp | テスト: プラグイン -|          irc/ | IRC プラグインの単体テストを収める最上位ディレクトリ +|          curses/ | Root of unit tests for Curses interface. // TRANSLATION MISSING -|             test-irc-batch.cpp | Tests: IRC batched events. +|             test-gui-curses-mouse.cpp | Tests: mouse (Curses interface). +|       scripts/ | スクリプト API テスト用のルートディレクトリ +|          test-scripts.cpp | スクリプト API テストの実行時に使われるプログラム +|          python/ | スクリプト API テストを生成、実行する Python スクリプト +|             testapigen.py | スクリプト API のテスト時にすべての言語に関するスクリプトを生成する Python スクリプト +|             testapi.py | スクリプト API テスト時に使われる Python スクリプト (スクリプト testapigen.py から使われます) +|          unparse.py | Python コードを別の言語に変換 (スクリプト testapigen.py から使われます) +|       plugins/ | プラグインの単体テストを収める最上位ディレクトリ // TRANSLATION MISSING -|             test-irc-buffer.cpp | Tests: IRC buffers. +|          test-plugin-api-info.cpp | Tests: plugin API info functions. // TRANSLATION MISSING -|             test-irc-channel.cpp | Tests: IRC channels. -|             test-irc-color.cpp | Tests: IRC colors. +|          test-plugin-config.cpp | Tests: plugin config functions. +|          test-plugins.cpp | テスト: プラグイン // TRANSLATION MISSING -|             test-irc-command.cpp | Tests: IRC commands. -|             test-irc-config.cpp | テスト: IRC 設定 +|          alias/ | Root of unit tests for alias plugin. // TRANSLATION MISSING -|             test-irc-ctcp.cpp | Tests: IRC CTCP. +|             test-alias.cpp | Tests: aliases. +|          irc/ | IRC プラグインの単体テストを収める最上位ディレクトリ // TRANSLATION MISSING -|             test-irc-ignore.cpp | Tests: IRC ignores. +|             test-irc-batch.cpp | Tests: IRC batched events. // TRANSLATION MISSING -|             test-irc-info.cpp | Tests: IRC info. +|             test-irc-buffer.cpp | Tests: IRC buffers. // TRANSLATION MISSING -|             test-irc-join.cpp | Tests: IRC join functions. +|             test-irc-channel.cpp | Tests: IRC channels. +|             test-irc-color.cpp | Tests: IRC colors. // TRANSLATION MISSING -|             test-irc-list.cpp | Tests: IRC buffer for reply to /list command. +|             test-irc-command.cpp | Tests: IRC commands. +|             test-irc-config.cpp | テスト: IRC 設定 // TRANSLATION MISSING -|             test-irc-message.cpp | Tests: IRC messages. +|             test-irc-ctcp.cpp | Tests: IRC CTCP. // TRANSLATION MISSING -|             test-irc-mode.cpp | Tests: IRC modes. +|             test-irc-ignore.cpp | Tests: IRC ignores. // TRANSLATION MISSING -|             test-irc-nick.cpp | Tests: IRC nicks. -|             test-irc-protocol.cpp | テスト: IRC プロトコル +|             test-irc-info.cpp | Tests: IRC info. // TRANSLATION MISSING -|             test-irc-sasl.cpp | Tests: SASL authentication with IRC protocol. +|             test-irc-join.cpp | Tests: IRC join functions. // TRANSLATION MISSING -|             test-irc-server.cpp | Tests: IRC server. +|             test-irc-list.cpp | Tests: IRC buffer for reply to /list command. // TRANSLATION MISSING -|             test-irc-tag.cpp | Tests: IRC message tags. +|             test-irc-message.cpp | Tests: IRC messages. // TRANSLATION MISSING -|          logger/ | Root of unit tests for logger plugin. +|             test-irc-mode.cpp | Tests: IRC modes. // TRANSLATION MISSING -|             test-logger.cpp | Tests: logger. +|             test-irc-nick.cpp | Tests: IRC nicks. +|             test-irc-protocol.cpp | テスト: IRC プロトコル // TRANSLATION MISSING -|             test-logger-backlog.cpp | Tests: logger backlog. +|             test-irc-sasl.cpp | Tests: SASL authentication with IRC protocol. // TRANSLATION MISSING -|             test-logger-tail.cpp | Tests: logger tail functions. +|             test-irc-server.cpp | Tests: IRC server. // TRANSLATION MISSING -|          trigger/ | Root of unit tests for trigger plugin. +|             test-irc-tag.cpp | Tests: IRC message tags. // TRANSLATION MISSING -|             test-trigger.cpp | Tests: triggers. +|          logger/ | Root of unit tests for logger plugin. // TRANSLATION MISSING -|             test-trigger-config.cpp | Tests: trigger configuration. +|             test-logger.cpp | Tests: logger. // TRANSLATION MISSING -|          typing/ | Root of unit tests for typing plugin. +|             test-logger-backlog.cpp | Tests: logger backlog. // TRANSLATION MISSING -|             test-typing.cpp | Tests: typing. +|             test-logger-tail.cpp | Tests: logger tail functions. // TRANSLATION MISSING -|             test-typing-status.cpp | Tests: typing status. +|          relay/ | Root of unit tests for Relay plugin. // TRANSLATION MISSING -|          relay/ | Root of unit tests for Relay plugin. +|             test-relay-auth.cpp | Tests: clients authentication. // TRANSLATION MISSING -|             test-relay-auth.cpp | Tests: clients authentication. +|             test-relay-http.cpp | Tests: HTTP functions for Relay plugin. // TRANSLATION MISSING -|             test-relay-http.cpp | Tests: HTTP functions for Relay plugin. +|             test-relay-raw.cpp | Tests: raw messages functions for Relay plugin. // TRANSLATION MISSING -|             test-relay-raw.cpp | Tests: raw messages functions for Relay plugin. +|             test-relay-remote.cpp | Tests: remote functions for Relay plugin. // TRANSLATION MISSING -|             test-relay-remote.cpp | Tests: remote functions for Relay plugin. +|             test-relay-websocket.cpp | Tests: websocket functions for Relay plugin. // TRANSLATION MISSING -|             test-relay-websocket.cpp | Tests: websocket functions for Relay plugin. +|             api/ | Root of unit tests for Relay "api" protocol. // TRANSLATION MISSING -|             api/ | Root of unit tests for Relay "api" protocol. +|                test-relay-api.cpp | Tests: Relay "api" protocol: general functions. // TRANSLATION MISSING -|                test-relay-api.cpp | Tests: Relay "api" protocol: general functions. +|                test-relay-api-msg.cpp | Tests: Relay "api" protocol: messages. // TRANSLATION MISSING -|                test-relay-api-msg.cpp | Tests: Relay "api" protocol: messages. +|                test-relay-api-protocol.cpp | Tests: Relay "api" protocol: protocol. // TRANSLATION MISSING -|                test-relay-api-protocol.cpp | Tests: Relay "api" protocol: protocol. +|                remote/ | Tests: Relay "api" protocol: remote functions. // TRANSLATION MISSING -|             irc/ | Root of unit tests for Relay "irc" protocol. +|                   test-relay-remote-event.cpp | Tests: Relay "api" protocol: remote events. // TRANSLATION MISSING -|                test-relay-irc.cpp | Tests: Relay "irc" protocol. +|                   test-relay-remote-network.cpp | Tests: Relay "api" protocol: remote network. // TRANSLATION MISSING -|          xfer/ | Root of unit tests for Xfer plugin. +|             irc/ | Root of unit tests for Relay "irc" protocol. // TRANSLATION MISSING -|             test-xfer-file.cpp | Tests: file functions. +|                test-relay-irc.cpp | Tests: Relay "irc" protocol. // TRANSLATION MISSING -|             test-xfer-network.cpp | Tests: network functions. +|          trigger/ | Root of unit tests for trigger plugin. +// TRANSLATION MISSING +|             test-trigger.cpp | Tests: triggers. +// TRANSLATION MISSING +|             test-trigger-config.cpp | Tests: trigger configuration. +// TRANSLATION MISSING +|          typing/ | Root of unit tests for typing plugin. +// TRANSLATION MISSING +|             test-typing.cpp | Tests: typing. +// TRANSLATION MISSING +|             test-typing-status.cpp | Tests: typing status. +// TRANSLATION MISSING +|          xfer/ | Root of unit tests for Xfer plugin. +// TRANSLATION MISSING +|             test-xfer-file.cpp | Tests: file functions. +// TRANSLATION MISSING +|             test-xfer-network.cpp | Tests: network functions. |=== [[documentation_translations]] diff --git a/doc/sr/weechat_dev.sr.adoc b/doc/sr/weechat_dev.sr.adoc index 32503622a..0c1d50455 100644 --- a/doc/sr/weechat_dev.sr.adoc +++ b/doc/sr/weechat_dev.sr.adoc @@ -93,11 +93,27 @@ qweechat:: | tests/ | Тестови. |    unit/ | Unit тестови. |       core/ | Unit тестови за функције језгра. +// TRANSLATION MISSING +|          hook/ | Unit tests for hook functions. |       gui/ | Unit тестови за функције интерфејса. +// TRANSLATION MISSING +|          curses/ | Unit tests for Curses interface functions. |       scripts/ | Тестови за API скриптовања. |          python/ | Python скрипте за генерисање и покретање тестова за API скриптовања. |       plugins/ | Unit тестови за додатке. +// TRANSLATION MISSING +|          alias/ | Unit tests for alias plugin. |          irc/ | Unit тестови за IRC додатак. +// TRANSLATION MISSING +|          logger/ | Unit tests for logger plugin. +// TRANSLATION MISSING +|          relay/ | Unit tests for relay plugin. +// TRANSLATION MISSING +|          trigger/ | Unit tests for trigger plugin. +// TRANSLATION MISSING +|          typing/ | Unit tests for typing plugin. +// TRANSLATION MISSING +|          xfer/ | Unit tests for xfer plugin. | doc/ | Документација. | po/ | Фајлови превода (gettext). | debian/ | Debian паковање. @@ -404,121 +420,137 @@ WeeChat „језгро” се налази у следећим директо [width="100%", cols="2m,3", options="header"] |=== -| Путања/фајл | Опис -| tests/ | Корен тестова. -|    unit/ | Корен unit тестова. -|       tests.cpp | Програм који се користи за извршавање свих тестова. -|       tests-record.cpp | Бележење и претрага у приказаним порукама. -|       core/ | Корен unit тестова језгра. -|          test-core-arraylist.cpp | Тестови: arraylists. -|          test-core-calc.cpp | Тестови: калкулација израза. -|          test-core-command.cpp | Тестови: команде. -|          test-core-config-file.cpp | Тестови: конфигурациони фајлови. -|          test-core-crypto.cpp | Тестови: криптографске функције. -|          test-core-dir.cpp | Тестови: функције директоријума/фајла. -|          test-core-eval.cpp | Тестови: израчунавање израза. -|          test-core-hashtable.cpp | Тестови: hashtables. -|          test-core-hdata.cpp | Тестови: hdata. -|          test-core-hook.cpp | Тестови: куке. -|          test-core-infolist.cpp | Тестови: infolists. -|          test-core-input.cpp | Тестови: функције за унос. -|          test-core-list.cpp | Тестови: листе. -|          test-core-network.cpp | Тестови: мрежне функције. -|          test-core-secure.cpp | Тестови: обезбеђени подаци. -|          test-core-signal.cpp | Тестови: сигнали. -|          test-core-string.cpp | Тестови: стрингови. -|          test-core-sys.cpp | Тестови: системске функције. -|          test-core-url.cpp | Тестови: URL адресе. -|          test-core-utf8.cpp | Тестови: UTF-8. -|          test-core-util.cpp | Тестови: помоћне функције. -|          hook/ | Корен unit тестова за куке. -|             test-hook-command.cpp | Тестови: куке „command”. -|             test-hook-command-run.cpp | Тестови: куке „command_run”. -|             test-hook-completion.cpp | Тестови: куке „completion”. -|             test-hook-config.cpp | Тестови: куке „config”. -|             test-hook-connect.cpp | Тестови: куке „connect”. -|             test-hook-fd.cpp | Тестови: куке „fd”. -|             test-hook-focus.cpp | Тестови: куке „focus”. -|             test-hook-hdata.cpp | Тестови: куке „hdata”. -|             test-hook-hsignal.cpp | Тестови: куке „hsignal”. -|             test-hook-info-hashtable.cpp | Тестови: куке „info_hashtable”. -|             test-hook-info.cpp | Тестови: куке „info”. -|             test-hook-infolist.cpp | Тестови: куке „infolist”. -|             test-hook-line.cpp | Тестови: куке „line”. -|             test-hook-modifier.cpp | Тестови: куке „modifier”. -|             test-hook-print.cpp | Тестови: куке „print”. -|             test-hook-process.cpp | Тестови: куке „process”. -|             test-hook-signal.cpp | Тестови: куке „signal”. -|             test-hook-timer.cpp | Тестови: куке „timer”. -|             test-hook-url.cpp | Тестови: куке „url”. -|       gui/ | Корен unit тестова интерфејса. -|          test-gui-bar-window.cpp | Тестови: функције прозора траке. -|          test-gui-buffer.cpp | Тестови: бафер функције. -|          test-gui-chat.cpp | Тестови: чет функције. -|          test-gui-color.cpp | Тестови: боје. -|          test-gui-filter.cpp | Тестови: филтери. -|          test-gui-hotlist.cpp | Тестови: функције врућих листи. -|          test-gui-input.cpp | Тестови: улазне функције. -|          test-gui-key.cpp | Тестови: тастери. -|          test-gui-line.cpp | Тестови: линије. -|          test-gui-nick.cpp | Тестови: надимци. -|          test-gui-nicklist.cpp | Тестови: функције листе надимака. -|          curses/ | Корен unit тестова за Curses интерфејс. -|             test-gui-curses-mouse.cpp | Тестови: миш (Curses интерфејс). -|       scripts/ | Корен тестова за API скриптовања. -|          test-scripts.cpp | Програм који се користи за извршавање тестова API скриптовања. -|          python/ | Python скрипте које генеришу и покрећу тестове API скриптовања. -|             testapigen.py | Python скрипта која генерише скрипте на свим језицима за тестирање API скриптовања. -|             testapi.py | Python скрипта са тестовима API скриптовања, користи је скрипта testapigen.py. -|             unparse.py | Конверзија Python кода у остале језике, користи је скрипта testapigen.py. -|       plugins/ | Корен unit тестова додатака. -|          test-plugin-config.cpp | Тестови: функције конфигурације додатка. -|          test-plugin-api-info.cpp | Тестови: инфо функције API додатака. -|          test-plugins.cpp | Тестови: plugins. -|          irc/ | Корен unit тестова IRC додатка. -|             test-irc-batch.cpp | Тестови: IRC пакетни догађаји. -|             test-irc-buffer.cpp | Тестови: IRC бафери. -|             test-irc-channel.cpp | Тестови: IRC канали. -|             test-irc-color.cpp | Тестови: IRC боје. -|             test-irc-command.cpp | Тестови: IRC команде. -|             test-irc-config.cpp | Тестови: IRC конфигурација. -|             test-irc-ctcp.cpp | Тестови: IRC CTCP. -|             test-irc-ignore.cpp | Тестови: IRC игнорисања. -|             test-irc-info.cpp | Тестови: IRC информације. -|             test-irc-join.cpp | Тестови: IRC функције приступања. -|             test-irc-list.cpp | Тестови: IRC бафер за одговор на /list команду. -|             test-irc-message.cpp | Тестови: IRC поруке. -|             test-irc-mode.cpp | Тестови: IRC режими. -|             test-irc-nick.cpp | Тестови: IRC надимци. -|             test-irc-protocol.cpp | Тестови: IRC протокол. -|             test-irc-sasl.cpp | Тестови: SASL аутентификација са IRC протоколом. -|             test-irc-server.cpp | Тестови: IRC сервер. -|             test-irc-tag.cpp | Тестови: IRC ознаке порука. -|          logger/ | Корен unit тестова за logger додатак. -|             test-logger.cpp | Тестови: logger. -|             test-logger-backlog.cpp | Тестови: logger заостатак. -|             test-logger-tail.cpp | Тестови: logger tail функције. -|          trigger/ | Корен unit тестова за окидач додатак. -|             test-trigger.cpp | Тестови: окидачи. -|             test-trigger-config.cpp | Тестови: конфигурација окидача. -|          typing/ | Корен unit тестова за typing додатак. -|             test-typing.cpp | Тестови: typing. -|             test-typing-status.cpp | Тестови: typing статус. -|          relay/ | Корен unit тестова за Релеј додатак. -|             test-relay-auth.cpp | Тестови: аутентификација клијената. -|             test-relay-http.cpp | Тестови: HTTP функције за Релеј додатак. -|             test-relay-raw.cpp | Тестови: функције сирових порука за Релеј додатак. -|             test-relay-remote.cpp | Тестови: удаљене функције за Релеј додатак. -|             test-relay-websocket.cpp | Тестови: websocket функције за Релеј додатак. -|             api/ | Корен unit тестова за Релеј „api” протокол. -|                test-relay-api.cpp | Тестови: Релеј „api” протокол: опште функције. -|                test-relay-api-msg.cpp | Тестови: Релеј „api” протокол: поруке. -|                test-relay-api-protocol.cpp | Тестови: Релеј „api” протокол: протокол. -|             irc/ | Корен unit тестова за Релеј „irc” протокол. -|                test-relay-irc.cpp | Тестови: Релеј „irc” протокол. -|          xfer/ | Корен unit тестова за Xfer додатак. -|             test-xfer-file.cpp | Тестови: фајл функције. -|             test-xfer-network.cpp | Тестови: мрежне функције. +| Путања/фајл | Опис +| tests/ | Корен тестова. +|    unit/ | Корен unit тестова. +|       tests.cpp | Програм који се користи за извршавање свих тестова. +|       tests-record.cpp | Бележење и претрага у приказаним порукама. +|       core/ | Корен unit тестова језгра. +|          test-core-arraylist.cpp | Тестови: arraylists. +|          test-core-calc.cpp | Тестови: калкулација израза. +|          test-core-command.cpp | Тестови: команде. +|          test-core-config-file.cpp | Тестови: конфигурациони фајлови. +|          test-core-crypto.cpp | Тестови: криптографске функције. +|          test-core-dir.cpp | Тестови: функције директоријума/фајла. +|          test-core-eval.cpp | Тестови: израчунавање израза. +|          test-core-hashtable.cpp | Тестови: hashtables. +|          test-core-hdata.cpp | Тестови: hdata. +|          test-core-hook.cpp | Тестови: куке. +|          test-core-infolist.cpp | Тестови: infolists. +|          test-core-input.cpp | Тестови: функције за унос. +|          test-core-list.cpp | Тестови: листе. +|          test-core-network.cpp | Тестови: мрежне функције. +|          test-core-secure.cpp | Тестови: обезбеђени подаци. +|          test-core-signal.cpp | Тестови: сигнали. +|          test-core-string.cpp | Тестови: стрингови. +|          test-core-sys.cpp | Тестови: системске функције. +|          test-core-url.cpp | Тестови: URL адресе. +|          test-core-utf8.cpp | Тестови: UTF-8. +|          test-core-util.cpp | Тестови: помоћне функције. +|          hook/ | Корен unit тестова за куке. +|             test-hook-command.cpp | Тестови: куке „command”. +|             test-hook-command-run.cpp | Тестови: куке „command_run”. +|             test-hook-completion.cpp | Тестови: куке „completion”. +|             test-hook-config.cpp | Тестови: куке „config”. +|             test-hook-connect.cpp | Тестови: куке „connect”. +|             test-hook-fd.cpp | Тестови: куке „fd”. +|             test-hook-focus.cpp | Тестови: куке „focus”. +|             test-hook-hdata.cpp | Тестови: куке „hdata”. +|             test-hook-hsignal.cpp | Тестови: куке „hsignal”. +|             test-hook-info-hashtable.cpp | Тестови: куке „info_hashtable”. +|             test-hook-info.cpp | Тестови: куке „info”. +|             test-hook-infolist.cpp | Тестови: куке „infolist”. +|             test-hook-line.cpp | Тестови: куке „line”. +|             test-hook-modifier.cpp | Тестови: куке „modifier”. +|             test-hook-print.cpp | Тестови: куке „print”. +|             test-hook-process.cpp | Тестови: куке „process”. +|             test-hook-signal.cpp | Тестови: куке „signal”. +|             test-hook-timer.cpp | Тестови: куке „timer”. +|             test-hook-url.cpp | Тестови: куке „url”. +|       gui/ | Корен unit тестова интерфејса. +// TRANSLATION MISSING +|          test-gui-bar-item-custom.cpp | Tests: custom bar item functions. +// TRANSLATION MISSING +|          test-gui-bar-item.cpp | Tests: bar item functions. +|          test-gui-bar-window.cpp | Тестови: функције прозора траке. +// TRANSLATION MISSING +|          test-gui-bar.cpp | Tests: bar functions. +|          test-gui-buffer.cpp | Тестови: бафер функције. +|          test-gui-chat.cpp | Тестови: чет функције. +|          test-gui-color.cpp | Тестови: боје. +|          test-gui-filter.cpp | Тестови: филтери. +|          test-gui-hotlist.cpp | Тестови: функције врућих листи. +|          test-gui-input.cpp | Тестови: улазне функције. +|          test-gui-key.cpp | Тестови: тастери. +|          test-gui-line.cpp | Тестови: линије. +|          test-gui-nick.cpp | Тестови: надимци. +|          test-gui-nicklist.cpp | Тестови: функције листе надимака. +|          curses/ | Корен unit тестова за Curses интерфејс. +|             test-gui-curses-mouse.cpp | Тестови: миш (Curses интерфејс). +|       scripts/ | Корен тестова за API скриптовања. +|          test-scripts.cpp | Програм који се користи за извршавање тестова API скриптовања. +|          python/ | Python скрипте које генеришу и покрећу тестове API скриптовања. +|             testapigen.py | Python скрипта која генерише скрипте на свим језицима за тестирање API скриптовања. +|             testapi.py | Python скрипта са тестовима API скриптовања, користи је скрипта testapigen.py. +|             unparse.py | Конверзија Python кода у остале језике, користи је скрипта testapigen.py. +|       plugins/ | Корен unit тестова додатака. +|          test-plugin-config.cpp | Тестови: функције конфигурације додатка. +|          test-plugin-api-info.cpp | Тестови: инфо функције API додатака. +|          test-plugins.cpp | Тестови: plugins. +// TRANSLATION MISSING +|          alias/ | Root of unit tests for alias plugin. +// TRANSLATION MISSING +|             test-alias.cpp | Tests: aliases. +|          irc/ | Корен unit тестова IRC додатка. +|             test-irc-batch.cpp | Тестови: IRC пакетни догађаји. +|             test-irc-buffer.cpp | Тестови: IRC бафери. +|             test-irc-channel.cpp | Тестови: IRC канали. +|             test-irc-color.cpp | Тестови: IRC боје. +|             test-irc-command.cpp | Тестови: IRC команде. +|             test-irc-config.cpp | Тестови: IRC конфигурација. +|             test-irc-ctcp.cpp | Тестови: IRC CTCP. +|             test-irc-ignore.cpp | Тестови: IRC игнорисања. +|             test-irc-info.cpp | Тестови: IRC информације. +|             test-irc-join.cpp | Тестови: IRC функције приступања. +|             test-irc-list.cpp | Тестови: IRC бафер за одговор на /list команду. +|             test-irc-message.cpp | Тестови: IRC поруке. +|             test-irc-mode.cpp | Тестови: IRC режими. +|             test-irc-nick.cpp | Тестови: IRC надимци. +|             test-irc-protocol.cpp | Тестови: IRC протокол. +|             test-irc-sasl.cpp | Тестови: SASL аутентификација са IRC протоколом. +|             test-irc-server.cpp | Тестови: IRC сервер. +|             test-irc-tag.cpp | Тестови: IRC ознаке порука. +|          logger/ | Корен unit тестова за logger додатак. +|             test-logger.cpp | Тестови: logger. +|             test-logger-backlog.cpp | Тестови: logger заостатак. +|             test-logger-tail.cpp | Тестови: logger tail функције. +|          relay/ | Корен unit тестова за Релеј додатак. +|             test-relay-auth.cpp | Тестови: аутентификација клијената. +|             test-relay-http.cpp | Тестови: HTTP функције за Релеј додатак. +|             test-relay-raw.cpp | Тестови: функције сирових порука за Релеј додатак. +|             test-relay-remote.cpp | Тестови: удаљене функције за Релеј додатак. +|             test-relay-websocket.cpp | Тестови: websocket функције за Релеј додатак. +|             api/ | Корен unit тестова за Релеј „api” протокол. +|                test-relay-api.cpp | Тестови: Релеј „api” протокол: опште функције. +|                test-relay-api-msg.cpp | Тестови: Релеј „api” протокол: поруке. +|                test-relay-api-protocol.cpp | Тестови: Релеј „api” протокол: протокол. +// TRANSLATION MISSING +|                remote/ | Tests: Relay "api" protocol: remote functions. +// TRANSLATION MISSING +|                   test-relay-remote-event.cpp | Tests: Relay "api" protocol: remote events. +// TRANSLATION MISSING +|                   test-relay-remote-network.cpp | Tests: Relay "api" protocol: remote network. +|             irc/ | Корен unit тестова за Релеј „irc” протокол. +|                test-relay-irc.cpp | Тестови: Релеј „irc” протокол. +|          trigger/ | Корен unit тестова за окидач додатак. +|             test-trigger.cpp | Тестови: окидачи. +|             test-trigger-config.cpp | Тестови: конфигурација окидача. +|          typing/ | Корен unit тестова за typing додатак. +|             test-typing.cpp | Тестови: typing. +|             test-typing-status.cpp | Тестови: typing статус. +|          xfer/ | Корен unit тестова за Xfer додатак. +|             test-xfer-file.cpp | Тестови: фајл функције. +|             test-xfer-network.cpp | Тестови: мрежне функције. |=== [[documentation_translations]]