From ec5e336e553d3cbefe7274437cd1838494913529 Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Sun, 31 Oct 2021 09:27:13 +0100 Subject: luci-app-rosy-file-server: drop This package was marked as broken [1], so it's time to remove it. As package rosy-file-server will be dropped soon [2]. Reasons: 1. it's broken (and package requires LuCI, which was marked as broken, thus it is useless) 2. maintainer is inactive 3. maintainer's company does not seem to work. [1] https://github.com/openwrt/luci/commit/34b682afac310859f0d4696110d8a1af60f16c04 [2] https://github.com/openwrt/packages/pull/17031 Signed-off-by: Josef Schlehofer --- .../luasrc/model/cbi/rosy-file-server/rosyfs.lua | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosyfs.lua (limited to 'applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosyfs.lua') diff --git a/applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosyfs.lua b/applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosyfs.lua deleted file mode 100644 index 51efa9e814..0000000000 --- a/applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosyfs.lua +++ /dev/null @@ -1,26 +0,0 @@ --- Copyright 2019 Rosy Song --- Licensed to the public under the Apache License 2.0. - -local uci = require("luci.model.uci").cursor() -local dis = uci:get("rosyfs", "default", "disabled") -local tgt = uci:get("rosyfs", "default", "target") -local tlt = uci:get("rosyfs", "default", "title") - -m = Map("rosyfs", translate("Rosy File Server Settings")) - -s = m:section(TypedSection, "rosyfs", nil) -s.addremove = false -s.anonymous = true - -e = s:option(Flag, "disabled", translate("Disable"), translate("Disable Rosy File Server")) -e.default = dis or e.disabled -e.rmempty = false - -a = s:option(Value, "target", translate("Target"), translate("Specify path to be mapped")) -a.default = tgt or "/www" -a.datatype = "directory" - -t = s:option(Value, "title", translate("Title"), translate("Title to be shown")) -t.default = tlt or "Rosy File Server" - -return m -- cgit v1.2.3