liquid_feedback_frontend

annotate config/example.lua @ 1112:8fb4eab439c1

Going to version 2.2.7
author bsw
date Mon Nov 10 18:56:59 2014 +0100 (2014-11-10)
parents 81bde33c2256
children 701a5cf6b067
rev   line source
bsw@730 1 -- ========================================================================
bsw@813 2 -- MANDATORY (MUST BE CAREFULLY CHECKED AND PROPERLY SET!)
bsw@730 3 -- ========================================================================
bsw@525 4
bsw@813 5 -- Name of this instance, defaults to name of config file
bsw@813 6 -- ------------------------------------------------------------------------
bsw@813 7 config.instance_name = "Instance name"
bsw@813 8
bsw@813 9
bsw@731 10 -- Information about service provider (HTML)
bsw@730 11 -- ------------------------------------------------------------------------
bsw/jbe@0 12 config.app_service_provider = "Snake Oil<br/>10000 Berlin<br/>Germany"
bsw/jbe@0 13
bsw@813 14
bsw@729 15 -- A rocketwiki formatted text the user has to accept while registering
bsw@730 16 -- ------------------------------------------------------------------------
bsw@729 17 config.use_terms = "=== Terms of Use ==="
bsw@88 18
bsw@813 19
bsw@729 20 -- Checkbox(es) the user has to accept while registering
bsw@730 21 -- ------------------------------------------------------------------------
bsw@79 22 config.use_terms_checkboxes = {
bsw@79 23 {
jbe@232 24 name = "terms_of_use_v1",
jbe@232 25 html = "I accept the terms of use.",
jbe@232 26 not_accepted_error = "You have to accept the terms of use to be able to register."
bsw@734 27 },
bsw@734 28 -- {
bsw@734 29 -- name = "extra_terms_of_use_v1",
bsw@734 30 -- html = "I accept the extra terms of use.",
bsw@734 31 -- not_accepted_error = "You have to accept the extra terms of use to be able to register."
bsw@734 32 -- }
bsw@79 33 }
bsw@813 34
bsw@735 35
bsw@813 36 -- Absolute base url of application
bsw@813 37 -- ------------------------------------------------------------------------
bsw@813 38 config.absolute_base_url = "http://example.com/"
bsw@813 39
bsw@813 40
bsw@813 41 -- Connection information for the LiquidFeedback database
bsw@813 42 -- ------------------------------------------------------------------------
bsw@813 43 config.database = { engine='postgresql', dbname='liquid_feedback' }
bsw@813 44
bsw@813 45
bsw@735 46 -- Location of the rocketwiki binaries
bsw@735 47 -- ------------------------------------------------------------------------
bsw@735 48 config.formatting_engine_executeables = {
bsw@735 49 rocketwiki= "/opt/rocketwiki-lqfb/rocketwiki-lqfb",
bsw@735 50 compat = "/opt/rocketwiki-lqfb/rocketwiki-lqfb-compat"
bsw@735 51 }
bsw@79 52
bsw/jbe@6 53
bsw@813 54 -- Public access level
bsw@734 55 -- ------------------------------------------------------------------------
bsw@813 56 -- Available options:
bsw@813 57 -- "none"
bsw@813 58 -- -> Closed user group, no public access at all
bsw@813 59 -- (except login/registration/password reset)
bsw@813 60 -- "anonymous"
bsw@813 61 -- -> Shows only initiative/suggestions texts and aggregated
bsw@813 62 -- supporter/voter counts
bsw@813 63 -- "authors_pseudonymous"
bsw@813 64 -- -> Like anonymous, but shows screen names of authors
bsw@813 65 -- "all_pseudonymous"
bsw@813 66 -- -> Show everything a member can see, except profile pages
bsw@813 67 -- "everything"
bsw@813 68 -- -> Show everything a member can see, including profile pages
bsw@813 69 -- ------------------------------------------------------------------------
bsw@813 70 config.public_access = "none"
bsw@734 71
bsw@737 72
bsw@732 73
bsw@737 74 -- ========================================================================
bsw@737 75 -- OPTIONAL
bsw@737 76 -- Remove leading -- to use a option
bsw@737 77 -- ========================================================================
bsw@731 78
bsw@729 79 -- List of enabled languages, defaults to available languages
bsw@730 80 -- ------------------------------------------------------------------------
bsw@876 81 -- config.enabled_languages = { 'en', 'de', 'eo', 'el', 'hu', 'it', 'nl', 'zh-Hans', 'zh-TW' }
bsw@2 82
bsw@729 83 -- Default language, defaults to "en"
bsw@730 84 -- ------------------------------------------------------------------------
bsw@729 85 -- config.default_lang = "en"
poelzi@163 86
bsw@734 87 -- after how long is a user considered inactive and the trustee will see warning,
bsw@734 88 -- notation is according to postgresql intervals, default: no warning at all
bsw@730 89 -- ------------------------------------------------------------------------
bsw@729 90 -- config.delegation_warning_time = '6 months'
bsw/jbe@6 91
bsw@988 92 -- after which time a user is advised (_soft) or forced (_hard) to check
bsw@988 93 -- unit and area delegations. default: no check at all
bsw@988 94 -- ------------------------------------------------------------------------
bsw@988 95 -- config.check_delegations_interval_hard = "6 months"
bsw@988 96 -- config.check_delegations_interval_soft = "3 months"
bsw@988 97
bsw@988 98 -- default option when checking delegations
bsw@988 99 -- available options: "confirm", "revoke" and "none", default: "confirm"
bsw@988 100 -- ------------------------------------------------------------------------
bsw@988 101 -- config.check_delegations_default = "confirm"
bsw@988 102
bsw@734 103 -- Prefix of all automatic mails, defaults to "[Liquid Feedback] "
bsw@730 104 -- ------------------------------------------------------------------------
bsw@729 105 -- config.mail_subject_prefix = "[LiquidFeedback] "
bsw@734 106
bsw@734 107 -- Sender of all automatic mails, defaults to system defaults
bsw@734 108 -- ------------------------------------------------------------------------
bsw@839 109 -- config.mail_envelope_from = "liquidfeedback@example.com"
bsw@839 110 -- config.mail_from = { name = "LiquidFeedback", address = "liquidfeedback@example.com" }
bsw@839 111 -- config.mail_reply_to = { name = "Support", address = "support@example.com" }
bsw/jbe@6 112
bsw@905 113 -- Configuration of password hashing algorithm (defaults to "crypt_sha512")
bsw@905 114 -- ------------------------------------------------------------------------
bsw@905 115 -- config.password_hash_algorithm = "crypt_sha512"
bsw@905 116 -- config.password_hash_algorithm = "crypt_sha256"
bsw@905 117 -- config.password_hash_algorithm = "crypt_md5"
bsw@905 118
bsw@905 119 -- Number of rounds for crypt_sha* algorithms, minimum and maximum
bsw@905 120 -- (defaults to minimum 10000 and maximum 20000)
bsw@905 121 -- ------------------------------------------------------------------------
bsw@905 122 -- config.password_hash_min_rounds = 10000
bsw@905 123 -- config.password_hash_max_rounds = 20000
bsw@905 124
bsw@905 125
bsw@729 126 -- Supply custom url for avatar/photo delivery
bsw@730 127 -- ------------------------------------------------------------------------
bsw@729 128 -- config.fastpath_url_func = nil
bsw@51 129
bsw@729 130 -- Local directory for database dumps offered for download
bsw@730 131 -- ------------------------------------------------------------------------
bsw@729 132 -- config.download_dir = nil
bsw@51 133
bsw@729 134 -- Special use terms for database dump download
bsw@730 135 -- ------------------------------------------------------------------------
bsw@729 136 -- config.download_use_terms = "=== Download use terms ===\n"
bsw/jbe@52 137
bsw@734 138 -- Use custom image conversion, defaults to ImageMagick's convert
bsw@730 139 -- ------------------------------------------------------------------------
bsw@729 140 --config.member_image_content_type = "image/jpeg"
bsw@729 141 --config.member_image_convert_func = {
bsw@729 142 -- avatar = function(data) return extos.pfilter(data, "convert", "jpeg:-", "-thumbnail", "48x48", "jpeg:-") end,
bsw@729 143 -- photo = function(data) return extos.pfilter(data, "convert", "jpeg:-", "-thumbnail", "240x240", "jpeg:-") end
bsw@729 144 --}
bsw@51 145
bsw@837 146 -- Display a public message of the day
bsw@837 147 -- ------------------------------------------------------------------------
bsw@838 148 -- config.motd_public = "===Message of the day===\nThe MOTD is formatted with rocket wiki"
bsw@837 149
bsw@835 150 -- Automatic issue related discussion URL
bsw@835 151 -- ------------------------------------------------------------------------
bsw@835 152 -- config.issue_discussion_url_func = function(issue)
bsw@835 153 -- return "http://example.com/discussion/issue_" .. tostring(issue.id)
bsw@835 154 -- end
bsw@835 155
bsw@734 156 -- Integration of Etherpad, disabled by default
bsw@730 157 -- ------------------------------------------------------------------------
bsw@729 158 --config.etherpad = {
bsw@729 159 -- base_url = "http://example.com:9001/",
bsw@729 160 -- api_base = "http://localhost:9001/",
bsw@729 161 -- api_key = "mysecretapikey",
bsw@729 162 -- group_id = "mygroupname",
bsw@729 163 -- cookie_path = "/"
bsw@729 164 --}
bsw@51 165
bsw@961 166 -- Free timings
bsw@961 167 -- ------------------------------------------------------------------------
bsw@961 168 -- This example expects a date string entered in the free timing field
bsw@961 169 -- by the user creating a poll, interpreting it as target date for then
bsw@961 170 -- poll and splits the remaining time at the ratio of 4:1:2
bsw@961 171 -- Please note, polling policies never have an admission phase
bsw@961 172 -- The available_func is optional, if not set any target date is allowed
bsw@961 173
bsw@961 174 config.free_timing = {
bsw@961 175 calculate_func = function(policy, timing_string)
bsw@961 176 function interval_by_seconds(secs)
bsw@961 177 local secs_per_day = 60 * 60 * 24
bsw@961 178 local days
bsw@961 179 days = math.floor(secs / secs_per_day)
bsw@961 180 secs = secs - days * secs_per_day
bsw@961 181 return days .. " days " .. secs .. " seconds"
bsw@961 182 end
bsw@961 183 local target_date = parse.date(timing_string, atom.date)
bsw@961 184 if not target_date then
bsw@961 185 return false
bsw@961 186 end
bsw@961 187 local target_timestamp = target_date.midday
bsw@961 188 local now = atom.timestamp:get_current()
bsw@961 189 trace.debug(target_timestamp, now)
bsw@961 190 local duration = target_timestamp - now
bsw@961 191 if duration < 0 then
bsw@961 192 return false
bsw@961 193 end
bsw@961 194 return {
bsw@961 195 discussion = interval_by_seconds(duration / 7 * 4),
bsw@961 196 verification = interval_by_seconds(duration / 7 * 1),
bsw@961 197 voting = interval_by_seconds(duration / 7 * 2)
bsw@961 198 }
bsw@961 199 end,
bsw@961 200 available_func = function(policy)
bsw@961 201 return {
bsw@961 202 { name = "End of 2013", id = '2013-12-31' },
bsw@961 203 { name = "End of 2014", id = '2014-12-31' },
bsw@961 204 { name = "End of 2015", id = '2015-12-31' }
bsw@961 205 }
bsw@961 206 end
bsw@961 207 }
bsw@961 208
bsw@729 209 -- WebMCP accelerator
bsw/jbe@0 210 -- uncomment the following two lines to use C implementations of chosen
bsw/jbe@0 211 -- functions and to disable garbage collection during the request, to
bsw/jbe@0 212 -- increase speed:
bsw@730 213 -- ------------------------------------------------------------------------
bsw@729 214 -- require 'webmcp_accelerator'
bsw@806 215 -- if cgi then collectgarbage("stop") end
bsw/jbe@0 216
bsw@868 217 -- Trace debug
bsw@868 218 -- uncomment the following line to enable debug trace
bsw@868 219 -- config.enable_debug_trace = true
bsw/jbe@0 220
bsw@730 221 -- ========================================================================
bsw@734 222 -- Do main initialisation (DO NOT REMOVE FOLLOWING SECTION)
bsw@730 223 -- ========================================================================
bsw@730 224
bsw@729 225 execute.config("init")

Impressum / About Us