diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-11-05 23:05:09 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-11-05 23:05:09 +0000 |
commit | 6d31daf97e8a3e5158901271c10c57633cd4366f (patch) | |
tree | a2fa6680699020adbe426f6908abdfc70220fb48 /applications/luci-polipo/luasrc/controller | |
parent | 7651fd78f055c0f6373027d5dae1f2ce9e8db4c3 (diff) |
* luci/applications: add polipo proxy support
Diffstat (limited to 'applications/luci-polipo/luasrc/controller')
-rw-r--r-- | applications/luci-polipo/luasrc/controller/polipo.lua | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/applications/luci-polipo/luasrc/controller/polipo.lua b/applications/luci-polipo/luasrc/controller/polipo.lua new file mode 100644 index 0000000000..c3965ee2e0 --- /dev/null +++ b/applications/luci-polipo/luasrc/controller/polipo.lua @@ -0,0 +1,28 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2008 Aleksandar Krsteski <alekrsteski@gmail.com> + +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.polipo", package.seeall) + +function index() + if not luci.fs.isfile("/etc/config/polipo") then + return + end + + require("luci.i18n") + luci.i18n.loadc("polipo") + local i18n = luci.i18n.translate + + local p = entry({"admin", "services", "polipo"}, cbi("polipo"), i18n("polipo", "Polipo")) + p.dependent = true + p.i18n = "polipo" +end |