summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-05-06 19:36:59 +0200
committermathieui <mathieui@mathieui.net>2012-05-06 19:36:59 +0200
commit97486ac09522537d169ec48f6a917dd10fa3a9ba (patch)
tree36488ebb3758e9f59afb1ff2fd5555c09cd6c3ad /doc
parent4774c6e797081e9ac9aac40302df5fca8e8d57d6 (diff)
downloadpoezio-97486ac09522537d169ec48f6a917dd10fa3a9ba.tar.gz
poezio-97486ac09522537d169ec48f6a917dd10fa3a9ba.tar.bz2
poezio-97486ac09522537d169ec48f6a917dd10fa3a9ba.tar.xz
poezio-97486ac09522537d169ec48f6a917dd10fa3a9ba.zip
Documentation for /link
Diffstat (limited to 'doc')
-rw-r--r--doc/en/plugins/index.txt2
-rw-r--r--doc/en/plugins/link.txt71
2 files changed, 72 insertions, 1 deletions
diff --git a/doc/en/plugins/index.txt b/doc/en/plugins/index.txt
index af99845e..a6ce1191 100644
--- a/doc/en/plugins/index.txt
+++ b/doc/en/plugins/index.txt
@@ -84,7 +84,7 @@ Plugins index
Shows the received IQs, for debugging purposes.
-*Link*:: Link opener plugin
+*Link*:: link:link.html[Link opener plugin]
Opens links in a web browser, locally or remotely using a FIFO and SSH.
diff --git a/doc/en/plugins/link.txt b/doc/en/plugins/link.txt
new file mode 100644
index 00000000..830a206b
--- /dev/null
+++ b/doc/en/plugins/link.txt
@@ -0,0 +1,71 @@
+Link
+====
+
+Opens links in a browser.
+
+Installation
+------------
+
+First use case: local use
+~~~~~~~~~~~~~~~~~~~~~~~~~
+If you use poezio on your workstation, this is for you.
+You only have to load the plugin:
+
+==============
+
+ /load link
+
+==============
+
+Second use case: remote use
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+If you use poezio through SSH, this is for you.
+
+NOTE: Small explanation: Poezio will create a
+https://en.wikipedia.org/wiki/Named_pipe[Unix FIFO] and send the commands in,
+and you will have to run a dæmon locally with ssh, to get those commands.
+
+First, set the _exec_remote_ option in the config file to _true_. Then select
+the directory you want to put the fifo in (default is the current
+ directory, _./_), the _poezio.fifo_ file will be created there.
+
+After that, load the plugin:
+
+============
+
+ /load link
+
+============
+
+And open a link with _/link_ (as described below), this will create the FIFO.
+
+You need to grab poezio’s sources on your client computer, or at least the
+http://gitweb.louiz.org/?p=poezio;a=blob_plain;f=src/daemon.py;hb=HEAD[daemon.py]
+file.
+
+Finally, on your client computer, run the ssh command:
+
+============
+
+ ssh toto@example.org "cat ~/poezio/poezio.fifo" | python3 daemon.py
+
+===========
+
+
+Usage
+-----
+This plugin adds a _/link_ command that will open the links in _firefox_. If
+you want to use another browser, you can use the _/set_ command to change the
+_browser_ option in the config file.
+
+
+_/link_ without argument will open the last received link, if any is found.
+If an integer argument is given, /link will go back gradually in the buffer
+to open the previous link, and so on.
+
+
+If you are scrolling in the buffer, poezio will open the links starting from
+the first you can see. (although there are some problems with multiline
+messages).
+
+