liquid_feedback_frontend

view app/main/draft/new.lua @ 19:00d1004545f1

Dynamic interface using XMLHttpRequests, and many other changes

Bugfixes:
- Only allow voting on admitted initiatives
- Repaired issue search
- Don't display delegations for closed issues on member page
- Don't show revoke link in initiative, when issue is already half_frozen
- Localization for voting JavaScript
- Display author of suggestions

Disclosure of voting data after voting is finished:
- Possibility to inspect every ballot including preferences
- Show number of voters preferring one initiative to another initiative

Interface behaviour changes:
- Reversed default order of drafts
- Default order of suggestions changed
- Show new drafts of initiatives only once per day in timeline

Accessibility:
- Barrier-free voting implemented
- POST links are now accessible without JavaScript
- Changed gray for unsatisfied supporters in bar graph to a lighter gray

Other interface improvements:
- Optical enhancements
- Dynamic interface using XMLHttpRequests
- Show usage terms in about section
- Show own membership in area listing
- Show uninformed supporters greyed out and marked with yellow question mark
- Warning box in non-admitted initiatives
- When voted, don't display voting notice and change label of voting link
- Show object counts in more tabulator heads
- Enlarged member statement input field

Miscellaneous:
- Code cleanup
- Added README file containing installation instructions
- Use new WebMCP function ui.filters{...} instead of own ui.filter and ui.order functions
author bsw/jbe
date Sat Feb 20 22:10:31 2010 +0100 (2010-02-20)
parents 80c215dbf076
children 6a12fb7e4963
line source
1 slot.put_into("title", _"Edit draft")
3 local initiative = Initiative:by_id(param.get("initiative_id"))
5 slot.select("actions", function()
6 ui.link{
7 content = function()
8 ui.image{ static = "icons/16/cancel.png" }
9 slot.put(_"Cancel")
10 end,
11 module = "initiative",
12 view = "show",
13 id = initiative.id
14 }
15 end)
17 ui.form{
18 record = initiative.current_draft,
19 attr = { class = "vertical" },
20 module = "draft",
21 action = "add",
22 params = { initiative_id = initiative.id },
23 routing = {
24 default = {
25 mode = "redirect",
26 module = "initiative",
27 view = "show",
28 id = initiative.id
29 }
30 },
31 content = function()
33 ui.field.text{ label = _"Author", value = app.session.member.name, readonly = true }
34 ui.field.select{
35 label = _"Wiki engine",
36 name = "formatting_engine",
37 foreign_records = {
38 { id = "rocketwiki", name = "RocketWiki" },
39 { id = "compat", name = _"Traditional wiki syntax" }
40 },
41 foreign_id = "id",
42 foreign_name = "name"
43 }
44 ui.field.text{
45 label = _"Content",
46 name = "content",
47 multiline = true,
48 attr = { style = "height: 50ex;" }
49 }
51 ui.submit{ text = _"Save" }
52 end
53 }

Impressum / About Us