From 99510e6b1994315864ae80534c902b439ed9a63a Mon Sep 17 00:00:00 2001 From: Tom Feist Date: Sat, 1 Jan 2011 18:02:39 +0000 Subject: docs/General/Internals: start of some documentation of the internals of how irssi works. Beginning with the display subsystem. --- docs/General/Internals.pod | 48 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 docs/General/Internals.pod (limited to 'docs/General') diff --git a/docs/General/Internals.pod b/docs/General/Internals.pod new file mode 100644 index 0000000..c364dd5 --- /dev/null +++ b/docs/General/Internals.pod @@ -0,0 +1,48 @@ +__END__ + +=head1 Random Notes on Irssi Internals. + + +=head2 Display Output + +Irssi has to deal with a whole bunch of things between a script print() and actually +putting it on the screen. + +Some of these things are: + +=over 4 + +=item Message Levels + +=item Abstract Replacements + +=item Theme formats + +=item Module (C) formats + +=back + +==head3 Message Levels + +Message levels are defined in F and some +support functions in F + +We have: + +=over 4 + +=item C + +Special cases: C both return MSGLEVEL_ALL, and C returns 0. +The remainder are looked up in a big static string array by name to +find the appropriate numeric level. Partial matches are permitted as +long as they are unambigious. + + +=item C + +=item C + +=item C + + -- cgit v1.2.3