liquid_feedback_frontend

diff config/default.lua @ 6:8d91bccab0bf

Version beta2

Possibility to browse voters of a closed issue

Registration with invite code

Email confirmation and password recovery

Download function (for database dumps) added

Critical bug solved, which made it impossible to select your opinion on other peoples suggestions

Catching error, when trying to set an opinion on a suggestion which has been meanwhile deleted

Fixed wrong sorting order for "supporters" or "potential supporters"

Added format info for birthday (Error when entering dates in wrong format is NOT fixed in this release)

Strip space characters from certain fields and ensure they contain at least 3 characters

Showing grade in opinion/list as clear text instead of integer value

More information on initiative is displayed while voting

Colored notification box shown on pages of issues or initiatives which are currently in voting state

Changed default filter for issues to "Open"

Back link on suggestion page

Some optical changes

Removed wrong space character in LICENSE file
author bsw/jbe
date Sat Jan 02 12:00:00 2010 +0100 (2010-01-02)
parents afd9f769c7ae
children 3941792e8be6
line diff
     1.1 --- a/config/default.lua	Fri Dec 25 12:00:00 2009 +0100
     1.2 +++ b/config/default.lua	Sat Jan 02 12:00:00 2010 +0100
     1.3 @@ -1,5 +1,5 @@
     1.4  config.app_name = "LiquidFeedback"
     1.5 -config.app_version = "beta1"
     1.6 +config.app_version = "beta2"
     1.7  
     1.8  config.app_title = config.app_name .. " (" .. request.get_config_name() .. " environment)"
     1.9  
    1.10 @@ -7,6 +7,8 @@
    1.11  
    1.12  config.app_service_provider = "Snake Oil<br/>10000 Berlin<br/>Germany"
    1.13  
    1.14 +config.use_terms = "=== Nutzungsbedingungen ===\nAlles ist verboten"
    1.15 +
    1.16  config.member_image_convert_func = {
    1.17    avatar = function(data) return os.pfilter(data, "convert", "jpeg:-", "-thumbnail",   "48x48", "jpeg:-") end,
    1.18    photo =  function(data) return os.pfilter(data, "convert", "jpeg:-", "-thumbnail", "240x240", "jpeg:-") end
    1.19 @@ -17,8 +19,13 @@
    1.20    photo = nil
    1.21  }
    1.22  
    1.23 +config.mail_subject_prefix = "[LiquidFeedback] "
    1.24 +
    1.25  config.fastpath_url_func = nil
    1.26  
    1.27 +config.download_dir = nil
    1.28 +
    1.29 +config.download_use_terms = "=== Nutzungsbedingungen ===\nAlles ist verboten"
    1.30  
    1.31  -- uncomment the following two lines to use C implementations of chosen
    1.32  -- functions and to disable garbage collection during the request, to
    1.33 @@ -45,10 +52,7 @@
    1.34    end
    1.35  end
    1.36  
    1.37 --- 'request.get_relative_baseurl()' should be replaced by the absolute
    1.38 --- base URL of the application, as otherwise HTTP redirects will not be
    1.39 --- standard compliant
    1.40 -request.set_absolute_baseurl(request.get_relative_baseurl())
    1.41 +request.set_absolute_baseurl(config.absolute_base_url)
    1.42  
    1.43  
    1.44  

Impressum / About Us