From 36fa6575ed85c8106e5de0a553e4e6b1ce5e7db0 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 15 Feb 2012 21:04:22 +0000 Subject: themes: drop old Freifunk theme, unmaintained and redundant --- .../luasrc/view/themes/freifunk/footer.htm | 29 --- .../luasrc/view/themes/freifunk/header.htm | 209 --------------------- 2 files changed, 238 deletions(-) delete mode 100644 themes/freifunk/luasrc/view/themes/freifunk/footer.htm delete mode 100644 themes/freifunk/luasrc/view/themes/freifunk/header.htm (limited to 'themes/freifunk/luasrc/view') diff --git a/themes/freifunk/luasrc/view/themes/freifunk/footer.htm b/themes/freifunk/luasrc/view/themes/freifunk/footer.htm deleted file mode 100644 index 21d1ca68a3..0000000000 --- a/themes/freifunk/luasrc/view/themes/freifunk/footer.htm +++ /dev/null @@ -1,29 +0,0 @@ -<%# -LuCI - Lua Configuration Interface -Copyright 2008 Steven Barth -Copyright 2008 Jo-Philipp Wich - -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$ - --%> -
- - - - - -
-
- - - - - - - diff --git a/themes/freifunk/luasrc/view/themes/freifunk/header.htm b/themes/freifunk/luasrc/view/themes/freifunk/header.htm deleted file mode 100644 index 0580a1866a..0000000000 --- a/themes/freifunk/luasrc/view/themes/freifunk/header.htm +++ /dev/null @@ -1,209 +0,0 @@ -<%# -LuCI - Lua Configuration Interface -Copyright 2008 Steven Barth -Copyright 2008 Jo-Philipp Wich - -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 - --%> -<% - local sys = require "luci.sys" - local http = require "luci.http" - local disp = require "luci.dispatcher" - - local hostname = sys.hostname() - local load1, load5, load15 = sys.loadavg() - - local request = disp.context.path - local category = request[1] - local cattree = category and disp.node(category) - - local tree = disp.node() - local node = disp.context.dispatched - - local categories = disp.node_childs(tree) - - local c = tree - local i, r - - -- tag all nodes leading to this page - for i, r in ipairs(request) do - if c.nodes and c.nodes[r] then - c = c.nodes[r] - c._menu_selected = true - end - end - - http.prepare_content("text/html") --%> - - - - - - - <% if node and node.css then %><% end %> - - - - - <%=striptags( hostname .. ( (node and node.title) and ' - ' .. translate(node.title) or '')) %> - LuCI - - - - -
-
- -
-<%- if luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%> -
- <%:No password set!%>
- <%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%> -
-<%- end -%> -
- - - - -
-<%:Path%>: -<% - local c = tree - local url = controller - for i, r in ipairs(request) do - if c.nodes and c.nodes[r] then - c = c.nodes[r] - url = url .. "/" .. r -%> - <%=pcdata(striptags(translate(c.title) or v))%> - <% if k ~= #request then %> » <% end %> -<% - end - end -%> -
- - - - <% if #categories > 1 then %> -
-
    - <% for i, r in ipairs(categories) do %> -
  • href="<%=controller%>/<%=r%>/"><%=striptags(translate(tree.nodes[r].title))%>
  • - <% end %> -
-
- <% end %> - - <% - if tree.nodes[category] and tree.nodes[category].ucidata then - local ucic = 0 - - for i, j in pairs(require("luci.model.uci").cursor():changes()) do - for k, l in pairs(j) do - for m, n in pairs(l) do - ucic = ucic + 1; - end - end - end - %> - - <% end %> - -
-
-
-<% if category ~= "freifunk" and category ~= "splash" then %> - -<%end%> -- cgit v1.2.3