1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
###
### General settings
###
# Use this user-file (commandline option -u overrides this)
# Default: nothing
gen_user_file = "users.cfg"
# Enables or disables automatic following of nick-changes.
# Default: YES
#gen_auto_follow_nicks = no
# Enables automatic nick-following heuristics. This may help
# you if you don't want to write a userfile. BEWARE/NOTICE!
# This feature is HIGHLY EXPERIMENTAL and may not work as expected!
# Default: NO
#gen_auto_follow_heuristics = yes
# Use PISG-style ranking/scoring?
# Default: NO
#gen_use_pisg_scoring = yes
###
### Generic output
###
# Format for dates used in outputs. Syntax is same as in
# strftime(3)-function under UNIX. A quick reference:
# (1) and (2) have some differences.
#
# (1) (2) - Description
# =====================================================================
# %a - The abbreviated weekday name.
# %b - The abbreviated month name.
# %B - The full month name.
# %c - The preferred date and time representation.
# %C - The century number (year/100) as a 2-digit integer.
# %d %e - The day of the month as a decimal number (01 - 31).
# %D - Equivalent to %m/%d/%y. (Yecch - for Americans only).
# %H %k - The hour using a 24-hour clock (00 - 23).
# %I %l - The hour using a 12-hour clock (01 - 12).
# %M - The minute as a decimal number (00 - 59).
# %m - The month as a decimal number (01 - 12).
# %p %P - 'AM' or 'PM' according to the given time value.
# %S - The second as a decimal number (00 - 61).
# %y %Y - The year as a decimal number.
# %% - A literal '%' character.
# Default: "%c"
#gen_dateformat = "%A %H:%M"
# Channel and network name settings
# Default: none
gen_channel = "#FooBar"
gen_ircnet = "IRCNet"
# General informal message used by output modules
# Default: none
#gen_message = "This is a nice message!"
# Show this many users in the top-list
# Default: 35
#gen_showmax = 35
# Show this many in the "did not make it"-list
# Default: 20
#gen_showrest = 20
# Use ONLY the users in top-list for computation of funny-stats?
# Default: NO
#gen_stat_only_listed = yes
# Show optional sections in statistics page
# Default: YES
#gen_stat_active_times = no
#gen_stat_top_users = no
#gen_stat_almost_top = no
#gen_stat_big_numbers = no
# Optional columns in "top users"-list
# Default: as specified below
#gen_stat_show_happiness = yes
#gen_stat_show_comment = yes
#gen_stat_show_picture = no
#gen_stat_show_url = no
###
### XHTML module specific settings
###
# Path to images (bargraphs, smileys)
xhtml_image_path = "data"
# Path+filename of wanted CSS stylesheet
xhtml_css_path = "data/c64.css"
|