diff options
author | Steven Barth <steven@midlink.org> | 2008-08-14 17:16:56 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-14 17:16:56 +0000 |
commit | d915e6e1d7421f366ca61bf081b6ca0d29945ec1 (patch) | |
tree | cbf7b67aafa6e191669d1eff71f1925499c8b5f8 /modules/admin-full/luasrc/view | |
parent | f5ea976058f1de8d8ddb1eb1fcf3d12c8b6fa846 (diff) |
Converted IPKG configuration to CBI model
Removed abandoned code
Diffstat (limited to 'modules/admin-full/luasrc/view')
-rw-r--r-- | modules/admin-full/luasrc/view/admin_system/editor.htm | 28 | ||||
-rw-r--r-- | modules/admin-full/luasrc/view/admin_system/ipkg.htm | 30 |
2 files changed, 4 insertions, 54 deletions
diff --git a/modules/admin-full/luasrc/view/admin_system/editor.htm b/modules/admin-full/luasrc/view/admin_system/editor.htm deleted file mode 100644 index bac1729d04..0000000000 --- a/modules/admin-full/luasrc/view/admin_system/editor.htm +++ /dev/null @@ -1,28 +0,0 @@ -<%# -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%> -<h1><%:texteditor%></h1> -<form method="post" action="<%=controller%>/admin/system/editor"> -<div><%:file%>: <input type="text" name="file" size="30" value="<%=fn%>" /> -<% if msg then %><span class="error"><%:error%>: <%=msg%></span><% end %></div> -<br /> -<div><textarea style="width: 100%" rows="20" name="data"><%=cnt%></textarea></div> -<br /> -<div> - <input type="submit" value="<%:save%>" /> - <input type="reset" value="<%:reset%>" /> -</div> -</form> -<%+footer%>
\ No newline at end of file diff --git a/modules/admin-full/luasrc/view/admin_system/ipkg.htm b/modules/admin-full/luasrc/view/admin_system/ipkg.htm index 0cd87d990b..7f6c0fb897 100644 --- a/modules/admin-full/luasrc/view/admin_system/ipkg.htm +++ b/modules/admin-full/luasrc/view/admin_system/ipkg.htm @@ -12,29 +12,7 @@ You may obtain a copy of the License at $Id$ -%> -<%+header%> -<h1><%:system%></h1> -<h2><%:a_s_p_ipkg%></h2> - -<br /> - -<div><strong><%:a_s_p_ipkg_pkglists%>:</strong><code>src <em>Name</em> <em>URL</em></code></div> -<div><strong><%:a_s_p_ipkg_targets%>:</strong><code>dest <em>Name</em> <em>Pfad</em></code></div> - -<br /> - -<form method="post" action="<%=REQUEST_URI%>"> - <div class="cbi-section-node" style="width: 100%"> - <div class="cbi-value"> - <div class="cbi-value-field"> - <textarea style="width: 100%" rows="10" name="data"><%=cnt%></textarea> - </div> - </div> - </div> - <div> - <input type="submit" value="<%:save%>" /> - <input type="reset" value="<%:reset%>" /> - </div> - <% if msg then %><br /><div class="error"><%:error%>: <%=msg%></div><% end %> -</form> -<%+footer%>
\ No newline at end of file +<ul> +<li><strong><%:a_s_p_ipkg_pkglists%>:</strong> <code>src <em>Name</em> <em>URL</em></code></li> +<li><strong><%:a_s_p_ipkg_targets%>:</strong> <code>dest <em>Name</em> <em>Pfad</em></code></li> +</ul> |