version 0.5
[irssistats] / sample.configfile
1 # This is the configuration file for irssistats.
2 # The path to this file can be given on the command line : irssistats /path/to/irssistats.conf
3 # If no configuration file is given, irssistats looks for files ~/.irssistats.conf or then /etc/irssistats.conf
4 # Lines starting by ; # -- or // are ignored (comments).
5 # This file is read sequencially, so it acts like a script.
6 # Each option keyword is case sensitive, and you must put separators around the ':' character.
7 # Blank lines must not contain any spaces !
8 # Each option keeps its value until erased by another value.
9 # IMPORTANT : the order of options to parse a channel must allways be "input" THEN "nickfile" THEN "output".
10
11 # Allows you to display debugging informations.
12 # Values : normal / verbose / none
13 # Default : normal
14 debug : verbose
15
16 # Specifies the name of the channel you are parsing.
17 channel : #zerezo
18
19 # Nickname of the person generating the statistics (you !).
20 maintainer : royale
21
22 # Language you want to use to display the statistics
23 # Values : fr en de du es it fi
24 # Default : en
25 language : fr
26
27 # Theme (colors) to use for the statistics
28 # In fact this is the name of the CSS file to include.
29 # This option has no effect if you use a custom header : you'll have to include the CSS yourself.
30 theme : orange
31
32 # Specifies the refresh time in seconds (0 to disable)
33 # This option has no effect if you use a custom header : you'll have to include the refresh code yourself.
34 # Default : 3600
35 refresh_time : 0
36
37 # Set this to "no" if you don't want the W3C logo.
38 # Default : yes
39 w3c_link : no
40
41 # Use your custom header file (HTML code between <!DOCTYPE... and <body> included)
42 header : /path/to/header.html
43
44 # Use your custom footer file (HTML code between </body> and </html> included)
45 footer : /path/to/footer.html
46
47 # This allow you to parse a file.
48 # Note that irssistats will really parse the file as soon as it reads this option.
49 input : /path/to/#channel1.log
50
51 # Let's parse another log.
52 # Note that this will merge "#channel and "#channel2" statistics...
53 # This is usefull if you splitted your channel file
54 input : /path/to/#newchannel1.log
55
56 # This allow you to group nick using a nickfile.
57 # Note that irssistats will really merge the nicks as soon as it reads this option.
58 nickfile : /path/to/nickfile1.txt
59
60 # This allow you to generate the HTML file.
61 # Note that irssistats will really generate the HTML file as soon as it reads this option.
62 output : /path/to/channel1.html
63
64 # Change some options
65 language : en
66 debug : none
67
68 # Do not use custom header and footer anymore
69 header : none
70 footer : none
71
72 # Another chan without nickfile
73 input : /path/to/#channel2.log
74 output : /path/to/channel2.html
75
76 # Another chan with nickfile
77 input : /path/to/#channel3.log
78 nickfile : /path/to/nickfile3.txt
79 output : /path/to/channel3.html