Fixed Bignumbers Plugin
[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: "Conversations";
44 plugin: "BigNumbers";
45 plugin: "Words";
46 plugin: "Nicks";
47 plugin: "Urls";
48 plugin: "Topics";
49 plugin: "InterestingNumbers";
50 plugin: "Userdetails";
51
52 # In order to recognize users who use dialin-accounts or have for some
53 # other reason changing hostnames it is neccessary to unsharp the host.
54 # This options says how much to unsharp it. Valid values are ``none'',
55 # ``Light'', ``Medium'' and ``Hard''. Most people will go best with
56 # ``Medium''..
57 unsharp: "Medium";
58
59 # Sets the minimum length for a word. ``5'' is a good value to start
60 # with..
61 min_word_length: 5;
62
63 # Sort the main table by this field. Valid values are ``Lines'', ``Words''
64 # and ``Chars''. Defaults to ``Lines''.
65 sort_by: "Words";
66
67 # Display the following fields in the given format. Valid formats are
68 # ``None'', ``Number'', ``Bar'' and ``Both''.
69 display_lines: "None";
70 display_words: "Both";
71 display_chars: "None";
72
73 # Sets wether or not user-images are displayed. Defaults to not display
74 # the images, since by default none are defined..
75 #display_images: "false";
76
77 # Sets the default image which is displayed for users which don't have an
78 # image set. If not set no image will be displayed for those users. If a
79 # theme sets a default image and you want to un-set is, use "".
80 #default_image:  "light-theme/unknown.png";
81
82 # If set to true a bar indicating the time when a user is most active is
83 # being printed in the main table.
84 display_times: "false";
85
86 # This options control which quotes are picked and how far back they can
87 # reach. A line is put into the quote-cache if it is a least ``quote_min''
88 # and at most ``quote_max'' characters long. No more than
89 # ``quote_cache_size'' quotes are stored in the cache to have recent
90 # quotes if possible.
91 quote_min: 30;
92 quote_max: 80;
93 quote_cache_size: 10;
94
95 # With the following option you can control how high and wide the bars
96 # are. Values are in pixels. Height applies to vertical, width to
97 # horizontal bars.
98 bar_height: 130;
99 bar_width: 100;
100
101 # ``longlines'' defines how many nicks are in the big main table,
102 # ``shortlines'' sets the number of _lines_ in the smaller table below.
103 # Keep in mind that there are six nicks per line in the smaller table..
104 longlines:  50;
105 shortlines: 10;
106
107 # The ``plugin_max'' option is used by various plugins to determine how
108 # many records (lines, rows, etc) should be printed.
109 plugin_max: 10;
110
111 # Matching the nicks contained in a line very slow. So we use a trick
112 # which is not as accurate but a lot faster. If you want to use the slow
113 # but better solution instead, set this option to ``good''. Otherwise
114 # leave at ``fast''.
115 nick_match_type: "fast";
116
117 # The ``last used words'' plugin will ignore words shorter than this
118 # value. This is not the same as ``min_word_length''!
119 ignore_words: 5;
120
121 # This many lines from the same person without interuption will be counted
122 # as one soliloquy.
123 soliloquies_count: 5;
124
125 # onis can create a ``persistency'' or ``history'' file. If such exists
126 # the already parsed part of a logfile can be skipped and unchanged
127 # logfiles are skipped entirely. However, for this to work you have to
128 # have ``Storable'' installed. If you have ``Storable'' installed but do
129 # not wish onis to write and/or use such a file you can disable it here.
130 #use_persistency: "true";
131
132 # Sets the file which onis will dump it's state into.
133 persistency_file: "persistency.data";
134
135 # If set to ``print'' prints out all color-codes. If set to ``ignore''
136 # color-codes will not be printed. Default is to ignore colors..
137 #color_codes: "print";
138
139 # Sets the document encoding. This must match your webserver's settings or
140 # you'll experience some very weird characters..
141 # Defaults to ``iso-8859-1''.
142 #encoding: "iso-8859-1";
143
144 # Style settings. If no theme is given this might result in a lot of very
145 # weird errors, so better set one ;)
146 # Valid themes as of onis 0.7.0: light, liner, dark
147 theme: "themes/light.theme";
148
149 # Read translations from this file.
150 # One of:
151 # english.lang german.lang norwegian.lang spanish.lang swedish.lang
152 language_file: "lang/english.lang";