liquid_feedback_frontend
annotate app/main/initiative/_action/create.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
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 |
rev | line source |
---|---|
bsw/jbe@5 | 1 local tmp = db:query({ "SELECT text_entries_left, initiatives_left FROM member_contingent_left WHERE member_id = ?", app.session.member.id }, "opt_object") |
bsw/jbe@5 | 2 if tmp then |
bsw/jbe@5 | 3 if tmp.initiatives_left and tmp.initiatives_left < 1 then |
bsw/jbe@5 | 4 slot.put_into("error", _"Sorry, your contingent for creating initiatives has been used up. Please try again later.") |
bsw/jbe@5 | 5 return false |
bsw/jbe@5 | 6 end |
bsw/jbe@5 | 7 if tmp.text_entries_left and tmp.text_entries_left < 1 then |
bsw/jbe@5 | 8 slot.put_into("error", _"Sorry, you have reached your personal flood limit. Please be slower...") |
bsw/jbe@5 | 9 return false |
bsw/jbe@5 | 10 end |
bsw/jbe@5 | 11 end |
bsw/jbe@5 | 12 |
bsw/jbe@0 | 13 local issue |
bsw/jbe@0 | 14 local area |
bsw/jbe@0 | 15 |
bsw/jbe@0 | 16 local issue_id = param.get("issue_id", atom.integer) |
bsw/jbe@0 | 17 if issue_id then |
bsw/jbe@0 | 18 issue = Issue:new_selector():add_where{"id=?",issue_id}:single_object_mode():exec() |
bsw/jbe@5 | 19 if issue.closed then |
bsw/jbe@5 | 20 slot.put_into("error", _"This issue is already closed.") |
bsw/jbe@5 | 21 return false |
bsw/jbe@5 | 22 elseif issue.fully_frozen then |
bsw/jbe@5 | 23 slot.put_into("error", _"Voting for this issue has already begun.") |
bsw/jbe@5 | 24 return false |
bsw/jbe@5 | 25 end |
bsw/jbe@0 | 26 area = issue.area |
bsw/jbe@0 | 27 else |
bsw/jbe@0 | 28 local area_id = param.get("area_id", atom.integer) |
bsw/jbe@0 | 29 area = Area:new_selector():add_where{"id=?",area_id}:single_object_mode():exec() |
bsw/jbe@0 | 30 end |
bsw/jbe@0 | 31 |
bsw/jbe@6 | 32 local name = param.get("name") |
bsw/jbe@6 | 33 |
bsw/jbe@6 | 34 local name = util.trim(name) |
bsw/jbe@6 | 35 |
bsw/jbe@6 | 36 if #name < 3 then |
bsw/jbe@6 | 37 slot.put_into("error", _"This name is really too short!") |
bsw/jbe@6 | 38 return false |
bsw/jbe@6 | 39 end |
bsw/jbe@6 | 40 |
bsw/jbe@0 | 41 local initiative = Initiative:new() |
bsw/jbe@0 | 42 |
bsw/jbe@0 | 43 if not issue then |
bsw/jbe@0 | 44 issue = Issue:new() |
bsw/jbe@0 | 45 issue.area_id = area.id |
bsw/jbe@0 | 46 issue.policy_id = param.get("policy_id", atom.integer) |
bsw/jbe@0 | 47 issue:save() |
bsw/jbe@0 | 48 end |
bsw/jbe@0 | 49 |
bsw/jbe@0 | 50 initiative.issue_id = issue.id |
bsw/jbe@6 | 51 initiative.name = name |
bsw/jbe@6 | 52 param.update(initiative, "discussion_url") |
bsw/jbe@0 | 53 initiative:save() |
bsw/jbe@0 | 54 |
bsw/jbe@0 | 55 local draft = Draft:new() |
bsw/jbe@0 | 56 draft.initiative_id = initiative.id |
bsw/jbe@4 | 57 local formatting_engine = param.get("formatting_engine") |
bsw/jbe@4 | 58 local formatting_engine_valid = false |
bsw/jbe@4 | 59 for fe, dummy in pairs(config.formatting_engine_executeables) do |
bsw/jbe@4 | 60 if formatting_engine == fe then |
bsw/jbe@4 | 61 formatting_engine_valid = true |
bsw/jbe@4 | 62 end |
bsw/jbe@4 | 63 end |
bsw/jbe@4 | 64 if not formatting_engine_valid then |
bsw/jbe@4 | 65 error("invalid formatting engine!") |
bsw/jbe@4 | 66 end |
bsw/jbe@4 | 67 draft.formatting_engine = formatting_engine |
bsw/jbe@0 | 68 draft.content = param.get("draft") |
bsw/jbe@0 | 69 draft.author_id = app.session.member.id |
bsw/jbe@0 | 70 draft:save() |
bsw/jbe@0 | 71 |
bsw/jbe@0 | 72 local initiator = Initiator:new() |
bsw/jbe@0 | 73 initiator.initiative_id = initiative.id |
bsw/jbe@0 | 74 initiator.member_id = app.session.member.id |
bsw/jbe@0 | 75 initiator:save() |
bsw/jbe@0 | 76 |
bsw/jbe@0 | 77 local supporter = Supporter:new() |
bsw/jbe@0 | 78 supporter.initiative_id = initiative.id |
bsw/jbe@0 | 79 supporter.member_id = app.session.member.id |
bsw/jbe@0 | 80 supporter.draft_id = draft.id |
bsw/jbe@0 | 81 supporter:save() |
bsw/jbe@0 | 82 |
bsw/jbe@0 | 83 slot.put_into("notice", _"Initiative successfully created") |
bsw/jbe@0 | 84 |
bsw/jbe@0 | 85 request.redirect{ |
bsw/jbe@0 | 86 module = "initiative", |
bsw/jbe@0 | 87 view = "show", |
bsw/jbe@0 | 88 id = initiative.id |
bsw/jbe@0 | 89 } |