diff options
author | Tom Feist <shabble@cowu.be> | 2010-07-09 21:48:31 +0000 |
---|---|---|
committer | Tom Feist <shabble@cowu.be> | 2010-07-09 21:48:31 +0000 |
commit | bd907bc81589a03e6c0945f58c77944319a890d5 (patch) | |
tree | 0cfdc2c54aa44351b3d53854bd01ac70d8c9ab45 /docs | |
parent | created repo (diff) | |
download | irssi-scripts-bd907bc81589a03e6c0945f58c77944319a890d5.tar.gz irssi-scripts-bd907bc81589a03e6c0945f58c77944319a890d5.zip |
initial podifying of irssi docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Irssi.pm | 52 | ||||
-rw-r--r-- | docs/Irssi/TextUI.pm | 0 | ||||
-rw-r--r-- | docs/Irssi/TextUI/Line.pm | 0 | ||||
-rw-r--r-- | docs/Irssi/TextUI/LineCache.pm | 0 | ||||
-rw-r--r-- | docs/Irssi/TextUI/LineInfo.pm | 0 | ||||
-rw-r--r-- | docs/Irssi/TextUI/MainWindow.pm | 0 | ||||
-rw-r--r-- | docs/Irssi/TextUI/StatusbarItem.pm | 0 | ||||
-rw-r--r-- | docs/Irssi/TextUI/TextBufferView.pm | 0 | ||||
-rw-r--r-- | docs/Irssi/TextUI/Textbuffer.pm | 0 | ||||
-rw-r--r-- | docs/Irssi/UI/Window.pm | 0 | ||||
-rw-r--r-- | docs/Signals.pm | 48 |
11 files changed, 100 insertions, 0 deletions
diff --git a/docs/Irssi.pm b/docs/Irssi.pm new file mode 100644 index 0000000..c52fbc5 --- /dev/null +++ b/docs/Irssi.pm @@ -0,0 +1,52 @@ +__END__ + +=head1 NAME + +=head1 DESCRIPTION + +=head1 CLASSES + +=head1 METHODS + +=head2 Accessors + +=over + +=item C<Irssi::active_win> -- returns the currently active L<Irssi::Window> object. + +=back + + +=head2 Signals + +=head3 Handling Signals + +=head3 Controlling Signal Propagation + +=head3 Registering New Signals + + + + + +=head2 Commands + +=head3 Registering Commands + +=head3 Invoking Commands + +=head3 Parsing Command Arguments + + + +=head2 Settings + +=head3 Creating New Settings + +=head3 Retrieving Settings + +=head3 Modifying Settings + + + +=head2 blahblah diff --git a/docs/Irssi/TextUI.pm b/docs/Irssi/TextUI.pm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/Irssi/TextUI.pm diff --git a/docs/Irssi/TextUI/Line.pm b/docs/Irssi/TextUI/Line.pm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/Irssi/TextUI/Line.pm diff --git a/docs/Irssi/TextUI/LineCache.pm b/docs/Irssi/TextUI/LineCache.pm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/Irssi/TextUI/LineCache.pm diff --git a/docs/Irssi/TextUI/LineInfo.pm b/docs/Irssi/TextUI/LineInfo.pm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/Irssi/TextUI/LineInfo.pm diff --git a/docs/Irssi/TextUI/MainWindow.pm b/docs/Irssi/TextUI/MainWindow.pm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/Irssi/TextUI/MainWindow.pm diff --git a/docs/Irssi/TextUI/StatusbarItem.pm b/docs/Irssi/TextUI/StatusbarItem.pm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/Irssi/TextUI/StatusbarItem.pm diff --git a/docs/Irssi/TextUI/TextBufferView.pm b/docs/Irssi/TextUI/TextBufferView.pm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/Irssi/TextUI/TextBufferView.pm diff --git a/docs/Irssi/TextUI/Textbuffer.pm b/docs/Irssi/TextUI/Textbuffer.pm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/Irssi/TextUI/Textbuffer.pm diff --git a/docs/Irssi/UI/Window.pm b/docs/Irssi/UI/Window.pm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/Irssi/UI/Window.pm diff --git a/docs/Signals.pm b/docs/Signals.pm new file mode 100644 index 0000000..0ea689f --- /dev/null +++ b/docs/Signals.pm @@ -0,0 +1,48 @@ +__END__ + +=head1 NAME + +Irssi Signal Documentation + +=head1 DESCRIPTION + +Perl POD documentation based on the doc/signals.txt documentation supplied with +Irssi. + +=head1 USING SIGNALS + +See L<Irssi/"Signals"> + +=head1 SIGNAL DEFINITIONS + +The following signals are categorised as in the original documentation, but +have been revised to note Perl variable types and class names. + +Arguments are passed to signal handlers in the usual way, via C<@_>. + +=head2 Core + +=over 4 + +=item C<"gui exit"> I<None> + +=item C<"gui dialog" string $type, string $text> + +=item C<"send command"> +C<string $command, Irssi::Server $server, Irssi::Windowitem +$window_item> + +=back + +=head2 IRC Core + +=head2 IRC Module + +=head2 Display (FE) Common + +=head2 Display (FE) IRC + +=head2 Display (FE) Text + +=head2 Perl Scripting + |