aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Feist <shabble@cowu.be>2010-07-16 19:32:51 +0000
committerTom Feist <shabble@cowu.be>2010-07-16 19:32:51 +0000
commit7c1e24dd5a3afe9c8c43e70c57b10b2a89d4d9e2 (patch)
treea95e3e3453e1dc7a182f838b6d7afab84eb92c19
parentmoved process to ui namespace (diff)
downloadirssi-scripts-7c1e24dd5a3afe9c8c43e70c57b10b2a89d4d9e2.tar.gz
irssi-scripts-7c1e24dd5a3afe9c8c43e70c57b10b2a89d4d9e2.zip
more fixing and moving
-rw-r--r--docs/Irssi.pod24
-rw-r--r--docs/Irssi/Chatnet.pod2
-rw-r--r--docs/Irssi/Irc/Ban.pod (renamed from docs/Irssi/Ban.pod)0
-rw-r--r--docs/Irssi/Irc/Client.pod (renamed from docs/Irssi/Client.pod)0
-rw-r--r--docs/Irssi/Irc/Dcc.pod (renamed from docs/Irssi/Dcc.pod)14
-rw-r--r--docs/Irssi/Irc/Notifylist.pod (renamed from docs/Irssi/Notifylist.pod)0
-rw-r--r--docs/Irssi/UI/Process.pod2
7 files changed, 23 insertions, 19 deletions
diff --git a/docs/Irssi.pod b/docs/Irssi.pod
index 11837d4..fc7e81f 100644
--- a/docs/Irssi.pod
+++ b/docs/Irssi.pod
@@ -85,53 +85,53 @@ For example:
=head2 Accessors
-=head3 active_win
+=head3 C<active_win>
C<my $win = Irssi::active_win();>
returns the currently active L<Irssi::Window>
-=head3 active_server
+=head3 C<active_server>
C<my $server = Irssi::active_server();>
returns the currently active L<Irssi::Server> in active window.
-=head3 windows
+=head3 C<windows>
returns a list of all L<windows|Irssi::Window>.
-=head3 servers
+=head3 C<servers>
returns a list of all L<servers|Irssi::Server>.
-=head3 reconnects
+=head3 C<reconnects>
returns a list of all L<server reconnections|Irssi::Reconnect>.
-=head3 channels
+=head3 C<channels>
returns a list of all L<channels|Irssi::Channel>.
-=head3 queries
+=head3 C<queries>
returns a list of all L<queries|Irssi::Query>.
-=head3 commands
+=head3 C<commands>
returns a list of all L<commands|Irssi::Command>.
-=head3 logs
+=head3 C<logs>
returns a list of all L<log files|Irssi::Log>.
-=head3 ignores
+=head3 C<ignores>
returns a list of all L<ignores|Irssi::Ignore>.
-=head3 dccs
+=head3 C<dccs>
-returns a list of all L<DCC connections|Irssi::Dcc>
+returns a list of all L<DCC connections|Irssi::Irc::Dcc>
=head2 Signals
diff --git a/docs/Irssi/Chatnet.pod b/docs/Irssi/Chatnet.pod
index 23fa134..991dd2b 100644
--- a/docs/Irssi/Chatnet.pod
+++ b/docs/Irssi/Chatnet.pod
@@ -7,6 +7,7 @@ Irssi::Chatnet
=head1 FIELDS
Chatnet->{}
+
type - "CHATNET" text
chat_type - String ID of chat protocol, for example "IRC"
@@ -22,3 +23,4 @@ Chatnet->{}
=head1 METHODS
+I<None found yet>
diff --git a/docs/Irssi/Ban.pod b/docs/Irssi/Irc/Ban.pod
index ba8381f..ba8381f 100644
--- a/docs/Irssi/Ban.pod
+++ b/docs/Irssi/Irc/Ban.pod
diff --git a/docs/Irssi/Client.pod b/docs/Irssi/Irc/Client.pod
index e07bed7..e07bed7 100644
--- a/docs/Irssi/Client.pod
+++ b/docs/Irssi/Irc/Client.pod
diff --git a/docs/Irssi/Dcc.pod b/docs/Irssi/Irc/Dcc.pod
index 5a68dd4..d7ab4a3 100644
--- a/docs/Irssi/Dcc.pod
+++ b/docs/Irssi/Irc/Dcc.pod
@@ -6,7 +6,7 @@ Irssi::Dcc
=head1 FIELDS
-Dcc->{}
+=head2 C<Dcc->{}>
type - Type of the DCC: chat, send, get
orig_type - Original DCC type that was sent to us - same as type except
@@ -29,24 +29,25 @@ Dcc->{}
starttime - Unix time stamp when the DCC transfer was started
transfd - Bytes transferred
-Dcc::Chat->{}
+=head2 C<Dcc::Chat->{}>
id - Unique identifier - usually same as nick
mirc_ctcp - Send CTCPs without the CTCP_MESSAGE prefix
connection_lost - Other side closed connection
-Dcc::Get->{}
+=head2 C<Dcc::Get->{}>
(..contains all the same data as core Dcc object..)
size - File size
skipped - Bytes skipped from start (resuming file)
- get_type - What to do if file exists? 0=default, 1=rename, 2=overwrite,
- 3=resume
+ get_type - What to do if file exists?
+ 0=default, 1=rename, 2=overwrite, 3=resume
+
file - The real file name which we use.
file_quoted - 1 if file name was received quoted ("file name")
-Dcc::Send->{}
+=head2 C<Dcc::Send->{}>
(..contains all the same data as core Dcc object..)
size - File size
@@ -56,7 +57,6 @@ Dcc::Send->{}
waitforend - File is sent, just wait for the replies from the other side
gotalldata - Got all acks from the other end
-
=head1 METHODS
=head2 C<destroy>
diff --git a/docs/Irssi/Notifylist.pod b/docs/Irssi/Irc/Notifylist.pod
index 5b2628a..5b2628a 100644
--- a/docs/Irssi/Notifylist.pod
+++ b/docs/Irssi/Irc/Notifylist.pod
diff --git a/docs/Irssi/UI/Process.pod b/docs/Irssi/UI/Process.pod
index 43442eb..23d9100 100644
--- a/docs/Irssi/UI/Process.pod
+++ b/docs/Irssi/UI/Process.pod
@@ -21,3 +21,5 @@ Process->{}
silent - don't print "process exited with level xx"
=head1 METHODS
+
+I<None found yet>