summaryrefslogtreecommitdiff
path: root/doc/de
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/de
parent9d05dcf175ac6a26a1a263ea490df174f78ffc62 (diff)
downloadweechat-96a92eacbfc41a3c491b89c261d744573a597b20.zip
Remove infobar in doc
Diffstat (limited to 'doc/de')
-rw-r--r--doc/de/config.xml56
-rw-r--r--doc/de/key_functions.xml4
-rw-r--r--doc/de/plugin_api.de.xml77
-rw-r--r--doc/de/plugin_scripts.de.xml130
4 files changed, 0 insertions, 267 deletions
diff --git a/doc/de/config.xml b/doc/de/config.xml
index 7f0ae9466..094728e9f 100644
--- a/doc/de/config.xml
+++ b/doc/de/config.xml
@@ -216,34 +216,6 @@
<entry>Nur mit dem ersten, passenden Nicknamen vervollständigen</entry>
</row>
<row>
- <entry><option>look_infobar</option></entry>
- <entry>Boolean</entry>
- <entry>eine beliebige Zeichenfolge</entry>
- <entry>'on'</entry>
- <entry>Infoleiste aktivieren</entry>
-</row>
-<row>
- <entry><option>look_infobar_timestamp</option></entry>
- <entry>Zeichenfolge</entry>
- <entry>eine beliebige Zeichenfolge</entry>
- <entry>'%B, %A %d %Y'</entry>
- <entry>Timestamp in der Infobar</entry>
-</row>
-<row>
- <entry><option>look_infobar_seconds</option></entry>
- <entry>Boolean</entry>
- <entry>eine beliebige Zeichenfolge</entry>
- <entry>'on'</entry>
- <entry>Sekunden in der Infobar-Zeit anzeigen</entry>
-</row>
-<row>
- <entry><option>look_infobar_delay_highlight</option></entry>
- <entry>Ganzzahl</entry>
- <entry>zwischen 0 und 2147483647</entry>
- <entry>7</entry>
- <entry>Anzeigezeit in Sekunden für Highlight-Messages in der Infobar (0: gar nicht erst anzeigen)</entry>
-</row>
-<row>
<entry><option>look_hotlist_names_count</option></entry>
<entry>Ganzzahl</entry>
<entry>zwischen 0 und 32</entry>
@@ -517,34 +489,6 @@
<entry>Hintergrund des Statusfensters</entry>
</row>
<row>
- <entry><option>col_infobar</option></entry>
- <entry>Farbe</entry>
- <entry>Curses- oder Gtk-Farben</entry>
- <entry>'black'</entry>
- <entry>Farbe des Infobar-Textes</entry>
-</row>
-<row>
- <entry><option>col_infobar_delimiters</option></entry>
- <entry>Farbe</entry>
- <entry>Curses- oder Gtk-Farben</entry>
- <entry>'blue'</entry>
- <entry>Farbe der Infobar-Trennzeichen</entry>
-</row>
-<row>
- <entry><option>col_infobar_highlight</option></entry>
- <entry>Farbe</entry>
- <entry>Curses- oder Gtk-Farben</entry>
- <entry>'white'</entry>
- <entry>Farbe der Infobar-Highlight-Notifikation</entry>
-</row>
-<row>
- <entry><option>col_infobar_bg</option></entry>
- <entry>Farbe</entry>
- <entry>Curses- oder Gtk-Farben</entry>
- <entry>'cyan'</entry>
- <entry>Hintergrund des Infobar-Fensters</entry>
-</row>
-<row>
<entry><option>col_input</option></entry>
<entry>Farbe</entry>
<entry>Curses- oder Gtk-Farben</entry>
diff --git a/doc/de/key_functions.xml b/doc/de/key_functions.xml
index 4ad36226b..9a3222ba0 100644
--- a/doc/de/key_functions.xml
+++ b/doc/de/key_functions.xml
@@ -194,10 +194,6 @@
<entry>Hotlist leeren</entry>
</row>
<row>
- <entry><literal>infobar_clear</literal></entry>
- <entry>Infobar leeren</entry>
-</row>
-<row>
<entry><literal>refresh</literal></entry>
<entry>Bild neu aufbauen</entry>
</row>
diff --git a/doc/de/plugin_api.de.xml b/doc/de/plugin_api.de.xml
index bb47e0f27..a59d127db 100644
--- a/doc/de/plugin_api.de.xml
+++ b/doc/de/plugin_api.de.xml
@@ -622,83 +622,6 @@ plugin->print (plugin, NULL, NULL,
</para>
</section>
- <section id="secAPI_print_infobar">
- <title>print_infobar</title>
-
- <para>
- Prototyp:
- <command>
- void print_infobar (t_weechat_plugin *plugin,
- int time, char *message, ...)
- </command>
- </para>
- <para>
- Zeige eine Nachricht in der Infobar für eine bestimmte Zeit
- </para>
- <para>
- Argumente:
- <itemizedlist>
- <listitem>
- <para>
- <option>plugin</option>: Zeiger auf eine Plugin-Struktur
- </para>
- </listitem>
- <listitem>
- <para>
- <option>time</option>: Zeitspanne für die Anzeige (in
- Sekunden, 0 = ständige Anzeige)
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- Rückgabewert: keiner.
- </para>
- <para>
- Beispiel:
-<screen>
-plugin->print_infobar (plugin, 5, "hello");
-</screen>
- </para>
- </section>
-
- <section id="secAPI_infobar_remove">
- <title>infobar_remove</title>
-
- <para>
- Prototyp:
- <command>
- void infobar_remove (t_weechat_plugin *plugin, int count)
- </command>
- </para>
- <para>
- Entferne eine oder mehr Nachrichten aus der Infobar.
- </para>
- <para>
- Argumente:
- <itemizedlist>
- <listitem>
- <para>
- <option>plugin</option>: Zeiger auf eine Plugin-Struktur
- </para>
- </listitem>
- <listitem>
- <para>
- <option>count</option>: Anzahl der Nachrichten (wenn das
- Argument kleiner als Null ist, werden alle Nachrichten
- entfernt)
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- Rückgabewert: keiner.
- </para>
- <para>
- Beispiel: <screen>plugin->infobar_remove (1);</screen>
- </para>
- </section>
-
<section id="secAPI_log">
<title>log</title>
diff --git a/doc/de/plugin_scripts.de.xml b/doc/de/plugin_scripts.de.xml
index 789f50032..62589caaa 100644
--- a/doc/de/plugin_scripts.de.xml
+++ b/doc/de/plugin_scripts.de.xml
@@ -497,136 +497,6 @@ weechat.print_server("message")
</para>
</section>
- <section id="secScript_print_infobar">
- <title>print_infobar</title>
-
- <para>
- Perl-Prototyp:
- <command>
- weechat::print_infobar(time, message);
- </command>
- </para>
- <para>
- Python-Prototyp:
- <command>
- weechat.print_infobar(time, message)
- </command>
- </para>
- <para>
- Ruby-Prototyp:
- <command>
- Weechat.print_infobar(time, message)
- </command>
- </para>
- <para>
- Lua-Prototyp:
- <command>
- weechat.print_infobar(time, message)
- </command>
- </para>
- <para>
- Zeige eine Nachricht für einen festen Zeitraum in der Infobar.
- </para>
- <para>
- Argumente:
- <itemizedlist>
- <listitem>
- <para>
- <option>time</option>: Zeit (in sekunden) der Anzeige
- (0 = permanent)
- </para>
- </listitem>
- <listitem>
- <para>
- <option>message</option>: Nachricht
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- Rückgabewert: 1 bei Erfolg, 0 wenn ein Fehler aufgetreten ist
- </para>
- <para>
- Beispiele:
-<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-Prototyp:
- <command>
- weechat::remove_infobar([count]);
- </command>
- </para>
- <para>
- Python-Prototyp:
- <command>
- weechat.remove_infobar([count])
- </command>
- </para>
- <para>
- Ruby-Prototyp:
- <command>
- Weechat.remove_infobar([count])
- </command>
- </para>
- <para>
- Lua-Prototyp:
- <command>
- weechat.remove_infobar([count])
- </command>
- </para>
- <para>
- Entfernt eine oder mehrere Nachrichten aus dem Infobar-Speicher.
- </para>
- <para>
- Argumente:
- <itemizedlist>
- <listitem>
- <para>
- <option>count</option>: Anzahl der Nachrichten, die entfernt
- werden sollen (Ist kein Argument angegeben oder &lt;= 0
- werden alle Nachrichten entfernt)
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- Rückgabewert: 1 bei Erfolg, 0 bei Auftreten eines Fehlers
- </para>
- <para>
- Beispiele:
-<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>