summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-10-20Added luci configuration for ocservNikos Mavrogiannopoulos
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2014-10-10modules/admin-full: fix wifi channel selection on multiple STA networksStephan Günther
Besides several AP networks, I have configured two STA networks on my openwrt box - both on the same radio and thus on the same channel. This was done via LuCI. However after both STA networks were set up, I am unable to edit the channel on neither network. When editing the one STA network, LuCI tells me that the channel is locked by the other STA network. Same for the other STA network. Looks like a bug to me, so I made a patch. Signed-off-by: Stephan Günther <steph.guenther@googlemail.com>
2014-10-04luci: initial 802.11ac supportJo-Philipp Wich
While working with 802.11ac (ath10k) I've noticed the web interface configuration missing basic support for 11ac devices - unable to set VHT (htmode) and 11ac (hwmode). This patch adds initial support for luci admin-full page and 802.11ac MAC80211 devices. v2: * replace obsolete 11nac mode with 11a + vhtmode (jow in ticket: #17323) Signed-off-by: Bartosz Markowski <bartosz.markowski@tieto.com> [jow: fix typo in get_i18n()] Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2014-10-03modules/admin-full: decouple enable/disable button state from assoc stateJo-Philipp Wich
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2014-10-03modules/base: provide disable state in luci.tools.status.wifi_network()Jo-Philipp Wich
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2014-10-03modules/admin-full: fix assoc state check for sta mode in wifi overviewJo-Philipp Wich
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2014-09-24modules/freifunk: fix map.html when using https, thanks cholinManuel Munz
2014-09-18collectd: Update luci-statistics / collectd to 5.4.1 - LuciJo-Philipp Wich
[PATCH 1/2] [packages] collectd: Update luci-statistics / collectd to 5.4.1 - packages [PATCH 2/2] [luci] collectd: Update luci-statistics / collectd to 5.4.1 - Luci Collectd, the backbone of Luci statistics module, has been recently updated already to 5.4.1, while Openwrt is still with 4.10.8. 5.0-5.4 branches have been released in 2011-2013 and the last Collectd release in January 2014 only contained 5.4.1. 4.10.x is being "phased out" and new commits have been made only rarely. No 4.10.x release for ages. My ar71xx/wndr3700 build has been using 5.4.1 since March (and used 5.3.1 long before that). I have compile-tested (with ar71xx) all collectd modules, and I have verified the real-life functionality of the following plugins: Conntrack, CPU/Processor, DNS, Interfaces, Memory, Ping, Processes, TCP Connections, System Load, Uptime, Wireless. The version bump requires changes both to "collectd" in the packages feed and to "luci-statistics" in the luci feed, as some of the data items have changed name or file structure. I am including two separate patches: one for collectd in packages and one for luci-statistics in Luci trunk. Collectd: Explanation of main changes in the patches for collectd in packages feed: Patches to be removed: - 120-fix_kernel_2.6.37.patch is unnecessary. The file to be patched has been removed upstream. - 130-timeleft-max.patch is included upstream. Patch removed. http://git.verplant.org/?p=collectd.git;a=commitdiff;h=d5b09f2bb673ac9396da52b85bcbd16c98b3d633 Changed patches: - 003-remove-werror.patch: Quilt choked on some -Werror related changes, so I removed them. - 900-add-iwinfo-plugin.patch: Changed to patch configure.ac instead of configure.in New patches: - 140-fix-fqdnlookup.patch : FQDNLookup option has been turned on by default since 5.1. If that option is enabled, it causes collectd to refuse to start in a basic Openwrt box as typically a fully qualified domain name does not exist for the router. (That error related can only be properly seen when console is used to start collectd. Otherwise Luci statistics collectd simply dies immediately after starting it.) That option should be false by default. I included a new patch 140-fix-fqdnlookup.patch to turn the option off by default. http://git.verplant.org/?p=collectd.git;a=commit;h=e58f85bb68b4c45130bb6fdf40b51db95d2b71e5 - 150-fix-interface-af-link : a FreeBSD10-specific change broke build for me, so I reverted the change. http://git.verplant.org/?p=collectd.git;a=commitdiff;h=645dadb3fcc466e8880fda4eb23b21ad433631fc - 905-disable-sigrok-glib: libsigrok checks for a glib-related macro that breaks configure. Bypass the invalid macro. I have also added a disabling option in Makefile. Luci: Data presentation in luci-statistics requires three changes in the Luci sources: -conntrack result data has changed name from "entropy" to "value". -ping result data has changed name from "ping" to "value". http://git.verplant.org/?p=collectd.git;a=commitdiff;h=77a6905147798210ec17173bd5e4410adcc3a112 -interface plugin has changed rrd data file structure so that the plugin instances (=interfaces) have separate data files. Luci needs to draw the graph for each plugin instance, not for each data instance. http://git.verplant.org/?p=collectd.git;a=commitdiff;h=cc3640ba512862cd5745446f1f1a997dd4344454 My previous patches for upgrading to earlier 5.x series can be marked as superseeded in Patchwork. http://patchwork.openwrt.org/patch/2457/ http://patchwork.openwrt.org/patch/3300/ http://patchwork.openwrt.org/patch/4204/ http://patchwork.openwrt.org/patch/4205/ Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2014-09-18http: ensure .content() works by defaultJo-Philipp Wich
filehandler was always set, so the default handler was never being called. This led to calls to http.content() always returning nil. Signed-off-by: Karl Palsson <karlp@remake.is>
2014-09-11contrib/community-profiles: add two RtTable parameters for berlinManuel Munz
2014-09-04modules/admin-full: dynamically order lines in connection live statusJo-Philipp Wich
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2014-09-04libs/web: add support for string templates to luci.template moduleJo-Philipp Wich
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-09-04libs/web: add support for string templates to the template parserJo-Philipp Wich
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-09-04libs/web: remove strange 'static' on variable declarationJo-Philipp Wich
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-09-04libs/web: rename template_parser field "mmap" to the more generic "data"Jo-Philipp Wich
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-08-24contrib/community-profiles: Add namservers for berlin, see ↵Manuel Munz
https://github.com/freifunk-berlin/firmware/issues/15#issuecomment-52959079
2014-08-12applications/status-olsr: Disable neightbl calls in olsrd neighbors view ↵Manuel Munz
because neightbl segfaults on BB and it wasn't used anyways.
2014-08-12Commit from LuCI Translation Portal by user jow.: 24 of 73 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 48 of 80 messages ↵Translation System
translated (1 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 69 of 69 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 65 of 104 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 11 of 57 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 28 of 103 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 8 of 9 messages translated ↵Translation System
(0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 47 of 177 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 34 of 34 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 29 of 44 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 91 of 120 messages ↵Translation System
translated (2 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 5 of 9 messages translated ↵Translation System
(0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 39 of 47 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 47 of 63 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 25 of 26 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 14 of 34 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 20 of 44 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 32 of 63 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 5 of 5 messages translated ↵Translation System
(0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 103 of 103 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 41 of 41 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 175 of 175 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 10 of 10 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 54 of 92 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 40 of 73 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 162 of 175 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 54 of 80 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 22 of 25 messages ↵Translation System
translated (3 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 167 of 177 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 11 of 13 messages ↵Translation System
translated (2 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 105 of 120 messages ↵Translation System
translated (0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 6 of 9 messages translated ↵Translation System
(0 fuzzy).
2014-08-12Commit from LuCI Translation Portal by user jow.: 15 of 21 messages ↵Translation System
translated (4 fuzzy).