The Bignumbers plugin now only displays Nicks that are in the main table.
[onis.git] / config
1 # onis 0.7.2 - config - 2005-01-21
2 #==================================
3 # http://verplant.org/onis/
4
5 # This options tells onis what type of logfiles to expect. Valid values
6 # are ``Dircproxy'', ``Eggdrop'', ``Irssi'', ``mIRC'' and ``xchat''.
7 logtype: "Eggdrop";
8
9 # Thif option is available for scripts to set the input source once and
10 # for all. Since wildcards are not interpreted this is of little use for
11 # the averange user.
12 #input: "/path/to/my/file";
13
14 # Sets the output file. This has to be a file, not a directory. This is
15 # also mostly interesting for scripts.
16 #output: "/var/www/html/ircstats/cannel.html";
17
18 # Set this option to ``true'' to have onis overwrite files without
19 # promting. Default is to ask.
20 overwrite: "false";
21
22 # Sets the users-config file to use. By default reads ``users.conf''.
23 #users_config: "users.conf";
24
25 # Purge logs that have been parsed. Two modes of operation can be
26 # selected: ``truncate'' deletes the content of file but lets the file
27 # life on. This might be usefull for clients that don't create new logs
28 # automatically.. The other mode, ``delete'', well, deletes parsed files.
29 # This might come in handy when a client creates a new logfile for every
30 # day.
31 #purge_logs: "truncate";
32
33 # Set this to your (nick)name to see it appear on the stats page. Uses
34 # your username if you don't set anything here.
35 #user: "mynick";
36
37 # Explicitly set the channel's name here. For most logfiles this is not
38 # neccessary, but it is for some. ``Dircproxy'' to be specific.
39 #channel: "#ourchannel";
40
41 # Load these plugins. These are all available plugins as of now, but this
42 # is a development release. The missing one(s) will be back..
43 plugin: "Weekdays";
44 plugin: "Conversations";
45 plugin: "BigNumbers";
46 plugin: "Words";
47 plugin: "Nicks";
48 plugin: "Urls";
49 plugin: "Topics";
50 plugin: "InterestingNumbers";
51 plugin: "Userdetails";
52
53 # In order to recognize users who use dialin-accounts or have for some
54 # other reason changing hostnames it is neccessary to unsharp the host.
55 # This options says how much to unsharp it. Valid values are ``none'',
56 # ``Light'', ``Medium'' and ``Hard''. Most people will go best with
57 # ``Medium''..
58 unsharp: "Medium";
59
60 # Sets the minimum length for a word. ``5'' is a good value to start
61 # with..
62 min_word_length: 5;
63
64 # Sort the main table by this field. Valid values are ``Lines'', ``Words''
65 # and ``Chars''. Defaults to ``Lines''.
66 sort_by: "Words";
67
68 # Display the following fields in the given format. Valid formats are
69 # ``None'', ``Number'', ``Bar'' and ``Both''.
70 display_lines: "None";
71 display_words: "Both";
72 display_chars: "None";
73
74 # Sets wether or not user-images are displayed. Defaults to not display
75 # the images, since by default none are defined..
76 #display_images: "false";
77
78 # Sets the default image which is displayed for users which don't have an
79 # image set. If not set no image will be displayed for those users. If a
80 # theme sets a default image and you want to un-set is, use "".
81 #default_image:  "light-theme/unknown.png";
82
83 # If set to true a bar indicating the time when a user is most active is
84 # being printed in the main table.
85 display_times: "false";
86
87 # This options control which quotes are picked and how far back they can
88 # reach. A line is put into the quote-cache if it is a least ``quote_min''
89 # and at most ``quote_max'' characters long. No more than
90 # ``quote_cache_size'' quotes are stored in the cache to have recent
91 # quotes if possible.
92 quote_min: 30;
93 quote_max: 80;
94 quote_cache_size: 10;
95
96 # With the following option you can control how high and wide the bars
97 # are. Values are in pixels. Height applies to vertical, width to
98 # horizontal bars.
99 bar_height: 130;
100 bar_width: 100;
101
102 # ``longlines'' defines how many nicks are in the big main table,
103 # ``shortlines'' sets the number of _lines_ in the smaller table below.
104 # Keep in mind that there are six nicks per line in the smaller table..
105 longlines:  50;
106 shortlines: 10;
107
108 # The ``plugin_max'' option is used by various plugins to determine how
109 # many records (lines, rows, etc) should be printed.
110 plugin_max: 10;
111
112 # Matching the nicks contained in a line very slow. So we use a trick
113 # which is not as accurate but a lot faster. If you want to use the slow
114 # but better solution instead, set this option to ``good''. Otherwise
115 # leave at ``fast''.
116 nick_match_type: "fast";
117
118 # The ``last used words'' plugin will ignore words shorter than this
119 # value. This is not the same as ``min_word_length''!
120 ignore_words: 5;
121
122 # This many lines from the same person without interuption will be counted
123 # as one soliloquy.
124 soliloquies_count: 5;
125
126 # onis can create a ``persistency'' or ``history'' file. If such exists
127 # the already parsed part of a logfile can be skipped and unchanged
128 # logfiles are skipped entirely. However, for this to work you have to
129 # have ``Storable'' installed. If you have ``Storable'' installed but do
130 # not wish onis to write and/or use such a file you can disable it here.
131 #use_persistency: "true";
132
133
134 #
135 # Storage / Persistency options
136 #
137
138 # First, set the storage module to use. This depends on the perl-modules you
139 # have installed. If you don't know, ``Dbm'' is a wise choice.
140 # None:
141 #   Don't use any storage module. Data is not stored at the end of each run and
142 #   you will have to re-parse all logs again. This is the default.
143 # Dbm:
144 #   This storage-module uses DBM-files. The Perl-module ``AnyDBM_File'' is used
145 #   which is part of most Perl-distributions, i.e. it should work almost
146 #   anywhere.
147 # Storable:
148 #   Uses the ``Storable'' module to simply copy internal variables to a file.
149 #   This may result in more memory usage. No benchmarks have been run yet,
150 #   though..
151 storage_module: "Dbm";
152
153 # Sets the filename to use for storing the data. This filename is relative to
154 # ``storage_dir'' (see below). This option applies to the storage module
155 # ``Storable''.
156 storage_file: "storage.dat";
157
158 # Sets the directory in which the storage file(s) should be kept. This is used
159 # by ``Dbm'' and ``Storable''.
160 storage_dir: "var/";
161
162
163 #
164 # Output options
165 #
166
167 # If set to ``print'' prints out all color-codes. If set to ``ignore''
168 # color-codes will not be printed. Default is to ignore colors..
169 #color_codes: "print";
170
171 # Sets the document encoding. This must match your webserver's settings or
172 # you'll experience some very weird characters..
173 # Defaults to ``iso-8859-1''.
174 #encoding: "iso-8859-1";
175
176 # Style settings. If no theme is given this might result in a lot of very
177 # weird errors, so better set one ;)
178 # Valid themes as of onis 0.7.0: light, liner, dark
179 theme: "themes/light.theme";
180
181 # Read translations from this file.
182 # One of:
183 # english.lang german.lang norwegian.lang spanish.lang swedish.lang
184 language_file: "lang/english.lang";