diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-12-03 15:17:05 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-08 16:26:20 +0100 |
commit | 1bb4822dca6113f73e3bc89e2acf15935e6f8e92 (patch) | |
tree | 35e16f100466e4e00657199b38bb3d87d52bf73f /applications/luci-ltqtapi/luasrc/view | |
parent | 9edd0e46c3f880727738ce8ca6ff1c8b85f99ef4 (diff) |
Rework LuCI build system
* Rename subdirectories to their repective OpenWrt package names
* Make each LuCI module its own standalone package
* Deploy a shared luci.mk which is used by each module Makefile
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'applications/luci-ltqtapi/luasrc/view')
-rw-r--r-- | applications/luci-ltqtapi/luasrc/view/admin_status/index/telephony.htm | 1 | ||||
-rw-r--r-- | applications/luci-ltqtapi/luasrc/view/telephony_status.htm | 32 |
2 files changed, 0 insertions, 33 deletions
diff --git a/applications/luci-ltqtapi/luasrc/view/admin_status/index/telephony.htm b/applications/luci-ltqtapi/luasrc/view/admin_status/index/telephony.htm deleted file mode 100644 index c7a58dd3ea..0000000000 --- a/applications/luci-ltqtapi/luasrc/view/admin_status/index/telephony.htm +++ /dev/null @@ -1 +0,0 @@ -<%+telephony_status%> diff --git a/applications/luci-ltqtapi/luasrc/view/telephony_status.htm b/applications/luci-ltqtapi/luasrc/view/telephony_status.htm deleted file mode 100644 index 234f909342..0000000000 --- a/applications/luci-ltqtapi/luasrc/view/telephony_status.htm +++ /dev/null @@ -1,32 +0,0 @@ -<script type="text/javascript">//<![CDATA[ -XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "telephony", "status")%>', null, - function(x, st) - { - var tb = document.getElementById('telephony_status_table'); - if (st && tb) - { - tb.deleteRow(1); - var tr = tb.insertRow(-1); - tr.className = 'cbi-section-table-row cbi-rowstyle-1'; - - tr.insertCell(-1).innerHTML = st.status; - tr.insertCell(-1).innerHTML = st.line1; - tr.insertCell(-1).innerHTML = st.line2; - } - } -); -//]]></script> - -<fieldset class="cbi-section"> - <legend><%:Current Telephony State%></legend> - <table class="cbi-section-table" id="telephony_status_table"> - <tr class="cbi-section-table-titles"> - <th class="cbi-section-table-cell"><%:Uplink%></th> - <th class="cbi-section-table-cell"><%:Port1%></th> - <th class="cbi-section-table-cell"><%:Port2%></th> - </tr> - <tr class="cbi-section-table-row"> - <td colspan="5"><em><br /><%:Collecting data...%></em></td> - </tr> - </table> -</fieldset> |