summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-freifunk/luasrc/view/freifunk/index.htm
blob: 0fcec45971a1f2b6022b6d6fc21846e505adb1b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<%#
LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org>
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

	http://www.apache.org/licenses/LICENSE-2.0

$Id$

-%>
<%+header%>
<% 
local uci = require "luci.model.uci".cursor()
local tpl = require "luci.template"
local fs = require "luci.fs"
local ff = {}
local ff = uci:get_all("freifunk")

if not ff or not ff.community.name then
	community = "Freifunk"
	DefaultText = ""
	nickname = "No Nickname set"
else
	community = ff.community.name
	DefaultText = ff.community.DefaultText
	nickname = ff.contact.nickname
end

local co = "profile_" .. community
--local community = uci:get_first(co, "community", "name") or "Freifunk"
local url = uci:get_first(co, "community", "homepage") or "http://www.freifunk.net"


local usertext = fs.readfile("/www/luci-static/index_user.html")

if DefaultText ~= "disabled" then

	defaulttext = '<h2><a id="content" name="content">'..
	(translate("Hello and welcome in the network of"))..
	' '..
	(community or "Freifunk Deutschland")..
	'!</a></h2><p>'..
	translate("We are an initiative to establish a free, independent and open wireless mesh network.")..
	'<br />'..
	translate("This is the access point")..
	' '..
	luci.sys.hostname()..
	'. '..
	translate("It is operated by")..
	' <a href="'..
	luci.dispatcher.build_url("freifunk", "contact")..
	'">'..
	(nickname or translate("Please set your contact information"))..
	'</a>.</p><p>'..
	translate("You can find further information about the global Freifunk initiative at")..
	' <a href="http://freifunk.net">Freifunk.net</a>.<br />'..
	translate("If you are interested in our project then contact the local community")..
	' <a href="'..url..'">'..community..'</a>.</p><p><strong>'..
	translate("Notice")..
	'</strong>: '..
	translate("Internet access depends on technical and organisational conditions and may or may not work for you.")..
	'</p>'
end
%>

<%=defaulttext%>
<%=usertext%>

<%
-- add custom widgets from view/freifunk/widgets
local widgets = {}
local dir = "/usr/lib/lua/luci/view/freifunk/widgets"

uci:foreach("freifunk-widgets", "widget",
			function(s)
				if s.enabled == "1" then
					table.insert(widgets, s)
				end
			end)

for k, v in ipairs(widgets) do
	if v['template'] and fs.access(dir .. "/" .. v['template'] .. "/main.htm") then
		tpl.render("freifunk/widgets/" .. v['template'] .. "/main", { data = v })
	end
end

%>
<%+footer%>