summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-10-04 00:26:54 +0200
committermathieui <mathieui@mathieui.net>2016-10-04 00:29:19 +0200
commit5a6ba4dda826308fd3ba5abd8cc25fba2166a431 (patch)
tree8ef6c6f010ff1feed1a4fb56e17fe955a7ff9ae7 /plugins
parentc5e80b968862b4fe54d394ed278466f3eb02dd41 (diff)
downloadpoezio-5a6ba4dda826308fd3ba5abd8cc25fba2166a431.tar.gz
poezio-5a6ba4dda826308fd3ba5abd8cc25fba2166a431.tar.bz2
poezio-5a6ba4dda826308fd3ba5abd8cc25fba2166a431.tar.xz
poezio-5a6ba4dda826308fd3ba5abd8cc25fba2166a431.zip
Replace "MUC" by "chatroom" in the documentation
And fix some linewrapping, obsolete references to poezio.eu, and obsolete docs.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/close_all.py6
-rw-r--r--plugins/random_nick.py2
-rw-r--r--plugins/server_part.py2
-rw-r--r--plugins/tell.py3
-rw-r--r--plugins/time_marker.py4
-rw-r--r--plugins/vcard.py4
6 files changed, 11 insertions, 10 deletions
diff --git a/plugins/close_all.py b/plugins/close_all.py
index 6d31c05f..70dcd21c 100644
--- a/plugins/close_all.py
+++ b/plugins/close_all.py
@@ -1,5 +1,5 @@
"""
-``close_all`` plugin: close all tabs except MUCs and the roster.
+``close_all`` plugin: close all tabs except chatrooms and the roster.
Commands
--------
@@ -9,7 +9,7 @@ Commands
/closeall
**Usage:** ``/closeall``
- Close all tabs except the roster and MUC tabs.
+ Close all tabs except the roster and chatroom tabs.
"""
from poezio.plugin import BasePlugin
from poezio import tabs
@@ -19,7 +19,7 @@ from poezio.decorators import command_args_parser
class Plugin(BasePlugin):
def init(self):
self.api.add_command('closeall', self.command_closeall,
- help='Close all non-muc tabs.')
+ help='Close all non-chatroom tabs.')
@command_args_parser.ignored
def command_closeall(self):
diff --git a/plugins/random_nick.py b/plugins/random_nick.py
index 66d5661f..643c79f0 100644
--- a/plugins/random_nick.py
+++ b/plugins/random_nick.py
@@ -1,5 +1,5 @@
"""
-This plugin makes you have a random nick when joining a MUC.
+This plugin makes you have a random nick when joining a chatroom.
Usage
-----
diff --git a/plugins/server_part.py b/plugins/server_part.py
index 878001e7..08aa663b 100644
--- a/plugins/server_part.py
+++ b/plugins/server_part.py
@@ -11,7 +11,7 @@ Command
**Usage:** ``/server_part [<server> [message]]``
Leave all rooms on ``<server>``, if not provided and the current
- tab is a MUC tab, it will leave all rooms on the current server.
+ tab is a chatroom tab, it will leave all rooms on the current server.
``[message]`` can indicate a quit message.
diff --git a/plugins/tell.py b/plugins/tell.py
index 57837517..02a091df 100644
--- a/plugins/tell.py
+++ b/plugins/tell.py
@@ -3,7 +3,8 @@ The command added by this plugin sends a message to someone when he next joins.
Usage
-----
-This plugin defines two new commands for MUC tabs: :term:`/tell` and :term:`/untell`.
+This plugin defines two new commands for chatroom tabs:
+:term:`/tell`, :term:`/untell`, and :term:`/list_tell`.
.. glossary::
:sorted:
diff --git a/plugins/time_marker.py b/plugins/time_marker.py
index f215d2b3..43ec11e0 100644
--- a/plugins/time_marker.py
+++ b/plugins/time_marker.py
@@ -3,8 +3,8 @@ Display the time between two messages.
Helps you identify the times of a conversation. For example
if you disable the timestamps, and remove the join/quit notifications in a
-MUC, you can’t really distinguish when a conversation stopped and when a new
-one started, because you don’t have a visual separation between the two.
+chatroom, you can’t really distinguish when a conversation stopped and when
+a new one started, because you don’t have a visual separation between the two.
This plugin displays a message in the conversation indicating the time that
passed between two messages, if the time is bigger than X minutes
diff --git a/plugins/vcard.py b/plugins/vcard.py
index 5acc8d3a..46cacda0 100644
--- a/plugins/vcard.py
+++ b/plugins/vcard.py
@@ -11,13 +11,13 @@ Command
**Usage (globally):** ``/vcard <jid>``
- **Usage (in a MUC tab):** ``/vcard <jid or nick>``
+ **Usage (in a chatroom tab):** ``/vcard <jid or nick>``
**Usage (in a conversation or roster tab):** ``/vcard [jid]``
Globally, you can do ``/vcard user@server.example`` to get a vcard.
- In a MUC, you can either do it on a JID or a nick (``/vcard nick``,
+ In a chatroom , you can either do it on a JID or a nick (``/vcard nick``,
``/vcard room@muc.server.example/nick`` or ``/vcard
user@server.example``).