From 6ca178a10dacfebe6ff336f09679e0599ac8d997 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 23 Jul 2009 03:38:15 +0000 Subject: [PATCH] luci-0.9: oops, luci-voice-core slipped through --- applications/luci-voice-core/Makefile | 4 -- .../luasrc/controller/luci_voice.lua | 37 ------------------- .../luasrc/view/luci_voice/index.htm | 24 ------------ .../luasrc/view/luci_voice/phone_index.htm | 20 ---------- 4 files changed, 85 deletions(-) delete mode 100644 applications/luci-voice-core/Makefile delete mode 100644 applications/luci-voice-core/luasrc/controller/luci_voice.lua delete mode 100644 applications/luci-voice-core/luasrc/view/luci_voice/index.htm delete mode 100644 applications/luci-voice-core/luasrc/view/luci_voice/phone_index.htm diff --git a/applications/luci-voice-core/Makefile b/applications/luci-voice-core/Makefile deleted file mode 100644 index d57c456d56..0000000000 --- a/applications/luci-voice-core/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -PO=voice_core - -include ../../build/config.mk -include ../../build/module.mk diff --git a/applications/luci-voice-core/luasrc/controller/luci_voice.lua b/applications/luci-voice-core/luasrc/controller/luci_voice.lua deleted file mode 100644 index 4d8873e9f5..0000000000 --- a/applications/luci-voice-core/luasrc/controller/luci_voice.lua +++ /dev/null @@ -1,37 +0,0 @@ ---[[ - -Luci Voice Core -(c) 2009 Daniel Dickinson - -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 - -]]-- - - -module("luci.controller.luci_voice", package.seeall) - -function index() - require("luci.i18n") - luci.i18n.loadc("voice_core") - - local e = entry({"admin", "voice"}, template("luci_voice/index") , luci.i18n.translate("l_v_adminvoice", "Voice"), 90) - e.index = true - e.i18n = "voice_core" - - e = entry({"mini", "voice"}, template("luci_voice/index"), luci.i18n.translate("l_v_minivoice", "Voice"), 90) - e.index = true - e.i18n = "voice_core" - - e = entry({"mini", "voice", "phones"}, template("luci_voice/phone_index"), luci.i18n.translate("l_v_miniphones"), 90) - e.index = true - e.i18n = "voice_core" - - e = entry({"admin", "voice", "phones"}, template("luci_voice/phone_index"), luci.i18n.translate("l_v_adminphones"), 90) - e.index = true - e.i18n = "voice_core" - -end diff --git a/applications/luci-voice-core/luasrc/view/luci_voice/index.htm b/applications/luci-voice-core/luasrc/view/luci_voice/index.htm deleted file mode 100644 index 73d2ce4466..0000000000 --- a/applications/luci-voice-core/luasrc/view/luci_voice/index.htm +++ /dev/null @@ -1,24 +0,0 @@ -<%# -LuCI - Lua Configuration Interface -(c) 2009 Daniel Dickinson - -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%> -

Voice

-

Here you can control OpenWRT voice-related settings and see - voice-related information from OpenWRT

-

In particular Asterisk configuration and information is displayed - here, as well as diagnostics that specifically apply to voice but are - not general networking diagnostics (e.g. includes SIP device scans, but not - ping tests). Includes PSTN phones as well as VoIP and possibly - non-telephony related options. -

-<%+footer%> diff --git a/applications/luci-voice-core/luasrc/view/luci_voice/phone_index.htm b/applications/luci-voice-core/luasrc/view/luci_voice/phone_index.htm deleted file mode 100644 index 89b866114a..0000000000 --- a/applications/luci-voice-core/luasrc/view/luci_voice/phone_index.htm +++ /dev/null @@ -1,20 +0,0 @@ -<%# -LuCI - Lua Configuration Interface -(c) 2009 Daniel Dickinson - -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%> -

Phones

-

Here you can control phone configuration and information in OpenWRT

-

You can control the setup of phone clients and servers and see - information such as diagnostics related to phone devices from this menu. -

-<%+footer%> -- 2.30.2