From: octo Date: Tue, 12 Apr 2005 22:39:08 +0000 (+0000) Subject: Added documentation about config options to lib/Onis/Plugins/Core.pm X-Git-Tag: Release-0.8.0~20^2~9 X-Git-Url: https://git.octo.it/?p=onis.git;a=commitdiff_plain;h=af6b056de33ad49db7d1371ff6d8f8cadd0b5eab Added documentation about config options to lib/Onis/Plugins/Core.pm --- diff --git a/lib/Onis/Data/Persistent/Dbm.pm b/lib/Onis/Data/Persistent/Dbm.pm index d6a0b71..398e5b6 100644 --- a/lib/Onis/Data/Persistent/Dbm.pm +++ b/lib/Onis/Data/Persistent/Dbm.pm @@ -28,7 +28,8 @@ Storage backend that uses DBM files for storing data permanently. =item B: IdirE> -Directory in which the DBM-files are kept. +Directory in which the DBM-files are kept. Defaults to the B-directory in +onis' main directory.. =back diff --git a/lib/Onis/Plugins/Core.pm b/lib/Onis/Plugins/Core.pm index 565b893..e644cd4 100644 --- a/lib/Onis/Plugins/Core.pm +++ b/lib/Onis/Plugins/Core.pm @@ -70,30 +70,69 @@ our $BAR_WIDTH = 100; our $LongLines = 50; our $ShortLines = 10; +=head1 CONFIGURATION OPTIONS + +=over 4 + +=item B: I<10> + +Sets how many quotes are cached and, at the end, one is chosen at random. + +=cut + if (get_config ('quote_cache_size')) { my $tmp = get_config ('quote_cache_size'); $tmp =~ s/\D//g; $QuoteCacheSize = $tmp if ($tmp); } + +=item B: I<30> + +Minimum number of characters in a line to be included in the quote-cache. + +=cut + if (get_config ('quote_min')) { my $tmp = get_config ('quote_min'); $tmp =~ s/\D//g; $QuoteMin = $tmp if ($tmp); } +=item B: I<80> + +Maximum number of characters in a line to be included in the quote-cache. + +=cut + if (get_config ('quote_max')) { my $tmp = get_config ('quote_max'); $tmp =~ s/\D//g; $QuoteMax = $tmp if ($tmp); } + +=item B: I<5> + +Sets how many word-characters in a row are considered to be a word. Or, in more +normal terms: Sets the minimum length for words.. + +=cut + if (get_config ('min_word_length')) { my $tmp = get_config ('min_word_length'); $tmp =~ s/\D//g; $WORD_LENGTH = $tmp if ($tmp); } + +=item B: I + +Choses wether to display B as I, I, I or not at all +(I). + +=cut + if (get_config ('display_lines')) { my $tmp = get_config ('display_lines'); @@ -110,6 +149,13 @@ if (get_config ('display_lines')) $/, __FILE__, ": Valid values are ``none'', ``bar'', ``number'' and ``both''. Using default value ``both''."; } } + +=item B: I + +See L + +=cut + if (get_config ('display_words')) { my $tmp = get_config ('display_words'); @@ -126,6 +172,13 @@ if (get_config ('display_words')) $/, __FILE__, ": Valid values are ``none'', ``bar'', ``number'' and ``both''. Using default value ``none''."; } } + +=item B: I + +See L + +=cut + if (get_config ('display_chars')) { my $tmp = get_config ('display_chars'); @@ -142,6 +195,14 @@ if (get_config ('display_chars')) $/, __FILE__, ": Valid values are ``none'', ``bar'', ``number'' and ``both''. Using default value ``none''."; } } + +=item B: I + +Wether or not to display a fixed width bar that shows when a user is most +active. + +=cut + if (get_config ('display_times')) { my $tmp = get_config ('display_times'); @@ -160,6 +221,13 @@ if (get_config ('display_times')) $/, __FILE__, ": Valid values are ``true'' and ``false''. Using default value ``false''."; } } + +=item B: I + +Wether or not to display images in the main ranking. + +=cut + if (get_config ('display_images')) { my $tmp = get_config ('display_images'); @@ -178,10 +246,27 @@ if (get_config ('display_images')) $/, __FILE__, ": Valid values are ``true'' and ``false''. Using default value ``false''."; } } + +=item B: I + +Sets the URL to the default image. This is included as-is in the HTML. You have +to take care of (absolute) paths yourself. + +=cut + if (get_config ('default_image')) { $DEFAULT_IMAGE = get_config ('default_image'); } + +=item B: I + +Sets by which field the output has to be sorted. This is completely independent +from B, B and B. Valid options are +I, I and I. + +=cut + if (get_config ('sort_by')) { my $tmp = get_config ('sort_by'); @@ -198,6 +283,14 @@ if (get_config ('sort_by')) $/, __FILE__, ": Valid values are ``lines'' and ``words''. Using default value ``lines''."; } } + +=item B: I, I, I, I + +Sets the B images used for horizontal bars/graphs. As above: You have to +take care of correctness of paths yourself. + +=cut + if (get_config ('horizontal_images')) { my @tmp = get_config ('horizontal_images'); @@ -218,24 +311,55 @@ if (get_config ('horizontal_images')) $H_IMAGES[$i] = $tmp[$i]; } } + +=item B: I<130> + +Sets the height (in pixels) of the highest vertical graph. + +=cut + if (get_config ('bar_height')) { my $tmp = get_config ('bar_height'); $tmp =~ s/\D//g; $BAR_HEIGHT = $tmp if ($tmp >= 10); } + +=item B: I<100> + +Sets the width (in pixels) of the widest horizontal graph. + +=cut + if (get_config ('bar_width')) { my $tmp = get_config ('bar_width'); $tmp =~ s/\D//g; $BAR_WIDTH = $tmp if ($tmp >= 10); } + +=item B: I<50> + +Sets the number of rows of the main ranking table. + +=cut + if (get_config ('longlines')) { my $tmp = get_config ('longlines'); $tmp =~ s/\D//g; $LongLines = $tmp if ($tmp); } + +=item B: I<10> + +Sets the number of rows of the "they didn't write so much" table. There are six +persons per line; you set the number of lines. + +=over + +=cut + if (get_config ('shortlines')) { my $tmp = get_config ('shortlines');