From 241fb7c85ce61372385b0beabf5bf3bd3211338e Mon Sep 17 00:00:00 2001 From: Tom Feist Date: Fri, 16 Jul 2010 20:22:49 +0100 Subject: moved process to ui namespace --- docs/Irssi/Dcc.pod | 19 +++++++++++++------ docs/Irssi/Process.pod | 22 ---------------------- docs/Irssi/TextUI.pm | 1 + docs/Irssi/UI/Process.pod | 23 +++++++++++++++++++++++ docs/Irssi/Windowitem.pod | 26 +++++++++++++++----------- 5 files changed, 52 insertions(+), 39 deletions(-) delete mode 100644 docs/Irssi/Process.pod create mode 100644 docs/Irssi/TextUI.pm create mode 100644 docs/Irssi/UI/Process.pod (limited to 'docs') diff --git a/docs/Irssi/Dcc.pod b/docs/Irssi/Dcc.pod index 546f112..5a68dd4 100644 --- a/docs/Irssi/Dcc.pod +++ b/docs/Irssi/Dcc.pod @@ -7,6 +7,7 @@ Irssi::Dcc =head1 FIELDS Dcc->{} + type - Type of the DCC: chat, send, get orig_type - Original DCC type that was sent to us - same as type except GET and SEND are swapped @@ -29,11 +30,13 @@ Dcc->{} transfd - Bytes transferred 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->{} + (..contains all the same data as core Dcc object..) size - File size skipped - Bytes skipped from start (resuming file) @@ -44,6 +47,7 @@ Dcc::Get->{} file_quoted - 1 if file name was received quoted ("file name") Dcc::Send->{} + (..contains all the same data as core Dcc object..) size - File size skipped - Bytes skipped from start (resuming file) @@ -55,11 +59,14 @@ Dcc::Send->{} =head1 METHODS -Dcc::destroy() - Destroy DCC connection. +=head2 C + +Destroy DCC connection. + +=head2 C + +Send `data' to dcc chat. -Dcc::chat_send(data) - Send `data' to dcc chat. +=head2 C -Dcc::ctcp_message(target, notice, msg) - Send a CTCP message/notify to target. +Send a CTCP message/notify to target. diff --git a/docs/Irssi/Process.pod b/docs/Irssi/Process.pod deleted file mode 100644 index 4b311a2..0000000 --- a/docs/Irssi/Process.pod +++ /dev/null @@ -1,22 +0,0 @@ -__END__ - -=head1 NAME - -Irssi::Query - -=head1 FIELDS - -Process->{} - id - ID for the process - name - Name for the process (if given) - args - The command that is being executed - - pid - PID for the executed command - target - send text with /msg ... - target_win - print text to this window - - shell - start the program via /bin/sh - notice - send text with /notice, not /msg if target is set - silent - don't print "process exited with level xx" - -=head1 METHODS diff --git a/docs/Irssi/TextUI.pm b/docs/Irssi/TextUI.pm new file mode 100644 index 0000000..f66cf7a --- /dev/null +++ b/docs/Irssi/TextUI.pm @@ -0,0 +1 @@ +=head1 Empty diff --git a/docs/Irssi/UI/Process.pod b/docs/Irssi/UI/Process.pod new file mode 100644 index 0000000..43442eb --- /dev/null +++ b/docs/Irssi/UI/Process.pod @@ -0,0 +1,23 @@ +__END__ + +=head1 NAME + +Irssi::UI::Process + +=head1 FIELDS + +Process->{} + + id - ID for the process + name - Name for the process (if given) + args - The command that is being executed + + pid - PID for the executed command + target - send text with /msg ... + target_win - print text to this window + + shell - start the program via /bin/sh + notice - send text with /notice, not /msg if target is set + silent - don't print "process exited with level xx" + +=head1 METHODS diff --git a/docs/Irssi/Windowitem.pod b/docs/Irssi/Windowitem.pod index 7781a44..f91183c 100644 --- a/docs/Irssi/Windowitem.pod +++ b/docs/Irssi/Windowitem.pod @@ -22,6 +22,7 @@ didn't work :) =head1 FIELDS Windowitem->{} + type - Type of the window item, for example "CHANNEL" or "QUERY" chat_type - String ID of chat protocol, for example "IRC" @@ -34,22 +35,25 @@ Windowitem->{} =head1 METHODS -Windowitem::print(str[, level]) +=head2 C + +=head2 C + +=head2 C + +Change window item active in parent window. -Windowitem::command(cmd) +=head2 C +Change server in window item. -Windowitem::set_active() - Change window item active in parent window. +=head2 C +Returns 1 if window item is the active item in parent window. -Windowitem::change_server(server) - Change server in window item. -Windowitem::is_active() - Returns 1 if window item is the active item in parent window. +=head2 C -Dcc -Windowitem::get_dcc(item) - If `item' is a query of a =nick, return DCC chat record of nick. +If `item' is a query of a =nick, return DCC chat record of nick. +returns L object. -- cgit v1.2.3