rev |
line source |
bsw/jbe@0
|
1 slot.put_into("title", encode.html(_"About LiquidFeedback"))
|
bsw/jbe@0
|
2
|
bsw/jbe@0
|
3
|
bsw/jbe@0
|
4 slot.put("<br />")
|
bsw/jbe@0
|
5 ui.field.text{ attr = { style = "font-weight: bold;" }, value = "Diensteanbieter:" }
|
bsw/jbe@0
|
6 slot.put("<br />")
|
bsw/jbe@0
|
7
|
bsw/jbe@0
|
8 slot.put(config.app_service_provider)
|
bsw/jbe@0
|
9
|
bsw/jbe@0
|
10 slot.put("<br />")
|
bsw/jbe@0
|
11 slot.put("<br />")
|
bsw/jbe@0
|
12 slot.put("<br />")
|
bsw/jbe@0
|
13
|
bsw/jbe@0
|
14
|
bsw/jbe@0
|
15 ui.field.text{ attr = { style = "font-weight: bold;" }, value = "Dieser Dienst ist mit folgender Software realisiert worden:" }
|
bsw/jbe@0
|
16 slot.put("<br />")
|
bsw/jbe@0
|
17
|
bsw/jbe@0
|
18 local tmp = {
|
bsw/jbe@0
|
19 {
|
bsw/jbe@0
|
20 name = "LiquidFeedback Frontend",
|
bsw/jbe@0
|
21 url = "http://www.public-software-group.org/liquid_feedback",
|
bsw/jbe@0
|
22 version = config.app_version,
|
bsw/jbe@0
|
23 license = "MIT/X11",
|
bsw/jbe@0
|
24 license_url = "http://www.public-software-group.org/licenses"
|
bsw/jbe@0
|
25 },
|
bsw/jbe@0
|
26 {
|
bsw/jbe@0
|
27 name = "LiquidFeedback Core",
|
bsw/jbe@0
|
28 url = "http://www.public-software-group.org/liquid_feedback",
|
bsw/jbe@0
|
29 version = db:query("SELECT * from liquid_feedback_version;")[1].string,
|
bsw/jbe@0
|
30 license = "MIT/X11",
|
bsw/jbe@0
|
31 license_url = "http://www.public-software-group.org/licenses"
|
bsw/jbe@0
|
32 },
|
bsw/jbe@0
|
33 {
|
bsw/jbe@0
|
34 name = "WebMCP",
|
bsw/jbe@0
|
35 url = "http://www.public-software-group.org/webmcp",
|
bsw/jbe@0
|
36 version = _WEBMCP_VERSION,
|
bsw/jbe@0
|
37 license = "MIT/X11",
|
bsw/jbe@0
|
38 license_url = "http://www.public-software-group.org/licenses"
|
bsw/jbe@0
|
39 },
|
bsw/jbe@0
|
40 {
|
bsw/jbe@0
|
41 name = "Lua",
|
bsw/jbe@0
|
42 url = "http://www.lua.org",
|
bsw/jbe@0
|
43 version = _VERSION:gsub("Lua ", ""),
|
bsw/jbe@0
|
44 license = "MIT/X11",
|
bsw/jbe@0
|
45 license_url = "http://www.lua.org/license.html"
|
bsw/jbe@0
|
46 },
|
bsw/jbe@0
|
47 {
|
bsw/jbe@0
|
48 name = "PostgreSQL",
|
bsw/jbe@0
|
49 url = "http://www.postgresql.org/",
|
bsw/jbe@0
|
50 version = db:query("SELECT version();")[1].version:gsub("PostgreSQL ", ""):gsub("on.*", ""),
|
bsw/jbe@0
|
51 license = "BSD",
|
bsw/jbe@0
|
52 license_url = "http://www.postgresql.org/about/licence"
|
bsw/jbe@0
|
53 },
|
bsw/jbe@0
|
54 }
|
bsw/jbe@0
|
55
|
bsw/jbe@0
|
56 ui.list{
|
bsw/jbe@0
|
57 records = tmp,
|
bsw/jbe@0
|
58 columns = {
|
bsw/jbe@0
|
59 {
|
bsw/jbe@0
|
60 label = _"Software",
|
bsw/jbe@0
|
61 content = function(record)
|
bsw/jbe@0
|
62 ui.link{
|
bsw/jbe@0
|
63 content = record.name,
|
bsw/jbe@0
|
64 external = record.url
|
bsw/jbe@0
|
65 }
|
bsw/jbe@0
|
66 end
|
bsw/jbe@0
|
67 },
|
bsw/jbe@0
|
68 {
|
bsw/jbe@0
|
69 label = _"Version",
|
bsw/jbe@0
|
70 content = function(record) ui.field.text{ value = record.version } end
|
bsw/jbe@0
|
71 },
|
bsw/jbe@0
|
72 {
|
bsw/jbe@0
|
73 label = _"License",
|
bsw/jbe@0
|
74 content = function(record)
|
bsw/jbe@0
|
75 ui.link{
|
bsw/jbe@0
|
76 content = record.license,
|
bsw/jbe@0
|
77 external = record.license_url
|
bsw/jbe@0
|
78 }
|
bsw/jbe@0
|
79 end
|
bsw/jbe@0
|
80
|
bsw/jbe@0
|
81 }
|
bsw/jbe@0
|
82 }
|
bsw/jbe@0
|
83 }
|
bsw/jbe@0
|
84
|
bsw/jbe@0
|
85 slot.put("<br />")
|
bsw/jbe@0
|
86 slot.put("<br />")
|
bsw/jbe@0
|
87 slot.put("<br />")
|
bsw/jbe@0
|
88
|
bsw/jbe@0
|
89 ui.field.text{ attr = { style = "font-weight: bold;" }, value = "3rd party license information:" }
|
bsw/jbe@0
|
90 slot.put("<br />")
|
bsw/jbe@0
|
91 slot.put('The icons used in Liquid Feedback (except national flags) are from <a href="http://www.famfamfam.com/lab/icons/silk/">Silk icon set 1.3</a> by Mark James. His work is licensed under a <a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License.</a>')
|
bsw/jbe@0
|
92
|