small irssistats localization patch
[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 "photofile" 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 ru et
24 # Default : en
25 language : fr
26
27 # Theme (colors) to use for the statistics, separated by comas
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 # The first theme is the primary stylesheet, and the others are alternate themes
31 theme : default,biseau,blue,dark,damier,grayscale,namour,niflheim,pisg,zeduel,zerezo
32
33 # Allows you to disable top words list which is using a lot of memory
34 # Default : yes
35 top_words : yes
36
37 # Specifies which ranking method to use
38 # Values : lines / words / letters
39 # Default : lines
40 ranking : lines
41
42 # Display quarters in top hours (smoother graphs)
43 # Default : no
44 quarter : yes
45
46 # Display last weeks statistics
47 # Default : no
48 weeks : yes
49
50 # Display last months statistics
51 # Default : no
52 months : yes
53
54 # Specifies the refresh time in seconds (0 to disable)
55 # This option has no effect if you use a custom header : you'll have to include the refresh code yourself.
56 # Default : 3600
57 refresh_time : 0
58
59 # Specifies the size in pixels of the thumbnails for users
60 # This option has an effect only if there is a photofile (see below)
61 # Set to 0 to disable (display pictures with their real size)
62 # Default : 60
63 photo_size : 0
64
65 # Set this to "no" if you don't want the W3C logo.
66 # Default : yes
67 w3c_link : no
68
69 # Set this to "no" if you don't want the irssistats logo.
70 # Default : yes
71 logo : no
72
73 # Use your custom header file (HTML code between <!DOCTYPE... and <body> included)
74 header : /path/to/header.html
75
76 # Use your custom footer file (HTML code between </body> and </html> included)
77 footer : /path/to/footer.html
78
79 # This allow you to parse a file.
80 # Note that irssistats will really parse the file as soon as it reads this option.
81 input : /path/to/#channel1.log
82
83 # Let's parse another log.
84 # Note that this will merge "#channel and "#channel2" statistics...
85 # This is usefull if you splitted your channel file
86 input : /path/to/#newchannel1.log
87
88 # This allow you to group nick using a nickfile.
89 # Note that irssistats will really merge the nicks as soon as it reads this option.
90 nickfile : /path/to/nickfile1.txt
91
92 # This allow you to display pictures for users.
93 photofile: /path/to/photofile1.txt
94
95 # This allow you to generate the HTML file.
96 # Note that irssistats will really generate the HTML file as soon as it reads this option.
97 output : /path/to/channel1.html
98
99 # Change some options
100 language : en
101 debug : none
102
103 # Do not use custom header and footer anymore
104 header : none
105 footer : none
106
107 # Another chan without nickfile
108 input : /path/to/#channel2.log
109 output : /path/to/channel2.html
110
111 # Another chan with nickfile
112 input : /path/to/#channel3.log
113 nickfile : /path/to/nickfile3.txt
114 output : /path/to/channel3.html