Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-12-08 03:50:57 +0300
committerJo-Philipp Wich <jow@openwrt.org>2008-12-08 03:50:57 +0300
commite96f31f5a68a6c8c0841946ccbae9d1b09826adc (patch)
tree6afafd7d497394a7e723bba8248185405b8f6304
parentfec342ee9f30c79a5f68b51c3af40655007650d7 (diff)
tags/v0.8.2: add missing polipo0.8.2
-rw-r--r--applications/luci-polipo/Makefile2
-rwxr-xr-xapplications/luci-polipo/ipkg/postinst4
-rw-r--r--applications/luci-polipo/luasrc/controller/polipo.lua28
-rw-r--r--applications/luci-polipo/luasrc/i18n/polipo.en.lua43
-rw-r--r--applications/luci-polipo/luasrc/model/cbi/polipo.lua67
-rw-r--r--applications/luci-polipo/root/etc/uci-defaults/luci-polipo7
-rwxr-xr-xapplications/luci-polipo/root/usr/sbin/polipo_purge18
7 files changed, 169 insertions, 0 deletions
diff --git a/applications/luci-polipo/Makefile b/applications/luci-polipo/Makefile
new file mode 100644
index 0000000000..f7fac7740e
--- /dev/null
+++ b/applications/luci-polipo/Makefile
@@ -0,0 +1,2 @@
+include ../../build/config.mk
+include ../../build/module.mk
diff --git a/applications/luci-polipo/ipkg/postinst b/applications/luci-polipo/ipkg/postinst
new file mode 100755
index 0000000000..16408879a1
--- /dev/null
+++ b/applications/luci-polipo/ipkg/postinst
@@ -0,0 +1,4 @@
+#!/bin/sh
+[ -n "${IPKG_INSTROOT}" ] || {
+ ( . /etc/uci-defaults/luci-polipo ) && rm -f /etc/uci-defaults/luci-polipo
+}
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
diff --git a/applications/luci-polipo/luasrc/i18n/polipo.en.lua b/applications/luci-polipo/luasrc/i18n/polipo.en.lua
new file mode 100644
index 0000000000..23b18363c7
--- /dev/null
+++ b/applications/luci-polipo/luasrc/i18n/polipo.en.lua
@@ -0,0 +1,43 @@
+polipo = 'Polipo'
+polipo_cache = 'On-Disk Cache'
+polipo_cache_cacheisshared = 'Shared cache'
+polipo_cache_cacheisshared_desc = 'Enable if cache (proxy) is shared by multiple users.'
+polipo_cache_desc = 'To enable polipo on-disk cache cleaning (highly recommended), you should add a cron job in Scheduled Tasks services that will execute /usr/sbin/polipo_purge script. For example to perform disk cache cleanup every day at 6:00 in the morning you should add the following line in Scheduled Tasks &quot;0 6 * * * /usr/sbin/polipo_purge&quot; (without quotes).'
+polipo_cache_diskcacheroot = 'Disk cache location'
+polipo_cache_diskcacheroot_desc = 'Location where polipo will cache files permanently. Use of external storage devices is recommended, because the cache can grow considerably. Leave it empty to disable on-disk cache.'
+polipo_cache_diskcachetruncatesize = 'Truncate cache files size (in bytes)'
+polipo_cache_diskcachetruncatesize_desc = 'Size to which cached files should be truncated. (default value: 1048576)'
+polipo_cache_diskcachetruncatetime = 'Truncate cache files time'
+polipo_cache_diskcachetruncatetime_desc = 'Time after which cached files will be truncated. (default value: 4d12h)'
+polipo_cache_diskcacheunlinktime = 'Delete cache files time'
+polipo_cache_diskcacheunlinktime_desc = 'Time after which cached files will be deleted. (default value: 32d)'
+polipo_desc = 'Polipo is a small and fast caching web proxy.'
+polipo_general = 'General'
+polipo_general_allowedclients = 'Allowed clients'
+polipo_general_allowedclients_desc = 'When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients that are allowed to connect. The format is IP address or network address (192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6)).'
+polipo_general_chunkhighmark = 'In RAM cache size (in bytes)'
+polipo_general_chunkhighmark_desc = 'How much RAM should Polipo use for its cache.'
+polipo_general_dnsnameserver = 'DNS server address'
+polipo_general_dnsnameserver_desc = 'Set the DNS server address to use, if you want Polipo to use different DNS server than the host system.'
+polipo_general_dnsqueryipv6 = 'Query DNS for IPv6'
+polipo_general_dnsqueryipv6_desc = 'false = Do not query IPv6; reluctantly = Query both, prefer IPv4; happily = Query both, prefer IPv6; true = Query only IPv6'
+polipo_general_dnsusegethostbyname = 'Query DNS by hostname'
+polipo_general_dnsusegethostbyname_desc = 'false = Never use system DNS resolver; reluctantly = Query DNS directly, if DNS server is unavailable fail to system DNS resolver; happily = Query DNS directly, if host could not be found fallback to system DNS resolver; true = Always use system DNS resolver'
+polipo_general_logfacility = 'Syslog facility'
+polipo_general_logfile = 'Log file location'
+polipo_general_logfile_desc = 'Use of external storage device is recommended, because the log file is written frequently and can grow considerably.'
+polipo_general_logsyslog = 'Log to syslog'
+polipo_general_parentauthcredentials = 'Parent proxy authentication'
+polipo_general_parentauthcredentials_desc = 'Basic HTTP authentication supported. Provide username and password in username:password format.'
+polipo_general_parentproxy = 'Parent proxy address'
+polipo_general_parentproxy_desc = 'Parent proxy address (in host:port format), to which Polipo will forward the requests.'
+polipo_general_proxyaddress = 'Listen address'
+polipo_general_proxyaddress_desc = 'The interface on which Polipo will listen. To listen on all interfaces use 0.0.0.0 or :: (IPv6).'
+polipo_general_proxyport = 'Listen port'
+polipo_general_proxyport_desc = 'Port on which Polipo will listen. (default value: 8123)'
+polipo_pmm = 'Poor Man&#39;s Multiplexing'
+polipo_pmm_desc = 'Poor Man&#39;s Multiplexing (PMM) is a technique that simulates multiplexing by requesting an instance in multiple segments. It tries to lower the latency caused by the weakness of HTTP protocol. NOTE: some sites may not work with PMM enabled.'
+polipo_pmm_pmmfirstsize = 'First PMM segment size (in bytes)'
+polipo_pmm_pmmfirstsize_desc = 'Size of the first PMM segment. If not defined, it defaults to twice the PMM segment size.'
+polipo_pmm_pmmsize = 'PMM segments size (in bytes)'
+polipo_pmm_pmmsize_desc = 'To enable PMM, PMM segment size must be set to some positive value.'
diff --git a/applications/luci-polipo/luasrc/model/cbi/polipo.lua b/applications/luci-polipo/luasrc/model/cbi/polipo.lua
new file mode 100644
index 0000000000..81cfa50de2
--- /dev/null
+++ b/applications/luci-polipo/luasrc/model/cbi/polipo.lua
@@ -0,0 +1,67 @@
+--[[
+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$
+]]--
+m = Map("polipo")
+
+-- General section
+s = m:section(NamedSection, "general", "polipo")
+
+-- General settings
+s:option(Flag, "enabled", translate("enable"))
+s:option(Value, "proxyAddress")
+s:option(Value, "proxyPort").optional = true
+s:option(DynamicList, "allowedClients")
+s:option(Flag, "logSyslog")
+s:option(Value, "logFacility"):depends("logSyslog", "1")
+v = s:option(Value, "logFile")
+v:depends("logSyslog", "")
+v.rmempty = true
+s:option(Value, "chunkHighMark")
+
+-- DNS and proxy settings
+s:option(Value, "dnsNameServer").optional = true
+s:option(Value, "parentProxy").optional = true
+s:option(Value, "parentAuthCredentials").optional = true
+l = s:option(ListValue, "dnsQueryIPv6")
+l.optional = true
+l.default = "happily"
+l:value("")
+l:value("true")
+l:value("reluctantly")
+l:value("happily")
+l:value("false")
+l = s:option(ListValue, "dnsUseGethostbyname")
+l.optional = true
+l.default = "reluctantly"
+l:value("")
+l:value("true")
+l:value("reluctantly")
+l:value("happily")
+l:value("false")
+
+-- Dsik cache section
+s = m:section(NamedSection, "cache", "polipo")
+
+-- Dsik cache settings
+s:option(Value, "diskCacheRoot").rmempty = true
+s:option(Flag, "cacheIsShared")
+s:option(Value, "diskCacheTruncateSize").optional = true
+s:option(Value, "diskCacheTruncateTime").optional = true
+s:option(Value, "diskCacheUnlinkTime").optional = true
+
+-- Poor man's multiplexing section
+s = m:section(NamedSection, "pmm", "polipo")
+s:option(Value, "pmmSize").rmempty = true
+s:option(Value, "pmmFirstSize").optional = true
+
+return m
diff --git a/applications/luci-polipo/root/etc/uci-defaults/luci-polipo b/applications/luci-polipo/root/etc/uci-defaults/luci-polipo
new file mode 100644
index 0000000000..8a033f8c35
--- /dev/null
+++ b/applications/luci-polipo/root/etc/uci-defaults/luci-polipo
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+uci batch <<-EOF
+ add ucitrack polipo
+ set ucitrack.@polipo[-1].init=polipo
+ commit ucitrack
+EOF
diff --git a/applications/luci-polipo/root/usr/sbin/polipo_purge b/applications/luci-polipo/root/usr/sbin/polipo_purge
new file mode 100755
index 0000000000..ce7c88559b
--- /dev/null
+++ b/applications/luci-polipo/root/usr/sbin/polipo_purge
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+DAEMON=/usr/sbin/polipo
+PIDFILE=`uci get polipo.daemon.pidFile`
+CFGFILE=/var/etc/polipo.conf
+
+[ -e "$PIDFILE" ] && {
+ PID=`cat $PID_FILE`
+
+ # send Polipo USR1 signal to write its in-memory cache to disk
+ kill -USR1 $PID
+ sleep 2
+ # start polipo with -x flag to purge the on-disk cache
+ polipo -c $CFGFILE -x
+ # send Polipo USR2 signal to discard its in-memory cache
+ kill -USR2 $PID
+}
+