liquid_feedback_frontend

annotate app/main/help/_action/update.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 80c215dbf076
children
rev   line source
bsw/jbe@4 1 local help_ident = param.get("help_ident")
bsw/jbe@4 2 local hide = param.get("hide", atom.boolean)
bsw/jbe@4 3
bsw/jbe@4 4 local setting_key = "liquidfeedback_frontend_hidden_help_" .. help_ident
bsw/jbe@4 5 local setting = Setting:by_pk(app.session.member.id, setting_key)
bsw/jbe@4 6
bsw/jbe@4 7 if hide == true and not setting then
bsw/jbe@4 8 setting = Setting:new()
bsw/jbe@4 9 setting.member_id = app.session.member.id
bsw/jbe@4 10 setting.key = setting_key
bsw/jbe@4 11 setting.value = "hidden"
bsw/jbe@4 12 setting:save()
bsw/jbe@4 13 elseif hide == false and setting then
bsw/jbe@4 14 setting:destroy()
bsw/jbe@4 15 end

Impressum / About Us