Jo-Philipp Wich [Sat, 13 Aug 2011 09:52:50 +0000 (09:52 +0000)]
libs/core: fallback to trunk version
Jo-Philipp Wich [Sat, 13 Aug 2011 09:52:12 +0000 (09:52 +0000)]
themes: get rid of "v" prefix in version display
Jo-Philipp Wich [Fri, 12 Aug 2011 13:50:59 +0000 (13:50 +0000)]
contrib/package: be trunk
Jo-Philipp Wich [Fri, 12 Aug 2011 13:16:27 +0000 (13:16 +0000)]
applications, modules: remove i18n handling from controller modules as it moved to the themes now
Jo-Philipp Wich [Fri, 12 Aug 2011 13:11:29 +0000 (13:11 +0000)]
libs/web: add _() function to dispatcher, used for marking translatable menu entries
Jo-Philipp Wich [Fri, 12 Aug 2011 12:34:13 +0000 (12:34 +0000)]
libs/web: eliminate another uneeded require in dispatcher
Jo-Philipp Wich [Fri, 12 Aug 2011 12:33:35 +0000 (12:33 +0000)]
themes: filter menu entry title through translate()
Jo-Philipp Wich [Fri, 12 Aug 2011 11:13:39 +0000 (11:13 +0000)]
libs/web: optimize access to translate() api by directly reusing the luci.i18n instance loaded in dispatcher - this saves one extra function call, one extra require and one extra table lookup for _each_ translation string
Jo-Philipp Wich [Fri, 12 Aug 2011 11:05:59 +0000 (11:05 +0000)]
[PATCH] Allow smarter node creation based on visibility during createtree
As I've brought up on the mailing list thread "High latency caused by full tree creation", there is a large amount of delay per LuCI request which is spent building the node tree in createtree(). Most nodes created aren't
needed for the view presented to the user and only serve to consume memory and CPU time during a page load.
My idea is to provide an easy mechanism for index()ers to determine which needs to be created and what isn't. Due to the constraints of the standard LuCI web interface, this optimization needs to establish a few rules:
* The page requested must have its node created
* All parents of the page being requested must be created, so the children inherit the track
* All the top-level nodes "Status", "System", "Services", "Network" (and others added by extensions) must be created in order to have their top-level tabs in the UI
* All peers of second-level nodes need to be created as well for the same reason, to display their links on the subindexes
To make this easy to implement in each controller, the attached patch adds an "inreq" field to each created node to indicate if it lies on the request path. To satisfy the "top level node" requirement, we always
add the top level node, then check its inreq property if the top-level node is not "in request", then the controller can exit index() early.
Jo-Philipp Wich [Fri, 12 Aug 2011 11:04:42 +0000 (11:04 +0000)]
[PATCH] Wasted memory use storing path copies in node tree
When creating the node tree, every node stores a copy of its full path table. e.g. for node("admin.network.wireless"), node.path = { "admin", "network", "wireless" }
This value is not used anywhere, and likely may be from before the addition of the treecache lookup table? In any instance, I've searched high and low and see nothing ever referencing any node's path via the path member. It
eats a good chunk of memory though and as such I believe it should be removed.
I've tested every page in the admin-full module after removing it and all seem to function properly.
Jo-Philipp Wich [Fri, 12 Aug 2011 10:27:48 +0000 (10:27 +0000)]
libs/nixio: add missing file in previous commit, revert unrelated change
Jo-Philipp Wich [Fri, 12 Aug 2011 10:26:33 +0000 (10:26 +0000)]
libs/nixio: implement getproto(), getprotobyname() and getprotobynumber()
Jo-Philipp Wich [Thu, 11 Aug 2011 23:23:11 +0000 (23:23 +0000)]
libs/lucid: fix process function leak (#285)
Jo-Philipp Wich [Thu, 11 Aug 2011 23:21:06 +0000 (23:21 +0000)]
libs/nixio: allow building without shadow password support
Jo-Philipp Wich [Thu, 11 Aug 2011 23:15:05 +0000 (23:15 +0000)]
libs/nixio: fix possible issue with nonblocking bind()
Translation System [Sun, 7 Aug 2011 15:04:50 +0000 (15:04 +0000)]
Commit from LuCI Translation Portal by user soma.: 2 of 4 messages translated (0 fuzzy).
Translation System [Sun, 7 Aug 2011 15:04:34 +0000 (15:04 +0000)]
Commit from LuCI Translation Portal by user soma.: 9 of 222 messages translated (8 fuzzy).
Translation System [Sun, 7 Aug 2011 14:48:29 +0000 (14:48 +0000)]
Commit from LuCI Translation Portal by user soma.: 760 of 760 messages translated (0 fuzzy).
Manuel Munz [Fri, 5 Aug 2011 17:24:27 +0000 (17:24 +0000)]
modules/freifunk: Add profile for carbodebit (fr)
Manuel Munz [Fri, 5 Aug 2011 17:21:26 +0000 (17:21 +0000)]
contrib/meshwizard: fix for last commit
Manuel Munz [Fri, 5 Aug 2011 17:16:38 +0000 (17:16 +0000)]
contrib/meshwizard: Add option in community profiles to set the same bssid for every channel with bssidscheme 'all'
Jo-Philipp Wich [Sun, 31 Jul 2011 12:37:22 +0000 (12:37 +0000)]
modules/admin-full: fix "undefined" netmask display on main status page
Jo-Philipp Wich [Sat, 30 Jul 2011 20:02:58 +0000 (20:02 +0000)]
applications/luci-firewall: fix turning off nat reflection
Jo-Philipp Wich [Sat, 30 Jul 2011 19:42:05 +0000 (19:42 +0000)]
applications/luci-diag-devinfo: add index() stubs to controller files (#281)
Jo-Philipp Wich [Fri, 22 Jul 2011 14:49:52 +0000 (14:49 +0000)]
libiwinfo: fix segfaults in nl80211 hwmodelist and freqlist operations if called on a not existing phy
Jo-Philipp Wich [Fri, 22 Jul 2011 13:59:29 +0000 (13:59 +0000)]
libs/lucid: perform full gc cycle prior to forking, massively improves memory consumption
Jo-Philipp Wich [Fri, 22 Jul 2011 13:56:02 +0000 (13:56 +0000)]
modules/admin-full: properly set device option for newly created vlan sections
Jo-Philipp Wich [Thu, 21 Jul 2011 15:26:55 +0000 (15:26 +0000)]
applications/luci-wol: cope with host entries that have multiple MACs assigned
Translation System [Thu, 21 Jul 2011 10:32:40 +0000 (10:32 +0000)]
Commit from LuCI Translation Portal by user jow.: 16 of 16 messages translated (0 fuzzy).
Jo-Philipp Wich [Thu, 21 Jul 2011 01:04:53 +0000 (01:04 +0000)]
libs/web: more verbose faults
Jo-Philipp Wich [Wed, 20 Jul 2011 23:57:32 +0000 (23:57 +0000)]
libs/web: make dispatcher faults more verbose
Translation System [Wed, 20 Jul 2011 13:48:39 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 9 of 11 messages translated (1 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:36 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 7 of 16 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:33 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 23 of 42 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:31 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 20 of 69 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:29 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 15 of 139 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:26 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 15 of 20 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:22 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 19 of 108 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:21 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 15 of 23 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:19 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 12 of 54 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:15 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 47 of 156 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:12 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 4 of 27 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:10 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 8 of 24 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:05 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 36 of 47 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:03 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 34 of 42 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:48:00 +0000 (13:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 48 of 171 messages translated (0 fuzzy).
Translation System [Wed, 20 Jul 2011 13:47:56 +0000 (13:47 +0000)]
Commit from LuCI Translation Portal by user jow.: 14 of 222 messages translated (0 fuzzy).
Translation System [Mon, 18 Jul 2011 14:58:24 +0000 (14:58 +0000)]
Commit from LuCI Translation Portal by user jow.: 718 of 760 messages translated (0 fuzzy).
Translation System [Mon, 18 Jul 2011 14:57:37 +0000 (14:57 +0000)]
Commit from LuCI Translation Portal by user jow.: 10 of 760 messages translated (0 fuzzy).
Translation System [Mon, 18 Jul 2011 14:57:35 +0000 (14:57 +0000)]
Commit from LuCI Translation Portal by user jow.: 57 of 223 messages translated (2 fuzzy).
Translation System [Mon, 18 Jul 2011 14:56:18 +0000 (14:56 +0000)]
Commit from LuCI Translation Portal by user jow.: 54 of 69 messages translated (1 fuzzy).
Translation System [Mon, 18 Jul 2011 14:56:12 +0000 (14:56 +0000)]
Commit from LuCI Translation Portal by user jow.: 185 of 190 messages translated (5 fuzzy).
Translation System [Mon, 18 Jul 2011 14:56:05 +0000 (14:56 +0000)]
Commit from LuCI Translation Portal by user jow.: 77 of 77 messages translated (0 fuzzy).
Jo-Philipp Wich [Mon, 18 Jul 2011 14:50:39 +0000 (14:50 +0000)]
libs/web: fix index cache rebuild triggering (#275)
Jo-Philipp Wich [Sun, 17 Jul 2011 09:04:43 +0000 (09:04 +0000)]
libs/nixio: Fix recvfrom() return values for unnamed unix sockets, patch by capnbry@gmail.com (#274)
Jo-Philipp Wich [Sun, 17 Jul 2011 08:28:56 +0000 (08:28 +0000)]
modules/admin-full: fix 4k vlan option
Jo-Philipp Wich [Sun, 17 Jul 2011 05:46:54 +0000 (05:46 +0000)]
modules/admin-full: don't expose "reset" and "enable" options for switches, do not set any default state for "enable_vlan"
Translation System [Tue, 12 Jul 2011 12:05:12 +0000 (12:05 +0000)]
Commit from LuCI Translation Portal by user jow.: 9 of 11 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:05:11 +0000 (12:05 +0000)]
Commit from LuCI Translation Portal by user jow.: 4 of 4 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:05:10 +0000 (12:05 +0000)]
Commit from LuCI Translation Portal by user jow.: 2 of 2 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:05:08 +0000 (12:05 +0000)]
Commit from LuCI Translation Portal by user jow.: 5 of 5 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:05:07 +0000 (12:05 +0000)]
Commit from LuCI Translation Portal by user jow.: 6 of 6 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:05:00 +0000 (12:05 +0000)]
Commit from LuCI Translation Portal by user jow.: 4 of 4 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:59 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 9 of 9 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:58 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 176 of 190 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:56 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 12 of 12 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:53 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 9 of 9 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:50 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 77 of 77 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:47 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 4 of 4 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:46 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 21 of 21 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:45 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 30 of 171 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:44 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 721 of 760 messages translated (1 fuzzy).
Translation System [Tue, 12 Jul 2011 12:04:42 +0000 (12:04 +0000)]
Commit from LuCI Translation Portal by user jow.: 29 of 29 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:01:10 +0000 (12:01 +0000)]
Commit from LuCI Translation Portal by user jow.: 2 of 21 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 12:01:07 +0000 (12:01 +0000)]
Commit from LuCI Translation Portal by user jow.: 25 of 29 messages translated (3 fuzzy).
Translation System [Tue, 12 Jul 2011 11:59:02 +0000 (11:59 +0000)]
Commit from LuCI Translation Portal by user jow.: 140 of 140 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 11:58:57 +0000 (11:58 +0000)]
Commit from LuCI Translation Portal by user jow.: 72 of 108 messages translated (0 fuzzy).
Translation System [Tue, 12 Jul 2011 11:58:28 +0000 (11:58 +0000)]
Commit from LuCI Translation Portal by user jow.: 14 of 223 messages translated (0 fuzzy).
Jo-Philipp Wich [Mon, 11 Jul 2011 13:11:12 +0000 (13:11 +0000)]
applications/luci-firewall: properly handle zone removal
Jo-Philipp Wich [Mon, 11 Jul 2011 12:14:55 +0000 (12:14 +0000)]
libs/core: fix multiple errors in zone delete handling of firewall model
Matthias Uferer [Tue, 5 Jul 2011 12:28:40 +0000 (12:28 +0000)]
wait 40 seconds before rdate because of
olsr has to create the whole routing-table first
Manuel Munz [Mon, 4 Jul 2011 22:45:10 +0000 (22:45 +0000)]
contrib/meshwizard: Allow setting system config values via the community profiles
Matthias Uferer [Mon, 4 Jul 2011 20:12:00 +0000 (20:12 +0000)]
space inserted to the link
Matthias Uferer [Mon, 4 Jul 2011 18:10:15 +0000 (18:10 +0000)]
smaller fonts for mobile use
Matthias Uferer [Mon, 4 Jul 2011 18:05:23 +0000 (18:05 +0000)]
found a little bug and corrected - there was no translation for: It is
operated by
Translation System [Mon, 4 Jul 2011 09:45:55 +0000 (09:45 +0000)]
Commit from LuCI Translation Portal by user jow.: 16 of 29 messages translated (0 fuzzy).
Jo-Philipp Wich [Sat, 2 Jul 2011 15:47:27 +0000 (15:47 +0000)]
modules/admin-full: fix off-by-one in conloglevel option (#263)
Jo-Philipp Wich [Fri, 1 Jul 2011 13:49:45 +0000 (13:49 +0000)]
applications/luci-splash: semd a WISPr response, allows iPhone to detect Captive Portal while normal browsers are redirected
Jo-Philipp Wich [Fri, 1 Jul 2011 11:33:46 +0000 (11:33 +0000)]
applications/luci-splash: fix two other redundant lock wait calls
Jo-Philipp Wich [Fri, 1 Jul 2011 11:26:35 +0000 (11:26 +0000)]
applications/luci-splash: fix possible race condition
Jo-Philipp Wich [Fri, 1 Jul 2011 01:48:57 +0000 (01:48 +0000)]
modules/admin-full: fix "No information available" in admin status assoclist
Jo-Philipp Wich [Fri, 1 Jul 2011 01:23:02 +0000 (01:23 +0000)]
modules/admin-full: fix dhcp section creation logic on interfaces page
Manuel Munz [Wed, 29 Jun 2011 12:31:07 +0000 (12:31 +0000)]
contrib/meshwizard: Delete /tmp/luci-indexcache to make sure the app shows in menu after install
Manuel Munz [Wed, 29 Jun 2011 11:28:28 +0000 (11:28 +0000)]
contrib/meshwizard: Enable luci_splash and set local_restrict for wan firewall zone
Manuel Munz [Tue, 28 Jun 2011 00:03:30 +0000 (00:03 +0000)]
contrib/meshwizard: Fix renamed interface name for splash, too
Jo-Philipp Wich [Mon, 27 Jun 2011 22:49:58 +0000 (22:49 +0000)]
modules/freifunk: override channel 01 bssid for gadow, leipzig and l59 profiles
Translation System [Mon, 27 Jun 2011 12:48:07 +0000 (12:48 +0000)]
Commit from LuCI Translation Portal by user jow.: 520 of 760 messages translated (2 fuzzy).
Jo-Philipp Wich [Mon, 27 Jun 2011 01:26:37 +0000 (01:26 +0000)]
libiwinfo: compile with -D_GNU_SOURCE, fixes eglibc compatibility
Translation System [Sun, 26 Jun 2011 13:50:36 +0000 (13:50 +0000)]
Commit from LuCI Translation Portal by user jow.: 156 of 156 messages translated (0 fuzzy).
Translation System [Sun, 26 Jun 2011 13:50:32 +0000 (13:50 +0000)]
Commit from LuCI Translation Portal by user jow.: 24 of 24 messages translated (0 fuzzy).