summaryrefslogtreecommitdiffhomepage
path: root/applications
AgeCommit message (Collapse)Author
2015-08-31Merge pull request #393 from nmav/no-group-matchHannu Nyman
luci-app-ocserv: list users with no group
2015-08-30statistics: remove references to Lucid from scriptsHannu Nyman
Both init.d and uci-defaults scripts included in luci-app-statistics still contained stuff related to lucid, which package was removed by https://github.com/openwrt/luci/commit/91b97bc9f625d09431dc1c753209a037d7c42fbc Changes to scripts: * init.d: lucid reference removed, /var/etc creation moved earlier (before first possible use) * uci-defaults: lucid parameters & restart removed (but busybox httpd stuff was left intact, although it might be unnecessary) Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-30Merge pull request #456 from hnyman/stat-confighnyman
statistics: cleanup default configuration
2015-08-29luci-app-multiwan: mark broken as it depends on multiwan from oldpackagesHannu Nyman
Mark luci-app-multiwan @BROKEN, as it depends on the old 'multiwan' package, located in the deprecated 'oldpackages' feed. 'packages' feed contains both 'mwan3' and 'luci-app-mwan3' apps that have superseded the old packages. This should fix #395. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-29statistics: adjust default settings to match default pluginsHannu Nyman
Adjust default settings to match the plugins installed by default (default plugins: iwinfo, interface, load) * disable plugins not installed by default to avoid error messages at start * remove references to Freifunk interfaces, as most users do not have those Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-29statistics: cleanup config fileHannu Nyman
No functional changes, but the file is reorganised: * group settings: general settings / output plugins / input plugins * sort settings inside a group * remove quotes from option names to match the current uci behaviour * whitespace corrections Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-28statistics: clarify CPU/processor graph by removing "idle" from itHannu Nyman
Clarify the CPU time consumption graph by removing the "idle" data from it. Especially with light traffic, removing "idle" enables the graph to scale better and to properly show the CPU load variations. If "idle" data needs to be seen, it might be added as a second graph below. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-28statistics: clarify stats introductionHannu Nyman
* Clarify the short explanation on the statistics section's front page. * Mention the possibility of additional collectd plugins to get more stats. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-28statistics: entropy plugin - fix placement of entropy.luaHannu Nyman
Move the file entropy.lua to the correct directory. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-28Merge pull request #451 from hnyman/fw-zone-lenChristian Schoenebeck
luci-app-firewall: validate zone name to enforce fw3 max. length
2015-08-27statistics: Add support for entropy statsHannu Nyman
Add statistics on the available entropy. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-26firewall: validate max length of zone nameHannu Nyman
fw3 sets the maximum length of the zone name to 14 and ignores zone definitions with too long names. http://nbd.name/gitweb.cgi?p=firewall3.git;a=blob;f=zones.h;hb=HEAD#l25 http://nbd.name/gitweb.cgi?p=firewall3.git;a=blob;f=zones.c;hb=HEAD#l195 Add a simple validation to ensure that the new zone name is short enough. This should fix issue #345 Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-24Merge pull request #448 from hnyman/cpulabelChristian Schoenebeck
statistics: cpu graph - add label definitions, add softirq and interrupt stats
2015-08-23statistics: memory plugin - improve graph by better scaling of y-axisHannu Nyman
Utilise alt_autoscale_max to make the memory chart y-axis to scale better for devices with e.g. 128 MB RAM. Also fix the axis min value to 0. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-23statistics: support rrdtool's alt_autoscale and alt_autoscale_max optionsHannu Nyman
Implement support for alternative scaling of the y-axis. By default, rrdtool will autoscale to 1,2,5,10,20,50,100,200,... etc., which is not always suitable (e.g. memory charts for device with 128 MB). Rrdtool 1.0.50 already supports alternative autoscaling that creates a tighter y-axis. Implement graph-level options in Luci statistics to support those boolean options as "alt_autoscale" and "alt_autoscale_max". info at http://oss.oetiker.ch/rrdtool/doc/rrdgraph.en.html Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-23statistics: cpu graph - add label definitions, add softirq and interrupt statsHannu Nyman
CPU plugin in the Luci statistics was missing the label definitions, so the field labels are like "cpu_system" instead of "System". Add proper label definitions to CPU (like the other plugins already have). The statistics graph was also missing softirq and interrupt stats, although colors for them were defined. Softirq consumes massive amount of CPU especially with any qos in use, so it is important for the user to see also that data. Add both softirq and interrupt stats to the graph. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-22Enable setting --script-security in client mode.Srdjan Rosic
This is useful in client mode as well, since it allows one to use --route-noexec and --up <cmd> or --route-up <cmd> to create routes manually instead of relying on whatever routes vpn server pushes down to the client. mode=server dependency in luci was introduced together with script_security by mmunz back in 2011.with no explanation in the commit why mode=server was there.
2015-08-19statistics: fix ping graph label regressionHannu Nyman
Earlier update to collectd 5.4.1 changed the field from "ping" to "value", which was changed in the graph definition here, but the label definition was forgotten. Field's label now reads "ping_IPaddr_value". Correct the label definition to show only IPaddr like the other two graphs. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-08-18statistics: fix conntrack regression caused by collectd 5.5.0Hannu Nyman
Collectd 5.5.0 introduced new data to conntrack plugin: In addition to the number of tracked connections there is also the static max conntrack value and the calculated use percentage. Luci's conntrack plugin intrepretes "conntrack-max" as a new data instance and includes it in the graph in addition to the real "conntrack" number. Eliminate "max" from graph by specifying empty "" instance as data source. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-07-23luci-app-shadowsocks-libev: update packageJian Chang
support for shadowsocks-libev v2.2.3 Signed-off-by: Jian Chang <aa65535@live.com>
2015-07-12luci-app-vnstat: Fix blank graphs for iface names with underscoresMichael Marley
The regex used to process the iface query string argument in vnstat.htm was stripping underscores, which caused the graph not to display for interfaces with names containing underscores. This patch adds the underscore to that regex so that the interface name will be correct and the graph will be displayed. Signed-off-by: Michael Marley <michael@michaelmarley.com>
2015-07-03luci-app-shadowsocks-libev: add packageJian Chang
This adds support for configuring shadowsocks-libev Signed-off-by: Jian Chang <aa65535@live.com>
2015-06-22Delete luci-upnpkdarbyshirebryant
Stop sys upgrade automatically disabling miniupnpd on first boot after upgrade. I spent a lot of time tracking this behaviour down which only occurs if you have luci-app-upnp installed.
2015-06-16luci-app-olsr: depend on luci-lib-jsonDaniel Golle
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-16Merge pull request #414 from maz-1/mjpg-updateJo-Philipp Wich
add chinese translations for luci-app-mjpg-streamer
2015-06-14Merge pull request #409 from oneru/fwknop-qrChristian Schoenebeck
Luci-app-fwknopd:add a couple config options to the interface
2015-06-11add chinese translations for luci-app-mjpg-streamermaz-1
2015-06-11add chinese translations for luci-app-privoxymaz-1
2015-06-10Luci-app-fwknopd:add a couple config options to the interfaceJonathan Bennett
Minor tweaks to uci-defaults refresh translation files Signed-off-by: Jonathan Bennett <JBennett@incomsystems.biz>
2015-06-06luci-app-qos: remove l7 optionsHannu Nyman
Cleanup luci-app-qos, as it still contains references to l7 functionality that has been removed both from kernel and from qos-scripts. Qos config page has a non-functional "Service" option and every visit to qos config page generates currently an error as no l7 files can be found. daemon.err uhttpd[2285]: find: /etc/l7-protocols/: No such file or directory Patch removes "Service" option and the l7 file search. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-06-04luci-app-privoxy: fixed function ipkg_ver_compare()Christian Schoenebeck
fixed function ipkg_ver_compare() Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-06-04luci-app-radicale: fixed function ipkg_ver_compareChristian Schoenebeck
fixed function ipkg_ver_compare() Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-05-31applications/splash: remove set -x from splash.shManuel Munz
2015-05-30applications/olsr: change config file download on olsr overview page to use ↵Manuel Munz
seperate v4 and v6 config files
2015-05-30applications/olsr: redirect errors on jsoninfo connects with netcat to ↵Manuel Munz
/dev/null to avoid spamming the log
2015-05-30applications/olsr: Get jsoninfo source port prom olsrd/olsrd6 config fileManuel Munz
2015-05-26Merge pull request #388 from oneru/fwknop-qrJo-Philipp Wich
Luci-app-fwknopd: Update uci-defaults as key-gen is now exposed in th…
2015-05-24luci-app-ddns: fixed version checkChristian Schoenebeck
fixed version checking in function ipkg_ver_compare() Reported issue #387 and openwrt/packages issue 1285 Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-05-24luci-app-ocserv: list users with no groupNikos Mavrogiannopoulos
This was marked as "(none)" which was not caught by the regex. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-05-22Luci-app-fwknopd: Update uci-defaults as key-gen is now exposed in the ↵Jonathan Bennett
fwknopd binary Signed-off-by: Jonathan Bennett <jbennett@incomsystems.biz>
2015-05-20Merge pull request #385 from oneru/fwknop-qrJo-Philipp Wich
luci-app-fwknopd: Add qr code support
2015-05-20luci-app-fwknopd: Add qr code supportJonathan Bennett
Signed-off-by: Jonathan Bennett <jbennett@incomsystems.biz>
2015-05-14Merge pull request #382 from chris5560/masterChristian Schoenebeck
luci-app-ddns: reflect changes on ddns-scripts
2015-05-12Add initial luci-app-fwknopd - a way to control the firewall knock daemon ↵Jonathan Bennett
from luci Signed-off-by: Jonathan Bennett <jbennett@incomsystems.biz>
2015-05-12luci-app-ddns: reflect changes on ddns-scriptsChristian Schoenebeck
* reflect updated language file for zh-cn * change default for retry_count to 0 compatible to ddns-scripts 2.4.2-1 * addition to retry_count help description * modified dependency on ddns-scripts 2.4.2-1 Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-05-03luci-app-radicale: New app to support Radicale CalDAV/CardDAV serverChristian Schoenebeck
New Application !!! Dependency not set because there are two packages "radicale-py2" and "radicale-py3" (currently BROKEN) available !!! Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-04-28luci-app-ddns: fix Simplified Chinese translationsSyrone Wong
fix typos and elegant zh_CN translations
2015-04-24luci-app-ddns:Fix Simplified Chinese translation for luci-app-ddns郭传鈜
2015-04-23Revert "luci-app-ddns:Fix Simplified Chinese translation."Christian Schoenebeck
2015-04-23Merge pull request #367 from 981213/translate_pull_requestChristian Schoenebeck
luci-app-ddns:Fix Simplified Chinese translation. Many Thanks Christian