summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2008-06-21 12:29:06 +0200
committerSebastien Helleu <flashcode@flashtux.org>2008-06-21 12:29:06 +0200
commit96a92eacbfc41a3c491b89c261d744573a597b20 (patch)
tree3163d23b32d9408505eb4ee48a644b5a53f38dd5 /doc/en
parent9d05dcf175ac6a26a1a263ea490df174f78ffc62 (diff)
downloadweechat-96a92eacbfc41a3c491b89c261d744573a597b20.zip
Remove infobar in doc
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/config.xml56
-rw-r--r--doc/en/key_functions.xml4
-rw-r--r--doc/en/plugin_api.en.xml76
-rw-r--r--doc/en/plugin_scripts.en.xml130
-rw-r--r--doc/en/usage.en.xml6
5 files changed, 0 insertions, 272 deletions
diff --git a/doc/en/config.xml b/doc/en/config.xml
index 61f402d8a..9aefec19c 100644
--- a/doc/en/config.xml
+++ b/doc/en/config.xml
@@ -216,34 +216,6 @@
<entry>Complete only with first nick found</entry>
</row>
<row>
- <entry><option>look_infobar</option></entry>
- <entry>boolean</entry>
- <entry>'on' or 'off'</entry>
- <entry>'on'</entry>
- <entry>Enable info bar</entry>
-</row>
-<row>
- <entry><option>look_infobar_timestamp</option></entry>
- <entry>string</entry>
- <entry>any string</entry>
- <entry>'%B, %A %d %Y'</entry>
- <entry>Timestamp for time in infobar</entry>
-</row>
-<row>
- <entry><option>look_infobar_seconds</option></entry>
- <entry>boolean</entry>
- <entry>'on' or 'off'</entry>
- <entry>'on'</entry>
- <entry>Display seconds in infobar time</entry>
-</row>
-<row>
- <entry><option>look_infobar_delay_highlight</option></entry>
- <entry>integer</entry>
- <entry>between 0 and 2147483647</entry>
- <entry>7</entry>
- <entry>Delay (in seconds) for highlight messages in infobar (0 = disable highlight notifications in infobar)</entry>
-</row>
-<row>
<entry><option>look_hotlist_names_count</option></entry>
<entry>integer</entry>
<entry>between 0 and 32</entry>
@@ -517,34 +489,6 @@
<entry>Background for status window</entry>
</row>
<row>
- <entry><option>col_infobar</option></entry>
- <entry>color</entry>
- <entry>Curses or Gtk color</entry>
- <entry>'black'</entry>
- <entry>Color for info bar text</entry>
-</row>
-<row>
- <entry><option>col_infobar_delimiters</option></entry>
- <entry>color</entry>
- <entry>Curses or Gtk color</entry>
- <entry>'blue'</entry>
- <entry>Color for infobar delimiters</entry>
-</row>
-<row>
- <entry><option>col_infobar_highlight</option></entry>
- <entry>color</entry>
- <entry>Curses or Gtk color</entry>
- <entry>'white'</entry>
- <entry>Color for info bar highlight notification</entry>
-</row>
-<row>
- <entry><option>col_infobar_bg</option></entry>
- <entry>color</entry>
- <entry>Curses or Gtk color</entry>
- <entry>'cyan'</entry>
- <entry>Background for info bar window</entry>
-</row>
-<row>
<entry><option>col_input</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
diff --git a/doc/en/key_functions.xml b/doc/en/key_functions.xml
index 27deec273..9605b534d 100644
--- a/doc/en/key_functions.xml
+++ b/doc/en/key_functions.xml
@@ -194,10 +194,6 @@
<entry>clear hotlist</entry>
</row>
<row>
- <entry><literal>infobar_clear</literal></entry>
- <entry>clear infobar</entry>
-</row>
-<row>
<entry><literal>refresh</literal></entry>
<entry>refresh screen</entry>
</row>
diff --git a/doc/en/plugin_api.en.xml b/doc/en/plugin_api.en.xml
index b1a496289..4d4c49d64 100644
--- a/doc/en/plugin_api.en.xml
+++ b/doc/en/plugin_api.en.xml
@@ -603,82 +603,6 @@ plugin->print (plugin, NULL, NULL,
</para>
</section>
- <section id="secAPI_print_infobar">
- <title>print_infobar</title>
-
- <para>
- Prototype:
- <command>
- void print_infobar (t_weechat_plugin *plugin,
- int time, char *message, ...)
- </command>
- </para>
- <para>
- Display a message in infobar for a specified time.
- </para>
- <para>
- Arguments:
- <itemizedlist>
- <listitem>
- <para>
- <option>plugin</option>: pointer to plugin structure
- </para>
- </listitem>
- <listitem>
- <para>
- <option>time</option>: time (in seconds) for displaying
- message (0 = never erased)
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- Return value: none.
- </para>
- <para>
- Example:
-<screen>
-plugin->print_infobar (plugin, 5, "hello");
-</screen>
- </para>
- </section>
-
- <section id="secAPI_infobar_remove">
- <title>infobar_remove</title>
-
- <para>
- Prototype:
- <command>
- void infobar_remove (t_weechat_plugin *plugin, int count)
- </command>
- </para>
- <para>
- Remove one or more messages in infobar stack.
- </para>
- <para>
- Arguments:
- <itemizedlist>
- <listitem>
- <para>
- <option>plugin</option>: pointer to plugin structure
- </para>
- </listitem>
- <listitem>
- <para>
- <option>count</option>: number of messages to remove
- (if argument is &lt;= 0, then all messages are removed)
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- Return value: none.
- </para>
- <para>
- Example: <screen>plugin->infobar_remove (1);</screen>
- </para>
- </section>
-
<section id="secAPI_log">
<title>log</title>
diff --git a/doc/en/plugin_scripts.en.xml b/doc/en/plugin_scripts.en.xml
index 787e8c1c9..46424fece 100644
--- a/doc/en/plugin_scripts.en.xml
+++ b/doc/en/plugin_scripts.en.xml
@@ -483,136 +483,6 @@ weechat.print_server("message")
</para>
</section>
- <section id="secScript_print_infobar">
- <title>print_infobar</title>
-
- <para>
- Perl prototype:
- <command>
- weechat::print_infobar(time, message);
- </command>
- </para>
- <para>
- Python prototype:
- <command>
- weechat.print_infobar(time, message)
- </command>
- </para>
- <para>
- Ruby prototype:
- <command>
- Weechat.print_infobar(time, message)
- </command>
- </para>
- <para>
- Lua prototype:
- <command>
- weechat.print_infobar(time, message)
- </command>
- </para>
- <para>
- Display a message in infobar for a specified time.
- </para>
- <para>
- Arguments:
- <itemizedlist>
- <listitem>
- <para>
- <option>time</option>: time (in seconds) for displaying
- message (0 = never erased)
- </para>
- </listitem>
- <listitem>
- <para>
- <option>message</option>: message
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- Return value: 1 if success, 0 if an error occurred.
- </para>
- <para>
- Examples:
-<screen>
-# perl
-weechat::print_infobar(5, "message");
-
-# python
-weechat.print_infobar(5, "message")
-
-# ruby
-Weechat.print_infobar(5, "message")
-
--- lua
-weechat.print_infobar(5, "message")
-</screen>
- </para>
- </section>
-
- <section id="secScript_remove_infobar">
- <title>remove_infobar</title>
-
- <para>
- Perl prototype:
- <command>
- weechat::remove_infobar([count]);
- </command>
- </para>
- <para>
- Python prototype:
- <command>
- weechat.remove_infobar([count])
- </command>
- </para>
- <para>
- Ruby prototype:
- <command>
- Weechat.remove_infobar([count])
- </command>
- </para>
- <para>
- Lua prototype:
- <command>
- weechat.remove_infobar([count])
- </command>
- </para>
- <para>
- Remove one or more messages in infobar stack.
- </para>
- <para>
- Arguments:
- <itemizedlist>
- <listitem>
- <para>
- <option>count</option>: number of messages to remove
- (if argument not given or &lt;= 0, then all messages are
- removed)
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- Return value: 1 if success, 0 if an error occurred.
- </para>
- <para>
- Examples:
-<screen>
-# perl
-weechat::remove_infobar(1);
-
-# python
-weechat.remove_infobar(1)
-
-# ruby
-Weechat.remove_infobar(1)
-
--- lua
-weechat.remove_infobar(1)
-</screen>
- </para>
- </section>
-
<section id="secScript_log">
<title>log</title>
diff --git a/doc/en/usage.en.xml b/doc/en/usage.en.xml
index 11f746ac2..4134ed91a 100644
--- a/doc/en/usage.en.xml
+++ b/doc/en/usage.en.xml
@@ -411,12 +411,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
</entry>
</row>
<row>
- <entry>Alt + I</entry>
- <entry>
- Remove last infobar message
- </entry>
- </row>
- <row>
<entry>Alt + J then Alt + L</entry>
<entry>
Switch to last buffer