X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=modules%2Fadmin-core%2Fluasrc%2Fcontroller%2Fadmin%2Fnetwork.lua;fp=modules%2Fadmin-core%2Fluasrc%2Fcontroller%2Fadmin%2Fnetwork.lua;h=0000000000000000000000000000000000000000;hp=871263334a94ffe505c10dd0ca6605de0db04031;hb=97ff4a156ff1aa6a4d2ab65ab13d12b4eb2651e2;hpb=4d7c453ea83c749b05d6271a3bdc0c0c057150ed diff --git a/modules/admin-core/luasrc/controller/admin/network.lua b/modules/admin-core/luasrc/controller/admin/network.lua deleted file mode 100644 index 871263334..000000000 --- a/modules/admin-core/luasrc/controller/admin/network.lua +++ /dev/null @@ -1,49 +0,0 @@ ---[[ -LuCI - Lua Configuration Interface - -Copyright 2008 Steven Barth - -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$ -]]-- -module("luci.controller.admin.network", package.seeall) - -function index() - require("luci.i18n") - local i18n = luci.i18n.translate - - local page = node("admin", "network") - page.target = template("admin_network/index") - page.title = i18n("network", "Netzwerk") - page.order = 50 - - local page = node("admin", "network", "vlan") - page.target = cbi("admin_network/vlan") - page.title = i18n("a_n_switch", "Switch") - page.order = 10 - - local page = node("admin", "network", "ifaces") - page.target = cbi("admin_network/ifaces") - page.title = i18n("interfaces", "Schnittstellen") - page.order = 20 - - local page = node("admin", "network", "dhcp") - page.target = cbi("admin_network/dhcp") - page.title = "DHCP" - page.order = 30 - - local page = node("admin", "network", "ptp") - page.target = cbi("admin_network/ptp") - page.title = "PPPoE / PPTP" - page.order = 40 - - local page = node("admin", "network", "routes") - page.target = cbi("admin_network/routes") - page.title = i18n("a_n_routes", "Routen") - page.order = 50 -end \ No newline at end of file