diff options
author | Steven Barth <steven@midlink.org> | 2008-07-16 10:08:28 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-16 10:08:28 +0000 |
commit | 429473aed896a8f038d8934c8711a29366a894c5 (patch) | |
tree | 958d0b7459f644ee5ffd996acc7f14528292749f /modules/admin-mini/luasrc/view/mini | |
parent | 9b1ef9e2b1a9e318a2840ee4b846f7ca8d82d3bb (diff) |
applications/luci-fw: Added support for luci-mini
modules/admin-mini: Added portforwarding page, and UCI changes, apply and revert pages
Diffstat (limited to 'modules/admin-mini/luasrc/view/mini')
-rw-r--r-- | modules/admin-mini/luasrc/view/mini/uci_apply.htm | 20 | ||||
-rw-r--r-- | modules/admin-mini/luasrc/view/mini/uci_changes.htm | 26 | ||||
-rw-r--r-- | modules/admin-mini/luasrc/view/mini/uci_revert.htm | 19 |
3 files changed, 65 insertions, 0 deletions
diff --git a/modules/admin-mini/luasrc/view/mini/uci_apply.htm b/modules/admin-mini/luasrc/view/mini/uci_apply.htm new file mode 100644 index 000000000..e28094728 --- /dev/null +++ b/modules/admin-mini/luasrc/view/mini/uci_apply.htm @@ -0,0 +1,20 @@ +<%# +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><%:config%></h1> +<p><%:uci_applied%>:</p> +<code><%=(changes or "-")%> +<%=output%></code> +<%+footer%>
\ No newline at end of file diff --git a/modules/admin-mini/luasrc/view/mini/uci_changes.htm b/modules/admin-mini/luasrc/view/mini/uci_changes.htm new file mode 100644 index 000000000..09d8d3e7e --- /dev/null +++ b/modules/admin-mini/luasrc/view/mini/uci_changes.htm @@ -0,0 +1,26 @@ +<%# +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><%:config%></h1> +<h2><%:changes%></h2> +<code><%=changes%></code> +<br /><br /> +<form class="inline" method="get" action="<%=controller%>/admin/uci/apply"> + <input type="submit" value="<%:apply%>" /> +</form> +<form class="inline" method="get" action="<%=controller%>/admin/uci/revert"> + <input type="submit" value="<%:revert%>" /> +</form> +<%+footer%> diff --git a/modules/admin-mini/luasrc/view/mini/uci_revert.htm b/modules/admin-mini/luasrc/view/mini/uci_revert.htm new file mode 100644 index 000000000..7f98a0435 --- /dev/null +++ b/modules/admin-mini/luasrc/view/mini/uci_revert.htm @@ -0,0 +1,19 @@ +<%# +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><%:config%></h1> +<p><%:uci_reverted%>:</p> +<code><%=(changes or "-")%></code> +<%+footer%>
\ No newline at end of file |