liquid_feedback_frontend

view config/default.lua @ 271:d13b27a37ad5

Optical enhancements, some repositioning of ui elements
author bsw
date Tue Feb 07 22:30:48 2012 +0100 (2012-02-07)
parents 82c1d3a7819c
children 7196685f9dd7
line source
1 config.app_name = "LiquidFeedback"
2 config.app_version = "beta33"
4 config.app_title = config.app_name .. " (" .. request.get_config_name() .. " environment)"
6 config.app_logo = nil
8 config.app_service_provider = "Snake Oil<br/>10000 Berlin<br/>Germany"
10 --config.footer_html = '<a href="somewhere">some link</a>'
12 config.use_terms = "=== Terms of Use ===\nNothing is allowed."
13 --config.use_terms_html = ""
15 config.use_terms_checkboxes = {
16 {
17 name = "terms_of_use_v1",
18 html = "I accept the terms of use.",
19 not_accepted_error = "You have to accept the terms of use to be able to register."
20 }
21 }
24 config.member_image_content_type = "image/jpeg"
25 config.member_image_convert_func = {
26 avatar = function(data) return os.pfilter(data, "convert", "jpeg:-", "-thumbnail", "48x48", "jpeg:-") end,
27 photo = function(data) return os.pfilter(data, "convert", "jpeg:-", "-thumbnail", "240x240", "jpeg:-") end
28 }
30 config.member_image_default_file = {
31 avatar = "avatar.jpg",
32 photo = nil
33 }
35 config.default_lang = "de"
37 -- after how long is a user considered inactive and the trustee will see warning
38 -- notation is according to postgresql intervals
39 config.delegation_warning_time = '6 months'
41 config.mail_subject_prefix = "[LiquidFeedback] "
43 config.fastpath_url_func = nil
45 config.download_dir = nil
47 config.download_use_terms = "=== Nutzungsbedingungen ===\nAlles ist verboten"
49 config.public_access = false -- Available options: "anonymous", "pseudonym"
51 config.api_enabled = true
53 config.feature_rss_enabled = false -- feature is broken
55 config.single_unit_id = false
57 -- OpenID authentication is not fully implemented yet, DO NOT USE BEFORE THIS NOTICE HAS BEEN REMOVED!
58 config.auth_openid_enabled = false
59 config.auth_openid_https_as_default = true
60 config.auth_openid_identifier_check_func = function(uri) return false end
62 request.set_allowed_json_request_slots{ "title", "actions", "support", "default", "trace", "system_error" }
65 if request.get_json_request_slots() then
66 request.force_absolute_baseurl()
67 end
69 request.set_404_route{ module = 'index', view = '404' }
71 -- uncomment the following two lines to use C implementations of chosen
72 -- functions and to disable garbage collection during the request, to
73 -- increase speed:
74 --
75 -- require 'webmcp_accelerator'
76 -- collectgarbage("stop")
78 -- open and set default database handle
79 db = assert(mondelefant.connect{
80 engine='postgresql',
81 dbname='liquid_feedback'
82 })
83 at_exit(function()
84 db:close()
85 end)
86 function mondelefant.class_prototype:get_db_conn() return db end
88 -- enable output of SQL commands in trace system
89 function db:sql_tracer(command)
90 return function(error_info)
91 local error_info = error_info or {}
92 trace.sql{ command = command, error_position = error_info.position }
93 end
94 end
96 request.set_absolute_baseurl(config.absolute_base_url)
100 -- TODO abstraction
101 -- get record by id
102 function mondelefant.class_prototype:by_id(id)
103 local selector = self:new_selector()
104 selector:add_where{ 'id = ?', id }
105 selector:optional_object_mode()
106 return selector:exec()
107 end

Impressum / About Us