diff options
author | Steven Barth <steven@midlink.org> | 2008-06-09 08:48:10 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-06-09 08:48:10 +0000 |
commit | 2bf012a40a7a6d0d35b5d61269fd1bafcdf527d6 (patch) | |
tree | 66983500186af71eb57ad2af81f059de567c5846 | |
parent | 64806f32bea453b9a6fc5c4cf4c4b751a749e369 (diff) |
* themes/fledermaus: Register on install
* applications/luci-statistics: Fixed wrong paths in templates
6 files changed, 13 insertions, 4 deletions
diff --git a/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm b/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm index e88ca7f58..c211a3951 100644 --- a/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm +++ b/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm @@ -9,7 +9,7 @@ about open tcp connections, interface traffic, iptables rules etc.%></p> <ul> <% for plugin, desc in pairs(plugins) do %> <% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %> - <li><a href="/cgi-bin/luci/admin/statistics/network/<%=plugin%>"><%=desc%></a></li> + <li><a href="<%=controller%>/admin/statistics/collectd/network/<%=plugin%>"><%=desc%></a></li> <% end %> <% end %> </ul> diff --git a/applications/luci-statistics/luasrc/view/admin_statistics/outputplugins.htm b/applications/luci-statistics/luasrc/view/admin_statistics/outputplugins.htm index c7945f16e..c2f36f2b8 100644 --- a/applications/luci-statistics/luasrc/view/admin_statistics/outputplugins.htm +++ b/applications/luci-statistics/luasrc/view/admin_statistics/outputplugins.htm @@ -10,7 +10,7 @@ and to transmit the data over the network to other collectd instances.%></p> <ul> <% for plugin, desc in pairs(plugins) do %> <% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %> - <li><a href="/cgi-bin/luci/admin/statistics/output/<%=plugin%>"><%=desc%></a></li> + <li><a href="<%=controller%>/admin/statistics/collectd/output/<%=plugin%>"><%=desc%></a></li> <% end %> <% end %> </ul> diff --git a/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm b/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm index 8c1f714e6..dcedea6b8 100644 --- a/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm +++ b/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm @@ -6,7 +6,7 @@ <ul> <% for plugin, desc in pairs(plugins) do %> <% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %> - <li><a href="/cgi-bin/luci/admin/statistics/system/<%=plugin%>"><%=desc%></a></li> + <li><a href="<%=controller%>/admin/statistics/collectd/system/<%=plugin%>"><%=desc%></a></li> <% end %> <% end %> </ul> diff --git a/libs/web/root/etc/config/luci b/libs/web/root/etc/config/luci index 0b05d8439..3e1e7db4f 100644 --- a/libs/web/root/etc/config/luci +++ b/libs/web/root/etc/config/luci @@ -41,4 +41,3 @@ config internal template config internal themes option OpenWRT "/luci-static/openwrt.org" - option Fledermaus "/luci-static/fledermaus" diff --git a/themes/fledermaus/ipkg/postinst b/themes/fledermaus/ipkg/postinst new file mode 100755 index 000000000..1951df576 --- /dev/null +++ b/themes/fledermaus/ipkg/postinst @@ -0,0 +1,4 @@ +#!/bin/sh +[ -n "${IPKG_INSTROOT}" ] || { + ( . /etc/uci-defaults/luci-theme-fledermaus ) && rm -f /etc/uci-defaults/luci-theme-fledermaus +} diff --git a/themes/fledermaus/root/etc/uci-defaults/luci-theme-fledermaus b/themes/fledermaus/root/etc/uci-defaults/luci-theme-fledermaus new file mode 100755 index 000000000..83e472b63 --- /dev/null +++ b/themes/fledermaus/root/etc/uci-defaults/luci-theme-fledermaus @@ -0,0 +1,6 @@ +#!/bin/sh +uci batch <<-EOF + set luci.themes.Fledermaus=/luci-static/fledermaus + commit luci +EOF + |