From 625abbfdbe94dada023ebd8ea69778173d1a7351 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 5 Feb 2020 16:51:19 +0100 Subject: treewide: convert simple Lua controllers to declarative JSON Signed-off-by: Jo-Philipp Wich --- applications/luci-app-p910nd/luasrc/controller/p910nd.lua | 15 --------------- .../root/usr/share/luci/menu.d/luci-app-p910nd.json | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 15 deletions(-) delete mode 100644 applications/luci-app-p910nd/luasrc/controller/p910nd.lua create mode 100644 applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json (limited to 'applications/luci-app-p910nd') diff --git a/applications/luci-app-p910nd/luasrc/controller/p910nd.lua b/applications/luci-app-p910nd/luasrc/controller/p910nd.lua deleted file mode 100644 index df47e9fd92..0000000000 --- a/applications/luci-app-p910nd/luasrc/controller/p910nd.lua +++ /dev/null @@ -1,15 +0,0 @@ --- Copyright 2008 Yanira --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.p910nd", package.seeall) - -function index() - if not nixio.fs.access("/etc/config/p910nd") then - return - end - - local page - - page = entry({"admin", "services", "p910nd"}, cbi("p910nd"), _("p910nd - Printer server"), 60) - page.dependent = true -end diff --git a/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json b/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json new file mode 100644 index 0000000000..33fcda6e49 --- /dev/null +++ b/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json @@ -0,0 +1,14 @@ +{ + "admin/services/p910nd": { + "title": "p910nd - Printer server", + "order": 60, + "action": { + "type": "cbi", + "path": "p910nd", + "post": { "cbi.submit": true } + }, + "depends": { + "uci": { "p910nd": true } + } + } +} -- cgit v1.2.3