X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=applications%2Fluci-app-transmission%2Fluasrc%2Fcontroller%2Ftransmission.lua;fp=applications%2Fluci-app-transmission%2Fluasrc%2Fcontroller%2Ftransmission.lua;h=2c4df46b7c5cfc0a9dceec0ead7406fa8422db82;hp=0000000000000000000000000000000000000000;hb=1bb4822dca6113f73e3bc89e2acf15935e6f8e92;hpb=9edd0e46c3f880727738ce8ca6ff1c8b85f99ef4 diff --git a/applications/luci-app-transmission/luasrc/controller/transmission.lua b/applications/luci-app-transmission/luasrc/controller/transmission.lua new file mode 100644 index 000000000..2c4df46b7 --- /dev/null +++ b/applications/luci-app-transmission/luasrc/controller/transmission.lua @@ -0,0 +1,25 @@ +--[[ +LuCI - Lua Configuration Interface - Transmission support + +Copyright 2012 Gabor Varga + +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.transmission", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/transmission") then + return + end + + local page = entry({"admin", "services", "transmission"}, cbi("transmission"), _("Transmission")) + page.dependent = true + +end