Commit graph

1378 commits

Author SHA1 Message Date
Jo-Philipp Wich
36f88887c1 modules/admin-core, modules/admin-full: fix switch port status for devices with multiple switches 2012-11-01 20:03:36 +00:00
Daniel Golle
59af400346 wifi: add controls for noscan flag
OpenWrt contains a patch for hostapd which allows to override the channel-bandwidth decission
to always use 40MHz regardless of overlapping networks.
Though it does not conform with IEEE 802.11n-2009, this became the de-facto standard behaviour
of most off-the-shelf wifi routers.

Adding this option to LuCI makes it more accessible to users, which probably not everybody will
agree with to be a good idea. However, I didn't yet come across a single commercial product which
actually complies with 802.11n-2009 in that regard.

Signed-off-by: Daniel Golle <dgolle@allnet.de>
2012-10-31 15:58:15 +00:00
Jo-Philipp Wich
00f8f2fbb0 modules/admin-full: disambiguate NTP client/server settings 2012-09-28 19:08:47 +00:00
Jo-Philipp Wich
14facbd91d modules/admin-full: cope with undefined scan list in wifi_join 2012-09-26 17:38:14 +00:00
Jo-Philipp Wich
02ac6686fe modules/admin-full: cope with undefined frequency lists 2012-09-26 17:34:58 +00:00
Daniel Golle
1dbb1da4d9 modules: add failsafe module
The failsafe module adds a minimal web-interface which is intended to
run on a very compact initramfs-based image intended only for flashing
firmware onto a device. This can be used as part of an installation method
or reside in a small partition on the device flash which can be booted
in case the checksum-test of the main kernel or rootfs fails.

Signed-off-by: Daniel Golle <dgolle@allnet.de>
2012-09-20 02:16:51 +00:00
Manuel Munz
45d812dbb7 modules/freifunk: remove sorting function from widgets include in index view 2012-09-19 09:44:20 +00:00
Manuel Munz
613de9b48f modules/freifunk: include widgets in indexpage when available 2012-09-17 14:22:14 +00:00
Jo-Philipp Wich
4bd4002a3f modules/admin-full: small style fix in switch status 2012-09-11 15:52:01 +00:00
Jo-Philipp Wich
57e51eba60 modules/admin-full, modules/admin-core, themes/base: add port status indicators to switch config page 2012-09-11 14:18:28 +00:00
Manuel Munz
9e33e992c9 modules/freifunk: Add ipv6 options to community profile form 2012-08-20 11:14:13 +00:00
Jo-Philipp Wich
dce04bbcb2 modules/admin-core, modules/admin-full: implement display support for dnsmasq dhcpv6 leases 2012-08-17 15:06:46 +00:00
Jo-Philipp Wich
d88dc89f38 modules/admin-full: also require luci.tools.proto from parent cbi model 2012-08-17 08:24:24 +00:00
Daniel Golle
b70cdbdb7b support extant Antenna configuration 2012-08-15 16:31:41 +00:00
Jo-Philipp Wich
536d329503 modules/admin-full: fix typo in dhcp cbi model, patch by "BasicXP" <basicxp@ubuntu.com> 2012-08-14 15:09:11 +00:00
Jo-Philipp Wich
a1415d7430 modules: make most remaining hardcoded strings translatable, patch by "BasicXP" <basicxp@ubuntu.com> 2012-08-14 13:08:18 +00:00
Jo-Philipp Wich
6b128c0281 modules/admin-full: use format_wifi_encryption() in wifi_join.htm to make encryption translatable 2012-08-14 12:45:06 +00:00
Jo-Philipp Wich
396350aaf4 modules/admin-full: rework help text for network_netlist widget 2012-08-09 23:44:18 +00:00
Jo-Philipp Wich
92fc96f6fd modules/niu: remove usage of wifi.channels() 2012-08-08 20:25:00 +00:00
Jo-Philipp Wich
e183e134b8 modules/admin-full: remove usage of wifi.channels() 2012-08-08 20:22:15 +00:00
Jo-Philipp Wich
a521cddcf8 modules/freifunk: use getiwinfo() instead of getiwconfig() 2012-08-08 20:07:39 +00:00
Jo-Philipp Wich
30597efafb modules/admin-mini: use getiwinfo() instead of getiwconfig() 2012-08-08 20:07:36 +00:00
Jo-Philipp Wich
a7f05a3341 modules/admin-mini: use iwinfo to perform scans 2012-08-08 19:57:05 +00:00
Jo-Philipp Wich
adafc82819 modules/admin-full: remove an ancient cbi model that hasn't been used in years 2012-08-08 19:33:17 +00:00
Jo-Philipp Wich
f0a99dd6c7 modules/admin-full: use luci.sys.net.mac_hints() in wifi maclist config 2012-08-08 15:20:10 +00:00
Jo-Philipp Wich
bf7b19f33b modules/admin-full: remove session expiry workaround from setting 2012-08-08 10:11:00 +00:00
Jo-Philipp Wich
c8ffc897e3 modules/rpc: adapt rpc controller to sauth api changes 2012-08-08 09:48:53 +00:00
Jo-Philipp Wich
a58370ab74 Rework authentication system
The validity of authentication tokens was determined by the
mtime of respective authentication tokens on filesystem
stored in $sessionpath.
Talking about hardware without RTC or without a prior
connection to a time server, date/time usually around 1970 -
so is the mtime of the authentication token file in
$sessionpath.

When now configuring an internet connection via LuCI, the
system might fetch the current date/time (e.g. via ntp)
which invalidates the token, returns "403 Forbidden" and
kicks the user out of the interface.

This patch changes the authentication system to use time values
based on the uptime of the machine - rather than values based upon
gettimeofday() and {a|m}time values - and save them inside the token.
That way can always determine the difference between login
(last interaction respectively) and the current time, in-
dependant of the system clock jumping backwards/forwards.

Warning: This patch removes the clean() function and respective calls.
This means, invalid tokens will NOT be determined and removed from
filesystem automatically anymore.
Before, every HTTP-call caused a scan for invalid tokens,
which is quite expensive. Instead consider using a cron job
deleting all stalled files periodically.

Contributed by T-Labs, Deutsche Telekom Innovation Laboratories

Signed-off-by: Mirko Vogt <mirko@openwrt.org>
2012-08-07 19:11:56 +00:00
Jo-Philipp Wich
69aa218335 return "403 Forbidden" if authentication token was given, however is invalid
Contributed by T-Labs, Deutsche Telekom Innovation Laboratories

Signed-off-by: Mirko Vogt <mirko@openwrt.org>
2012-08-07 19:11:52 +00:00
Jo-Philipp Wich
3c1c9d4400 modules/admin-full: copy bssid when joining a network as client (#455) 2012-07-24 11:37:38 +00:00
Jo-Philipp Wich
746a5be1a8 modules/admin-full: expose wmm option for mac80211 interfaces 2012-07-23 08:53:50 +00:00
Manuel Munz
d0a6fbf397 mod-freifunk: Fix problem with osm map, OpenLayers.Control.MouseDefaults() was removed in OpenLayers 2.12 2012-07-09 05:48:37 +00:00
Jo-Philipp Wich
13c3471eb3 modules/admin-full: fix frequency display on index status page 2012-07-06 01:21:27 +00:00
Daniel Golle
5be59e6ae7 Cosmetic changes to the terminology in the UI:
Replace references to the device running LuCI as being a "router", as that is
not necessarily the case.
2012-07-01 20:05:05 +00:00
Jo-Philipp Wich
d30109e350 modules/admin-full: sort networks by zone and name in overview 2012-06-27 10:12:20 +00:00
Jo-Philipp Wich
a99f570bf4 modules/admin-full: use get_wannet() and get_wan6net() to find wan networks on status page 2012-06-26 22:19:30 +00:00
Jo-Philipp Wich
c0451d8a72 modules/admin-full: remove support for configuring alias interfaces, they're useless now that ifaces can be part of multiple networks 2012-06-26 21:56:52 +00:00
Jo-Philipp Wich
254ad2dfd1 modules/admin-full: when deleting wifi-ifaces, remove all empty leftover networks, not only the first one 2012-06-26 21:49:27 +00:00
Jo-Philipp Wich
d52859b37e modules/admin-full: remove notice about iface exclusiveness when adding new networks 2012-06-26 21:49:21 +00:00
Jo-Philipp Wich
2e924f7aa5 modules/admin-full: extend wifi model to allow assigning multiple networks 2012-06-26 21:49:18 +00:00
Manuel Munz
92f0643e2c modules/freifunk: Add minlength datatype to location, #444 2012-06-25 10:02:53 +00:00
Daniel Golle
fb5d41c2a5 Only show the TX-power selector if the hardware supports more than one option.
Some mac80211 drivers (rt2x00) probably won't support limiting TX-power to a
user-defined value in the near future under certain conditions, so it makes
sense to not expose that option in order not to confuse the user.

See http://patchwork.openwrt.org/patch/2187/
to understand the situation.

Signed-off-by: Daniel Golle <dgolle@allnet.de>
2012-06-18 19:42:39 +00:00
Jo-Philipp Wich
5ae5d3be63 modules/admin-full: allow to specify the DHCP pool start as IPv4 address (#420) 2012-06-05 14:05:03 +00:00
Jo-Philipp Wich
b3e5467ec6 modules/admin-full: check /etc/ethers and /var/dhcp.leases for existence before trying to read them 2012-05-23 22:22:22 +00:00
Jo-Philipp Wich
16ffd14cc2 move luci specific index.html from package 'sgi-cgi' to 'admin-core'
Contributed by T-Labs, Deutsche Telekom Innovation Laboratories

Signed-off-by: Mirko Vogt <mirko.vogt@external.telekom.de>
2012-05-06 18:57:18 +00:00
Jo-Philipp Wich
1ec71bbefe modules/admin-full: add mac address suggestions to mac filter settings 2012-05-06 18:04:45 +00:00
Jo-Philipp Wich
a27481f35c modules/admin-full: filter init scripts without START in startup model 2012-05-06 09:48:06 +00:00
Jo-Philipp Wich
86e17aa657 modules/admin-full: do not show protocol warning for empty interfaces, link to physical settings instead 2012-04-22 13:35:58 +00:00
Manuel Munz
9bde4204cf modules/freifunk: Fix model/system confusion in public_status 2012-04-04 15:40:01 +00:00
Jo-Philipp Wich
1291f1dbb7 admin-full: allow to use translations for 'Not connected' state
This allows to use translated version of the 'Net connected' string in
the Status/Overview/Network section.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
2012-04-02 22:50:26 +00:00
Jo-Philipp Wich
c3aff0c622 modules/admin-full: since switch port numbers depend on model and current solar cycle, give up on making the human readable but just give the raw index 2012-03-19 21:04:15 +00:00
Jo-Philipp Wich
785f71ebaf modules/admin-full: reorder compiler flags for luci-bwc, fixes build on Ubuntu 11.x 2012-03-13 21:10:18 +00:00
Jo-Philipp Wich
b22f022f2c modules/admin-full: add DNS resolution to connections status page, order connections descending by traffic 2012-03-04 18:36:05 +00:00
Jo-Philipp Wich
e6bf801bad modules/admin-full: scan three times to catch more networks in wifi join setup 2012-03-04 18:35:13 +00:00
Jo-Philipp Wich
c77a8b1647 modules/admin-full: revert r8324 2012-03-04 15:28:18 +00:00
Jo-Philipp Wich
7918380683 modules/admin-core: autofocus password field in login form 2012-03-04 15:03:05 +00:00
Jo-Philipp Wich
9de7ff8e69 modules/admin-full: reverse time labels in realtime stats (#386) 2012-03-04 14:06:30 +00:00
Jo-Philipp Wich
7b402d1964 modules/admin-full: remove per connection transfer stats, not exposed anymore in recent kernels 2012-03-03 13:10:33 +00:00
Jo-Philipp Wich
0453e50932 modules/admin-full: display wifi rates in assoclist tables 2012-02-23 17:15:50 +00:00
Jo-Philipp Wich
c07e6a6976 modules/admin-full: filter IPv6 linklocal IPs in iface overview 2012-02-15 22:49:56 +00:00
Jo-Philipp Wich
8d2af100a8 modules/admin-full: remove inline style for inface boxes 2012-02-15 16:01:07 +00:00
Jo-Philipp Wich
7bda8d6da3 modules/admin-full: use new button classes in iface overview template 2012-02-15 15:12:10 +00:00
Jo-Philipp Wich
639f58d404 modules/admin-full: add client_cert option in wifi configuration 2012-01-24 20:57:54 +00:00
Jo-Philipp Wich
4bf31a8792 modules/admin-full: redirect init script output in startup model actions 2012-01-12 12:15:21 +00:00
Jo-Philipp Wich
c043db6518 modules/admin-full: set password of logged in user instead of unconditionally using root, thanks Viktar Palstsiuk <viktar.palstsiuk@promwad.com> 2012-01-06 16:42:02 +00:00
Jo-Philipp Wich
1e0e458ff3 modules/admin-full: fix wireless interface removal if not network was assigned to the iface, thanks Viktar Palstsiuk <viktar.palstsiuk@promwad.com> 2012-01-06 16:28:54 +00:00
Jo-Philipp Wich
ef65fbd9dc modules/admin-full: make luci-bwc dlopen() libiwinfo.so instead of lua/iwinfo.so 2012-01-01 17:20:16 +00:00
Jo-Philipp Wich
706eb828ad modules/admin-full: allow space separated lists of macs in static lease form (#319) 2012-01-01 14:43:56 +00:00
Jo-Philipp Wich
28426c25fc modules/admin-full: fix crypto depends for ad-hoc and static wds modes (#271) 2011-12-21 22:41:44 +00:00
Jo-Philipp Wich
45d604fea3 modules/admin-core: use luci.model.uci.apply() in service control to restart dependencies of the current config as well 2011-12-20 19:04:04 +00:00
Jo-Philipp Wich
79231d68be modules/admin-core: fix apply actions for configs with hyphens or underscore in the name 2011-12-20 18:31:47 +00:00
Jo-Philipp Wich
abb201ab57 modules/admin-full: reuse sysupgrade facilities to create backup archive 2011-12-20 17:35:50 +00:00
Jo-Philipp Wich
3bccd25281 modules/admin-full: probe for EAP support in wpad/hostapd/wpa_supplicant and offer wpa/wpa2 only if it is present 2011-12-13 15:57:32 +00:00
Jo-Philipp Wich
3d2468cf34 modules/admin-full: fix System -> Administration menu if dropbear is not installed 2011-12-08 03:35:27 +00:00
Jo-Philipp Wich
5e83af45ae modules/admin-full, po: s/libiwinfo/libiwinfo-lua/ 2011-12-06 11:00:33 +00:00
Jo-Philipp Wich
9fa385a7ec modules/admin-full: fix removal of wireless networks if radio is disabled 2011-12-05 19:34:47 +00:00
Jo-Philipp Wich
2221b44d98 modules/admin-core: expose txpower offset in wifi json status 2011-12-05 18:35:00 +00:00
Jo-Philipp Wich
c47e0596dd modules/admin-full: use new iwinfo capabilities to display shifted tx power values 2011-12-05 18:29:04 +00:00
Manuel Munz
c5329d85d5 applications/splash: Fix blacklisting mechanism, expose status on public freifunk page, add json output and autoupdate. 2011-11-30 05:50:43 +00:00
Jo-Philipp Wich
33bb31838d modules/admin-full: allow bssid for sta wds as well 2011-11-15 15:47:46 +00:00
Jo-Philipp Wich
743296d42c modules/admin-full: bssid is valid in mac80211 sta mode too 2011-11-15 15:44:01 +00:00
Jo-Philipp Wich
0ecbaa400e modules/admin-full: don't make cipher mandatory 2011-11-13 21:03:06 +00:00
Jo-Philipp Wich
52f6514541 modules/admin-full: prepare uci changelog template for revised libuci-lua changelog format to properly expose add_list operations 2011-11-12 14:31:31 +00:00
Manuel Munz
c67d7b2a43 admin-full: When creating the ntp timeserver section also add the default ntp servers 2011-11-10 13:44:22 +00:00
Manuel Munz
525da459d7 admin-full: Better fix for the last change (timeserver setup), add button to add the missing section 2011-11-10 12:57:13 +00:00
Manuel Munz
a196198fb9 admin-full: Add timeserver section if it doesn't already exist in /etc/config/system (#329) 2011-11-10 12:25:58 +00:00
Manuel Munz
ffdeb77e84 admin-full: Expose bogusnxdomain setting in DHCP / DNS configuration (#339) 2011-11-10 11:40:18 +00:00
Jo-Philipp Wich
13f98b6d99 modules/admin-full: fix another html escape issue on interface overview page 2011-11-08 23:12:38 +00:00
Jo-Philipp Wich
f8a2f2c059 modules/admin-full: fix html escaping on interface overview page 2011-11-08 22:35:24 +00:00
Manuel Munz
6a3640cee2 modules/freifunk: Fix display of warning about diversity 2011-11-08 09:34:09 +00:00
Jo-Philipp Wich
6907d1f2cd modules/admin-full: do not hide toplevel network menu items, yet 2011-11-07 10:44:20 +00:00
Jo-Philipp Wich
905e682bb7 modules/admin-full: speed up network controller by using inreq flag 2011-11-07 10:38:41 +00:00
Jo-Philipp Wich
0b7eb82eb6 modules/admin-full: add option to override the WPA cipher (#303) 2011-11-07 06:30:36 +00:00
Manuel Munz
7d81806393 modules/freifunk: Show warning about diversity only if not using mac80211 2011-11-06 17:13:30 +00:00
Jo-Philipp Wich
0abb1420e7 modules/admin-full: add missing html escaping for SSID in associated stations table of wireless overview 2011-11-03 19:44:17 +00:00
Jo-Philipp Wich
eea1f8b679 modules/admin-full: when toggling a wifi-iface, first bring the radio down, then change the config, then bring it up again - prevents state vars from going out of sync 2011-11-02 18:59:18 +00:00
Manuel Munz
16c26a5154 modules/freifunk: Fix error on freifunk/adminindex page when running on the Development Environment 2011-11-02 10:34:04 +00:00
Manuel Munz
0ef557b15c modules/freifunk: Fix errors on index and contact pages when running the Development Environment 2011-11-02 08:45:40 +00:00
Jo-Philipp Wich
e4d8bc2946 modules/admin-full: luci-bwc: use 32 bit integer, fix endian problem leading to stalling graphs after random time periods 2011-10-28 19:20:39 +00:00
Jo-Philipp Wich
327e4e773a modules/admin-full: don't bother with 4k vlan / no 4k vlan nuisances, simply enable it when available 2011-10-27 00:02:10 +00:00
Jo-Philipp Wich
0bc7760cdb modules/admin-full: unify style of headings accross system menus, remove orphaned template 2011-10-26 23:43:04 +00:00
Jo-Philipp Wich
da527d2c44 modules/admin-full: remove associated network for the wifi-iface as well if it would be empty afterwards 2011-10-26 22:52:18 +00:00
Jo-Philipp Wich
f3973132f2 modules/admin-full: commit uci and restart corresponding radio when removing wifi networks 2011-10-26 22:29:57 +00:00
Jo-Philipp Wich
c3e8976605 modules/admin-full: lock channel section in ap wifi config if there is a station on the same radio 2011-10-26 22:12:50 +00:00
Jo-Philipp Wich
017d24c724 modules/admin-full: fix wifi join when "wwan" (or other iface) already exists but only contains the network we intend to replace anyway, also save firewall settings after wifi join 2011-10-26 21:54:51 +00:00
Jo-Philipp Wich
d409dd68ff modules/admin-full: switch back to alias() for / -> /admin/; chained firstchild() seems to be problematic yet 2011-10-26 03:04:18 +00:00
Jo-Philipp Wich
8c9aef1b2d modules/admin-full:
- move crontab to system menu
	- delete now empty services dispatcher
	- move service menu declaration into index
2011-10-26 00:58:12 +00:00
Jo-Philipp Wich
76548e7dad modules/admin-full: use firstchild() in index controller 2011-10-26 00:50:58 +00:00
Jo-Philipp Wich
7e882e8bd6 modules/admin-full: use firstchild() instead of fixed alias 2011-10-26 00:48:33 +00:00
Jo-Philipp Wich
6350803416 modules/admin-full: remove now orphaned service index template 2011-10-26 00:39:31 +00:00
Jo-Philipp Wich
94225a83c9 modules/admin-full: use firstchild() in services controller 2011-10-26 00:38:32 +00:00
Jo-Philipp Wich
6245ad6a73 modules/admin-full: rework system menu area 2011-10-24 01:10:34 +00:00
Manuel Munz
c0ce5f96f2 modules/freifunk: Nicer layout of the contact page; make note a TextValue field in the admin interface 2011-10-21 13:27:55 +00:00
Manuel Munz
cd1fa7c070 modules/freifunk: Fix small error 2011-10-18 18:59:58 +00:00
Jo-Philipp Wich
9c97cdb7b6 modules/admin-full: better handle interfaces with unsupported protocols 2011-10-18 13:20:43 +00:00
Manuel Munz
e4740d764b modules/freifunk: This was moved to freifunk-common with r7554 2011-10-16 13:22:26 +00:00
Jo-Philipp Wich
594e333a77 modules/admin-full: support installing multiple packages at once 2011-10-15 05:27:06 +00:00
Jo-Philipp Wich
00f23f60f6 modules/admin-full: move realtime stats into submenu 2011-10-15 05:10:58 +00:00
Jo-Philipp Wich
64bc95cb47 modules/admin-full: make software page tabbed, show available list broken down by letters; greatly speeds up loading time 2011-10-15 03:13:49 +00:00
Jo-Philipp Wich
af4afea77f modules/admin-full: fix JavaScript issues in live statistics 2011-10-14 13:33:47 +00:00
Jo-Philipp Wich
7a1fcbd6da modules/admin-full: update iface status after saving uci changes 2011-10-13 16:26:59 +00:00
Jo-Philipp Wich
d845a4e450 modules/admin-full: move RTS/CTS and Frag settings to device for mac80211 2011-10-13 12:48:55 +00:00
Jo-Philipp Wich
1ffe61277e move protocol support into a new protocols/ subdir 2011-10-11 02:07:15 +00:00
Jo-Philipp Wich
9ebf900719 modules/admin-full: expose switch title on vlan page 2011-10-11 01:21:58 +00:00
Jo-Philipp Wich
e134834014 modules/admin-full: make interface configuration modular 2011-10-11 01:17:02 +00:00
Manuel Munz
6bc73f7af9 admin-status/overview: Use MAC-Address in table header of associated stations instead of BSSID (#312) 2011-10-10 16:08:00 +00:00
Manuel Munz
61778a3239 modules/freifunk: Make display of ipv4 default route in public status work with freifunk-policyrouting enabled 2011-10-10 16:04:27 +00:00
Manuel Munz
bb5986cf13 modules/freifunk: Move contact page to first level menu 2011-10-10 08:32:46 +00:00
Jo-Philipp Wich
760dcec667 modules/admin-full: only allow unique vlan ids, fix port labelling if CPU is at 0 2011-10-09 23:39:34 +00:00
Jo-Philipp Wich
9e2e9a2b66 modules/admin-full: remove PVID support, its not really useful and confusing, fix parsing of port count and cpu port, expose hardware name 2011-10-09 23:21:19 +00:00
Jo-Philipp Wich
21b2f45d02 modules/admin-full: fix status reporting of inactive virtual interfaces 2011-10-09 22:36:13 +00:00
Jo-Philipp Wich
9e8de5189d modules/admin-full: fix switch config page for models with multiple switches 2011-10-09 22:28:14 +00:00
Jo-Philipp Wich
b666015dc2 modules/admin-full: rework interface add dialog, now handles floating protocols like PPP correctly 2011-10-09 19:28:30 +00:00
Jo-Philipp Wich
4e538d09e1 modules/admin-full: hide system software tab if opkg is not present 2011-10-08 21:43:50 +00:00
Jo-Philipp Wich
523f70c927 modules/admin-full: allow mac filter only for ap mode interfaces 2011-10-04 18:05:59 +00:00
Jo-Philipp Wich
f3690b2e03 modules/admin-full: fix various issues in iface cbi model 2011-10-03 10:30:17 +00:00
Jo-Philipp Wich
0a7165c833 modules/admin-full: increase button size on overview pages to accomodate for longer words in other langauges 2011-10-02 11:37:44 +00:00
Jo-Philipp Wich
c45f6b670d modules/admin-full: align wifi settings with recent hostapd.sh in OpenWrt (#261) 2011-10-02 10:25:32 +00:00
Jo-Philipp Wich
86f63627b6 modules/freifunk: fix interval value after XHR.poll() change 2011-10-02 10:03:43 +00:00
Jo-Philipp Wich
d47f6e0086 modules/freifunk: convert public status template to XHR.poll() 2011-10-02 09:59:07 +00:00
Jo-Philipp Wich
7981c2382d modules/admin-full: fix file uploads on wifi page 2011-10-01 09:33:36 +00:00
Jo-Philipp Wich
7906112adf modules/admin-core: add missing css class 2011-09-30 13:23:11 +00:00
Manuel Munz
2d0171d72c modules/freifunk: Remove helper scripts, they moved to freifunk-common 2011-09-29 09:35:44 +00:00
Manuel Munz
c3a028c76c modules/freifunk: Move profiles and common files into seperate packages, this will enable us to build freifunk images without luci. 2011-09-28 00:20:56 +00:00
Jo-Philipp Wich
e415f27419 modules/admin-full: switch live stats to XHR.poll(), lower update frequency to 3 seconds 2011-09-26 00:48:02 +00:00
Jo-Philipp Wich
d46b42901a modules/admin-full: add missing svg template 2011-09-26 00:46:31 +00:00
Jo-Philipp Wich
fd052a6e64 modules/admin-full: rework status javascript code to use XHR.poll() 2011-09-26 00:24:34 +00:00
Jo-Philipp Wich
2829139f35 modules/admin-full: register missing wireless actions 2011-09-25 23:29:21 +00:00
Jo-Philipp Wich
730b2b0d07 modules/admin-full: ... and another issue, also remove wifi up workaround, its done by "ifup" now 2011-09-25 23:08:47 +00:00
Jo-Philipp Wich
8eb9335413 modules/admin-full: fix two issues observed on a virgin install 2011-09-25 22:58:17 +00:00
Jo-Philipp Wich
1f1377fdc4 modules/admin-full: fix remaining status template 2011-09-25 20:59:51 +00:00
Jo-Philipp Wich
630d559c26 modules/admin-full: more javascript fixes 2011-09-25 20:58:19 +00:00
Jo-Philipp Wich
e3435a49e9 modules/admin-full: various javascript fixes in templates 2011-09-25 20:51:03 +00:00
Manuel Munz
8d62398e85 modules/freifunk: Remove old ff_mapupdate script 2011-09-24 20:18:27 +00:00
Jo-Philipp Wich
575b32de81 modules/admin-full: fix small style glitch in uci revert template 2011-09-24 03:34:02 +00:00
Jo-Philipp Wich
3311da13e7 modules/admin-full: remove more dead code 2011-09-24 03:21:02 +00:00
Jo-Philipp Wich
1d40f7fbea modules/admin-full: remove redundant code 2011-09-24 03:14:48 +00:00
Jo-Philipp Wich
6047aea3c4 modules/admin-full: rework interface overview 2011-09-24 01:03:06 +00:00
Jo-Philipp Wich
2dae492a36 modules/admin-full: rewrite interface state json backend to only utilize network model 2011-09-24 00:58:58 +00:00
Manuel Munz
63a8252dd0 modules/admin-full: Fix typo, #304 2011-09-23 20:03:49 +00:00
Manuel Munz
2b5c41037e modules/freifunk: Remove ff_olsr_test_gw 2011-09-23 19:25:32 +00:00
Manuel Munz
9ed39e1431 modules/admin/full: Add parenthesis around luci.version, #302 2011-09-23 16:11:24 +00:00
Jo-Philipp Wich
7d959a6024 modules/admin-full: add missing class attributes 2011-09-22 18:22:04 +00:00
Jo-Philipp Wich
8f25290a38 modules/admin-full: fix some small style quirks 2011-09-22 17:48:58 +00:00
Jo-Philipp Wich
b360dbc6dc modules/admin-full, modules/freifunk, modules/niu, libs/web, applications/luci-upnp: tune input class attributes 2011-09-22 13:25:48 +00:00
Manuel Munz
9ffd17e920 modules/freifunk: Add force=1 to dhcp default config 2011-09-22 13:11:33 +00:00
Jo-Philipp Wich
01d99250ae modules/admin-full: clear radio wide disable flag when toggling wifinet 2011-09-22 02:49:03 +00:00
Jo-Philipp Wich
659a8bdf01 modules/admin-full: implement per-wifi-iface disable option 2011-09-22 02:43:38 +00:00
Jo-Philipp Wich
59e95ddcad modules/admin-full, libs/web: various interface handling fixes in network settings 2011-09-22 01:40:26 +00:00
Jo-Philipp Wich
bc8eaf6875 modules/admin-full: finally sort out dhcp setup issues in interface settings 2011-09-17 23:43:55 +00:00
Manuel Munz
baa7e82693 modules/freifunk: Change ssid, remove dhcpoptions from evernet profile 2011-09-14 12:39:51 +00:00
Manuel Munz
e81183ea87 modules/freifunk: fixes for profile evernet 2011-09-14 12:36:08 +00:00
Manuel Munz
b2b1efa00d modules/freifunk: Add profile for evernet 2011-09-14 12:26:43 +00:00
Matthias Uferer
19c1fecdb3 ssid von Leipzig auf gadow.freifunk.net geaendert 2011-09-14 12:04:23 +00:00
Jo-Philipp Wich
a4ea7904b8 modules/admin-full: fix initial state of network_ifacelist widget 2011-09-14 09:28:28 +00:00
Jo-Philipp Wich
69406a2ac4 modules/admin-full: remove accidentally committed compat code 2011-09-13 08:25:59 +00:00
Jo-Philipp Wich
2bc02e44b4 modules/admin-full: add wireless live stats 2011-09-13 07:27:34 +00:00
Jo-Philipp Wich
5d10db24ef modules/admin-full: luci-bwc: attempt to dlopen() libiwinfo, use it to gather radio rate, signal and noise data if successful 2011-09-11 12:55:26 +00:00
Jo-Philipp Wich
7ea8865444 modules/admin-full: remove luci-bwc postinstall 2011-09-11 12:50:05 +00:00
Manuel Munz
d33d6224e9 modules/admin: Make sure luci_fixtime works on mini_fo (#262) 2011-09-08 15:44:56 +00:00
Manuel Munz
0907848282 admin/status: Replace 'Active IP Connections' with 'Active Connections' as requested by #265. Also this saves a little space, because the string 'Active Connections' is in base.po already and can be reused. 2011-09-08 13:55:54 +00:00
Manuel Munz
1a511de0be Fix i18n problems with freifunk module and meshwizard 2011-09-08 12:51:00 +00:00
Jo-Philipp Wich
de9048ff8c modules/admin-full: simplify and fix progname change 2011-09-01 23:21:22 +00:00
Jo-Philipp Wich
8bbf59dcc6 modules/admin-full: rework realtime stats to start luci-bwc on demand, kill daemon after ten seconds of inactivity 2011-09-01 22:54:29 +00:00
Manuel Munz
3b9fbb12b8 modules/admin_system: Add note to step2 of firmware flashing telling the user if configuration is kept or not, thanks hnyman (#298) 2011-08-28 16:18:21 +00:00
Manuel Munz
cc7b8fcc6f modules/freifunk: Changes to duesseldorf profile (#297) 2011-08-28 16:13:14 +00:00
Manuel Munz
53fa83c313 modules/freifunk: Fix carbodebit profile 2011-08-28 13:42:04 +00:00
Manuel Munz
8538b6f30d modules/freifunk: Try to get the location from /etc/config/freifunk if it isn't found in /etc/config/system 2011-08-28 10:29:33 +00:00
Manuel Munz
02219b66b7 modules/freifunk: Add firewall.freifunk include to /etc/config/freifunk 2011-08-28 10:13:22 +00:00
Manuel Munz
045907af40 modules/freifunk: luci-theme-freifunk-generic is the default, so no need to specify it here. 2011-08-24 16:40:28 +00:00
Manuel Munz
6d8f26ac69 modules/freifunk: Add profile for guifibages 2011-08-24 16:07:11 +00:00
Manuel Munz
b17ac89857 Revert last commit 2011-08-24 16:00:55 +00:00
Manuel Munz
8176dcead8 modules/freifunk: Add extrapackages to be included when images are built using the imagebuilder. 2011-08-24 15:57:13 +00:00
Manuel Munz
fbcbde824b modules/freifunk: Add theme to profiles to get rid of the imagebuilder-profiles, only augsburg for now, others will follow if this is sucessfull 2011-08-24 14:27:04 +00:00
Jo-Philipp Wich
1d76d8a215 applications, modules: remove i18n handling from controller modules as it moved to the themes now 2011-08-12 13:16:27 +00:00
Manuel Munz
7c9cecad3a modules/freifunk: Add profile for carbodebit (fr) 2011-08-05 17:24:27 +00:00
Jo-Philipp Wich
563598a976 modules/admin-full: fix "undefined" netmask display on main status page 2011-07-31 12:37:22 +00:00
Jo-Philipp Wich
7b316be27b modules/admin-full: properly set device option for newly created vlan sections 2011-07-22 13:56:02 +00:00
Jo-Philipp Wich
9fdb4acec0 modules/admin-full: fix 4k vlan option 2011-07-17 08:28:56 +00:00
Jo-Philipp Wich
76e5b68bb9 modules/admin-full: don't expose "reset" and "enable" options for switches, do not set any default state for "enable_vlan" 2011-07-17 05:46:54 +00:00
Matthias Uferer
3faeaddc5e wait 40 seconds before rdate because of
olsr has to create the whole routing-table first
2011-07-05 12:28:40 +00:00
Manuel Munz
528faebb01 contrib/meshwizard: Allow setting system config values via the community profiles 2011-07-04 22:45:10 +00:00
Matthias Uferer
d7a4505cad space inserted to the link 2011-07-04 20:12:00 +00:00
Matthias Uferer
f57f25fcb8 found a little bug and corrected - there was no translation for: It is
operated by
2011-07-04 18:05:23 +00:00
Jo-Philipp Wich
19f94464c6 modules/admin-full: fix off-by-one in conloglevel option (#263) 2011-07-02 15:47:27 +00:00
Jo-Philipp Wich
6d65042743 modules/admin-full: fix "No information available" in admin status assoclist 2011-07-01 01:48:57 +00:00
Jo-Philipp Wich
d3db8d1d25 modules/admin-full: fix dhcp section creation logic on interfaces page 2011-07-01 01:23:02 +00:00
Jo-Philipp Wich
8b6deb3029 modules/freifunk: override channel 01 bssid for gadow, leipzig and l59 profiles 2011-06-27 22:49:58 +00:00
Jo-Philipp Wich
c5f0100abf modules/admin-full: add "auto" option to interface settings (#235) 2011-06-25 23:24:23 +00:00
Jo-Philipp Wich
e7b9b7798d modules/admin-full: fix reversed allow/deny macfilter logic (#105) 2011-06-25 22:34:46 +00:00
Jo-Philipp Wich
2d28a55a53 modules/admin-full: relocate mac80211 mac filter settings to wifi-iface (#247) 2011-06-25 22:14:00 +00:00
Jo-Philipp Wich
d7120e7559 modules/admin-full: defer writing of interface related dhcp options until an actual save occurs, prevents "unsaved changes" upon opening the interface settings page 2011-06-25 21:51:12 +00:00
Jo-Philipp Wich
3654347541 modules/admin-full: only display back button in changes page if a redir url is given 2011-06-25 20:47:00 +00:00
Manuel Munz
ab87896104 Add new meshwizard (WIP) 2011-06-23 15:52:00 +00:00
Jo-Philipp Wich
e88fd858a1 modules/admin-full: display raw opkg output, the error codes are useless with recent versions 2011-06-23 10:14:26 +00:00
Jo-Philipp Wich
6b5e711614 modules/admin-full: filter installed packages from installable list 2011-06-17 14:20:08 +00:00
Jo-Philipp Wich
70e5124557 modules/admin-full: display IPv4 routes in CIDR notation, filter FE80::/10 entries in IPv6 route listing 2011-06-17 12:34:28 +00:00
Matthias Uferer
64c6f8f4b6 Freifunk Gadow Profile added 2011-06-17 02:55:40 +00:00
Jo-Philipp Wich
aa3caed0b5 modules/admin-full: fix WPA-EAP and WPA2-EAP settings in STA-WDS mode 2011-06-15 23:14:38 +00:00
Jo-Philipp Wich
1d2f948280 modules/admin-full: add AHCP client support 2011-06-10 14:15:10 +00:00
Jo-Philipp Wich
f9f1b0ea33 modules/admin-full: readd jumbo frame passthrough support 2011-05-20 11:56:42 +00:00
Jo-Philipp Wich
2b25a8b5ad modules/admin-full: throw more work-arounds, exceptions, hacks and detections at switch config page 2011-05-20 11:49:09 +00:00
Jo-Philipp Wich
ac1d185381 modules/admin-full: fix backup section cutoff in system page if rdate is nil (#242) 2011-05-19 23:58:20 +00:00
Jo-Philipp Wich
5b464e500b modules/admin-full: fix wrong logic in r7078 2011-05-19 23:51:50 +00:00
Jo-Philipp Wich
f8ef4ff722 modules/admin-full: allow vlan 0 for /proc/switch interface 2011-05-19 12:22:18 +00:00
Jo-Philipp Wich
995674d28a modules/admin-core: remove "about" template 2011-05-09 23:11:34 +00:00
Jo-Philipp Wich
fd0510049a modules/admin-full: fix possible error in led page 2011-05-09 12:51:01 +00:00
Jo-Philipp Wich
73112f9c44 modules/admin-full: fix system/admin from form() to cbi() type to add missing apply button (#234), integrate services/initscripts as system/startup 2011-05-04 21:37:41 +00:00
Jo-Philipp Wich
ec0fbaff3e modules/admin-full: move system/processes to status/processes 2011-05-04 21:23:55 +00:00
Jo-Philipp Wich
fc84bd87ec modules/admin-full: add a simple plugin mechanism to status page 2011-05-04 21:04:31 +00:00
Jo-Philipp Wich
6e14fd0bc2 modules/admin-full: join maps in merged dnsmasq page 2011-05-03 22:22:26 +00:00
Jo-Philipp Wich
0ecee984af modules/admin-full: merge services/dnsmasq and network/dhcpleases into network/dhcp 2011-05-03 22:06:29 +00:00
Jo-Philipp Wich
c8f8dec0e3 modules/admin-full: remove support for httpd and lucittpd configuration, it just takes space 2011-05-03 21:48:57 +00:00
Jo-Philipp Wich
32d667edbb modules/admin-full: merge system/password, system/sshkeys and service/dropbear into system/admin 2011-05-03 03:35:56 +00:00
Jo-Philipp Wich
6697e282af trunk: s/&nbsp;/&#160;/g 2011-05-03 03:20:15 +00:00
Jo-Philipp Wich
f845d2fe42 modules/admin-full: fix formatting quirk on wifi overview page 2011-04-30 16:13:30 +00:00
Jo-Philipp Wich
254c8d368e modules/admin-full: revert accidental change in r7003 2011-04-25 19:56:10 +00:00
Jo-Philipp Wich
542cc1da5b modules/admin-full: implement "dev" option for USB device led triggers (#224) 2011-04-25 19:54:32 +00:00
Jo-Philipp Wich
84cb0bce77 modules/admin-full: add option for RTL8366 jumbo frame passthrough to vlan page 2011-04-25 19:11:42 +00:00
Jo-Philipp Wich
e9a357ed78 modules/admin-full: fix text quirk on status overview page 2011-04-25 18:23:05 +00:00
Jo-Philipp Wich
0a252c0f8a modules/admin-full: add macfilter options to mac80211 wifi config 2011-04-25 17:45:59 +00:00
Manuel Munz
0c281f4e86 modules/freifunk: Show remote update in menu only when /usr/sbin/remote-update from the package remote-update is present (#160) 2011-04-13 16:22:54 +00:00
Manuel Munz
5a1e9354b4 modules/freifunk: Hardcoding timezone was not a good idea 2011-04-04 12:04:42 +00:00
Manuel Munz
288a63f919 modules/freifunk: Show date/time in a bit nicer format (#184) 2011-04-04 11:50:09 +00:00
Jo-Philipp Wich
e853a98c3e modules/admin-full: use crypto mode "wep-open" instead of just "wep" in connection wizzard 2011-03-24 21:08:28 +00:00
Jo-Philipp Wich
ad45ebf430 modules/admin-full: fix wep key handling in sta mode connection wizzard 2011-03-24 20:56:23 +00:00
Jo-Philipp Wich
c1ca9106b8 modules/admin-full: properly display interface stats for networks with underscores 2011-03-18 16:50:18 +00:00
Jo-Philipp Wich
ff5a74c25f modules/admin-full: fix index page (#213) 2011-03-15 17:55:14 +00:00
Jo-Philipp Wich
1bce159bb1 modules/admin-full: rename index page node from "Interfaces" to "overview" 2011-03-15 09:24:02 +00:00
Jo-Philipp Wich
f5bfd8b75b modules/admin-full: move former active connections arp info to the routes overview page 2011-03-13 22:15:53 +00:00
Jo-Philipp Wich
6ea0204a55 modules/admin-full: merge "Active Connections" and "Realtime Connections" 2011-03-13 22:12:42 +00:00
Jo-Philipp Wich
831654f504 modules/admin-full: remove status -> interfaces 2011-03-13 19:23:38 +00:00
Jo-Philipp Wich
2321cd2afe modules/admin-full: add some links to index page 2011-03-13 19:08:40 +00:00
Jo-Philipp Wich
02a7db9252 modules/admin-full: hide relay options for other protocols, resolve option conflict 2011-03-13 19:07:27 +00:00
Jo-Philipp Wich
e0d763785e modules/admin-full: don't count TIME_WAIT connections in luci-bwc 2011-03-13 17:52:03 +00:00
Jo-Philipp Wich
026945ae09 modules/admin-full: display source and destination ports in conntrack view (#211) 2011-03-13 17:39:36 +00:00
Jo-Philipp Wich
637e3cd0e3 modules/admin-full: do not use private wifinet properties in network controller 2011-03-13 17:29:06 +00:00
Jo-Philipp Wich
c7cf8ef8c1 modules/admin-full: use luci.tools.status for remaining wifi status displays 2011-03-13 17:25:54 +00:00
Jo-Philipp Wich
bc6e9ec07e modules/admin-core: add wifi_network() to luci.tools.status 2011-03-13 17:10:43 +00:00
Jo-Philipp Wich
18677e216b modules/admin-full: use luci.tools.status in network controller 2011-03-13 14:00:45 +00:00
Jo-Philipp Wich
5112af896f modules/admin-full: add dhcp and wifi status info 2011-03-13 13:57:21 +00:00
Jo-Philipp Wich
adc2ba97d1 modules/admin-core: add tools.status helper class 2011-03-13 13:54:43 +00:00
Jo-Philipp Wich
63bfe23eab modules/admin-full: use %m format in interface overview 2011-03-13 11:13:52 +00:00
Manuel Munz
945076c895 modules/freifunk: OSM in basics fixed thanks to Andreas Pittrich 2011-03-12 17:13:36 +00:00
Vasilis Tsiligiannis
8a898ec199 modules/admin-full: Fix description of Hermes wireless controllers 2011-03-06 11:16:14 +00:00
Vasilis Tsiligiannis
108321b5df modules/admin-full: Orinoco and HostAP drivers are 802.11b only 2011-03-06 11:16:07 +00:00
Manuel Munz
32aec7a4f3 modules/freifunk: Set uhttpd.main.rfc1918_filter=0 via uci-defaults/freifunk to allow connections from rfc1918 ip space to public ips 2011-03-03 21:01:17 +00:00
Manuel Munz
c3357a031c modules/freifunk: Change domain suffix to ffbt in profile for Bayreuth 2011-02-28 12:50:15 +00:00
Manuel Munz
2d0e20c461 modules/freifunk: Change domain suffix to ffac in profile for Aachen 2011-02-28 12:38:48 +00:00
Vasilis Tsiligiannis
be0da6a545 modules/admin-full: Detect hostap Prism2/2.5/3 hardware 2011-02-26 22:30:58 +00:00
Jo-Philipp Wich
2859e51474 modules/admin-full: add relay protocol support 2011-02-26 01:37:29 +00:00
Manuel Munz
43672158c1 modules/freifunk: change netmask in leipzig profile 2011-02-23 23:15:25 +00:00
Jo-Philipp Wich
3e16965106 modules/admin-full: add field validation for hostnames in leases and hosts pages 2011-02-22 09:52:49 +00:00
Jo-Philipp Wich
02a67572f8 modules/admin-full: restart radvd if needed 2011-02-21 12:46:03 +00:00
Manuel Munz
1a87c7b347 modules/freifunk: Change default netmask to 255.255.0.0, change non-working dns, show error when user tries to edit profiles but there is no profile set yet 2011-02-19 14:54:16 +00:00
Manuel Munz
f9563981b8 modules/freifunk: Add profile for Aachen 2011-02-19 11:17:59 +00:00
Manuel Munz
9215f16c9f po: Move p2pblock translations from freifunk into own translation files 2011-02-14 18:01:20 +00:00
Jo-Philipp Wich
09ab3902dd modules/admin-full: remove cpu info 2011-02-14 17:05:08 +00:00
Manuel Munz
f49fcbd40e modules/freifunk: Minor i18n fixes 2011-02-14 12:22:41 +00:00
Manuel Munz
c3e4cd62a7 modules/freifunk: make ff_rdate more efficient 2011-02-13 11:21:18 +00:00
Manuel Munz
db1454cf48 modules/freifunk: change ff_rdate to use /etc/config/timeserver 2011-02-12 19:52:48 +00:00
Manuel Munz
518d981c92 modules/freifunk: rdate config not needed anymore 2011-02-12 19:49:35 +00:00
Manuel Munz
f04acc4b94 modules/admin-full: Fixes for rdate config 2011-02-12 19:30:59 +00:00
Manuel Munz
819fa18e16 modules/admin-full: Switch to the new rdate timeserver config in /etc/config/timeserver (#132) 2011-02-12 19:10:19 +00:00
Manuel Munz
408a58f6f6 web: Improve hostname validation 2011-02-12 11:09:13 +00:00
Manuel Munz
fc40d9a462 modules/freifunk: Make menu use i18n 2011-02-11 21:12:44 +00:00
Manuel Munz
4e416a6417 modules/freifunk: Add profile for Bayreuth 2011-02-11 19:05:55 +00:00
Jo-Philipp Wich
0d478ab962 modules/admin-full: rework index page 2011-02-11 05:01:18 +00:00
Manuel Munz
6aa6b3b7eb applications/luci-olsr-services: Move services away from mod-freifunk and make it seperate app instead. 2011-02-10 14:58:44 +00:00
Manuel Munz
6411e58b09 modules/freifunk: Fix html error, closes #197 2011-02-09 20:16:16 +00:00
Jo-Philipp Wich
2cb4a823a2 modules/admin-full: fix checkbox default states 2011-02-08 17:41:33 +00:00
Jo-Philipp Wich
1f653ab141 modules/admin-full: IE 8 JavaScript fixes... 2011-02-06 01:58:55 +00:00
Manuel Munz
8cd629e148 modules/freifunk: Fix problem with public_status html 2011-02-03 15:17:50 +00:00
Jo-Philipp Wich
617e93a623 modules/admin-full: fix default state option on led control page 2011-02-02 23:47:54 +00:00
Manuel Munz
8ab48be606 modules/freifunk: i18n for basics.lua and helptext for latlon (#177) 2011-02-02 10:55:38 +00:00
Jo-Philipp Wich
2414ae3f9a modules/admin-full: allow multiple dropbear instances again 2011-01-30 16:11:43 +00:00
Jo-Philipp Wich
7433b822ba modules/admin-full: fix wireless bridging from within wifi config page 2011-01-30 01:30:22 +00:00
Jo-Philipp Wich
80c2b4cf46 modules/admin-full: add ip6tables status output (#193) 2011-01-29 22:50:13 +00:00
Jo-Philipp Wich
3be5b9fa06 modules/admin-full: use new Flag default facility to improve handling of peerdns and defaultroute bools 2011-01-29 17:58:22 +00:00
Manuel Munz
3d0d60f3fb admin_uci: Fix spelling, close #191 2011-01-29 13:01:03 +00:00
Jo-Philipp Wich
7e9b472ea9 revert accidentally committed changes 2011-01-29 03:33:48 +00:00
Jo-Philipp Wich
ae8769ce7b po: sync radvd translations 2011-01-29 03:32:06 +00:00
Manuel Munz
c2b107ed46 modules/freifunk: Oops, forgot to fix that one before commiting, working again now 2011-01-29 01:19:22 +00:00
Manuel Munz
77475804e0 modules/freifunk: i18n 2011-01-28 23:31:10 +00:00
Manuel Munz
3813d639de applications/ffwizard: Do not disable diversity because we don't know which antenna is connected. Instead show a warning on admin/freifunk/adminindex when diversity is enabled and tell the user to change that. 2011-01-27 13:52:37 +00:00
Manuel Munz
c36fd44de2 applications/ffwizard: Massive changes to the ffwizard to make it more generic. Also introduces changes to the community profiles. ffwizard replaces ffwizard-leipzig now. It is not completely finished yet, but should work in most cases. 2011-01-25 21:04:57 +00:00
Jo-Philipp Wich
dc0688dbbc modules/admin-full: fix txpower related config issues with atheros and broadcom drivers 2011-01-24 07:37:06 +00:00
Jo-Philipp Wich
02977e5329 modules/admin-full: properly escape title is uci changes menu entries, fixes 3rd party templates still displaying the menu 2011-01-22 00:09:43 +00:00
Jo-Philipp Wich
68c596d98e modules/admin-full: revert wifi_join.htm from previous commit 2011-01-20 23:29:00 +00:00
Jo-Philipp Wich
6942e4ab1b modules/admin-full: rework wifi status templates 2011-01-20 23:27:48 +00:00
Jo-Philipp Wich
5d426cf4ac modules/admin-full: rework wifi CBI maps 2011-01-20 23:26:49 +00:00
Jo-Philipp Wich
b8c1487f6d modules/admin-full: add menupoints for wifi networks 2011-01-20 23:25:40 +00:00
Jo-Philipp Wich
0f4a0cd85a modules/admin-full: fix diagnostics page in IE 2011-01-20 12:49:42 +00:00
Jo-Philipp Wich
5841fce7c6 modules/admin-full: allown symbolic hostnames for pptp server option 2011-01-19 18:42:06 +00:00
Jo-Philipp Wich
36a2fbae7b modules/admin-core: fix stray servicectl button in modemenu 2011-01-18 18:01:53 +00:00
Manuel Munz
5858bd3c13 modules/freifunk: When olsrd was loaded but there were no neighbors then the page for services was showing an error. 2011-01-15 18:13:19 +00:00
Jo-Philipp Wich
723914264e modules/admin-full: make "Join Network" translateble, thanks noodlex 2011-01-14 22:43:15 +00:00
Jo-Philipp Wich
6718931452 modules/admin-full: remove old welcome page 2011-01-13 22:27:14 +00:00
Jo-Philipp Wich
13fbce85b4 modules/admin-full: make logout a toplevel item, remove overview menu 2011-01-13 22:21:16 +00:00
Jo-Philipp Wich
ce71032408 modules/admin-full: merge Overview -> User Interface into System -> System page 2011-01-13 22:13:35 +00:00
Manuel Munz
fde45180c9 modules/freifunk: Add suffix to augsburg profile 2011-01-12 20:58:34 +00:00
Manuel Munz
2d14ee545b modules/freifunk: Fix js in public_status.htm 2011-01-11 13:15:38 +00:00
Jo-Philipp Wich
8feae0cba8 modules/admin-full: rework wep/wpa key handling 2011-01-10 23:23:32 +00:00
Jo-Philipp Wich
84c6b17d78 modules/admin-full: display kernel version 2011-01-10 23:08:10 +00:00
Jo-Philipp Wich
f43cdc0e35 modules/admin-full: add enable_vlan4k option to switch page 2011-01-10 18:40:35 +00:00
Jo-Philipp Wich
f61147a82b modules/admin-full: fixup newlines when storing sysupgrade.conf 2011-01-10 15:48:49 +00:00
Jo-Philipp Wich
69a377e302 modules/admin-full: fix broadcast address option 2011-01-09 22:52:49 +00:00
Manuel Munz
aed262df1f modules/freifunk: Add profile Rosbach, change Jena essid and dns servers 2011-01-09 18:16:30 +00:00
Jo-Philipp Wich
ea7a4bee18 modules/freifunk: do some minor code cleanups and html fixes in public status page 2011-01-03 00:16:45 +00:00
Jo-Philipp Wich
c4f70ce38a modules/rpc: remove uvl bindings 2011-01-02 19:55:21 +00:00
Jo-Philipp Wich
b06772e9fd modules/admin-core: remove uvl schemas 2011-01-02 19:30:58 +00:00
Manuel Munz
9dcf1d9e60 2010-12-21 22:07:57 +00:00
Manuel Munz
56bff936e7 modules/freifunk: Fix a problem that happened when ipv6 was not enabled by adding checks 2010-12-17 03:35:17 +00:00
Manuel Munz
1a2165b0bd modules/freifunk: Delete cgi-bin-{nodes,status}.html because they were moved to applications/luci-olsr 2010-12-17 02:16:21 +00:00
Manuel Munz
6951da02ce modules/freifunk: Make status page update dynamically with javascript and small cosmetic changes. 2010-12-15 16:35:19 +00:00
Manuel Munz
03baaa144f modules/freifunk: Revert last change 2010-12-07 11:27:22 +00:00
Manuel Munz
3f7179869f modules/freifunk: Wifi status was not showing on brcm47xx. 2010-12-07 11:13:39 +00:00
Manuel Munz
0a047ca8b8 modules/freifunk: forgot to make new variables local in last patch 2010-12-05 18:55:05 +00:00
Manuel Munz
a5e14ba6b2 modules/freifunk: Prevent injections 2010-12-05 18:53:00 +00:00
Jo-Philipp Wich
2530590e50 modules/admin-full: 6to4 now supports multiple internal networks 2010-12-03 22:24:08 +00:00
Jo-Philipp Wich
02ad68a406 modules/admin-full: add supported bands to wifi overview adapter titles 2010-12-02 12:21:18 +00:00
Jo-Philipp Wich
4e1bf37c43 modules/admin-full: add uptime to iface status templates 2010-12-01 21:17:39 +00:00
Jo-Philipp Wich
a493e28e91 modules/admin-full: utilize luci.model.network, add uptime in iface_status action 2010-12-01 21:16:49 +00:00
Jo-Philipp Wich
d7ff116d8a modules/admin-full: use String.format('%t', ...) in lease status template 2010-12-01 20:54:52 +00:00
Jo-Philipp Wich
22aa83de00 modules/admin-full: resolve scope issue in previous commit 2010-12-01 20:07:17 +00:00
Jo-Philipp Wich
9be4231a10 modules/admin-full: hide rdate if not present in config 2010-12-01 20:03:13 +00:00
Manuel Munz
12f0c3cdd6 modules/freifunk: show warning when libiwinfo is not installed. 2010-12-01 12:31:07 +00:00
Jo-Philipp Wich
143131ea77 modules/admin-full: track non-tcp or udp connections, use /proc/net/nf_conntrack on newer systems 2010-11-29 14:14:17 +00:00
Jo-Philipp Wich
ceff3fc35c modules/admin-full: implement connection graph, cross browser fixes 2010-11-28 18:01:07 +00:00
Jo-Philipp Wich
750b023494 modules/admin-full: implement load graph 2010-11-28 14:40:43 +00:00
Jo-Philipp Wich
45cedb0fbd modules/admin-full: fix ordering 2010-11-28 06:51:33 +00:00
Jo-Philipp Wich
9c6efa1554 modules/admin-full: hide special interfaces like imq0, mon.wlan0 etc. 2010-11-28 06:50:38 +00:00
Jo-Philipp Wich
ea8465e98b modules/admin-full: remove leftover debug html 2010-11-28 06:45:10 +00:00
Jo-Philipp Wich
ae3825387b modules/admin-full: add SVG based realtime bandwidth status 2010-11-28 06:41:45 +00:00
Manuel Munz
f45d5fb952 modules/freifunk: Fix whitespace errors 2010-11-27 18:44:47 +00:00
Manuel Munz
16b42cd274 modules/freifunk: Add latlon to all profiles and add profiles for Dresden, Neuss, Pberg, Piraten Bergisches Land and Piraten Dresden. Thanks to patrick(at)lunatiki(dot)de 2010-11-27 18:35:44 +00:00
Jo-Philipp Wich
aaeec06e3e modules/admin-full: display an error if libiwinfo is not installed 2010-11-27 18:24:38 +00:00
Jo-Philipp Wich
2e0fbbadc5 modules/admin-full: rework fstab pages, include extroot options 2010-11-27 04:55:38 +00:00
Jo-Philipp Wich
21c441c5d1 modules/admin-full: honour keep settings choice on firmware upgrade 2010-11-26 16:50:11 +00:00
Jo-Philipp Wich
0ba2c5c661 modules/admin-full: remove debug code for firmware upgrade 2010-11-26 16:41:30 +00:00
Manuel Munz
d003857775 modules/freifunk: Argh, accidentally reverted translation string. 2010-11-26 14:14:41 +00:00
Manuel Munz
1c0f48fed6 modules/freifunk: Optimize variable init and fix whitespace issues 2010-11-26 14:12:35 +00:00
Manuel Munz
4451d551a4 modules/freifunk: fix typo 2010-11-26 13:43:20 +00:00
Manuel Munz
f71776c1cd modules/freifunk: Rewrite status as view and use iwinfo 2010-11-26 11:01:08 +00:00
Manuel Munz
f1c6b2974b modules/freifunk: Add profile for Bern. (#169) 2010-11-25 16:29:42 +00:00
Jo-Philipp Wich
2d5d5a860c modules/admin-core: remove luci-flash 2010-11-25 08:15:44 +00:00
Jo-Philipp Wich
77ae07c88f modules/admin-full: pass along backlink in uci pages 2010-11-25 08:06:22 +00:00
Jo-Philipp Wich
5b05e6d020 modules/admin-full: style fixes on diagnostics page 2010-11-24 20:14:44 +00:00
Jo-Philipp Wich
23da14d303 modules/admin-full: add diagnostics page with ping / traceroute / nslookup 2010-11-24 20:09:37 +00:00
Jo-Philipp Wich
c897d47af2 modules/admin-full: fix backup generation 2010-11-24 13:42:20 +00:00
Manuel Munz
a411c56c87 modules/freifunk/services: Use cbi table style 2010-11-23 23:40:54 +00:00
Jo-Philipp Wich
f3d0ba58e5 modules/admin-full: disable hosts page if dnsmasq is not installed 2010-11-23 22:38:01 +00:00
Jo-Philipp Wich
1aa676d501 modules/admin-full: make menus work with no dnsmasq or firewall installed 2010-11-23 00:11:00 +00:00
Manuel Munz
cf6bda5c96 Move redirects to modules/freifunk (#151) 2010-11-21 19:17:22 +00:00
Manuel Munz
b4e6abe5bf modules/freifunk: Fix ff_mapupdate and close #128 2010-11-18 19:53:33 +00:00
Jo-Philipp Wich
895c657381 modules/admin-full: fix swapped RX/TX in iface overview (#165) 2010-11-18 14:54:46 +00:00
Manuel Munz
14128c29e4 modules/admin-full/system: Add option for log_port 2010-11-18 13:49:52 +00:00
Manuel Munz
8c71e234dc modules/freifunk: Add netmask to marburg community template 2010-11-18 10:31:51 +00:00
Manuel Munz
610629769a modules/freifunk: fix community template for augsburg 2010-11-18 10:30:17 +00:00
Manuel Munz
c30a8a9d52 modules/freifunk: Fix/add some translations 2010-11-18 09:28:16 +00:00
Jo-Philipp Wich
4025427692 modules/admin-full: layout tweaks 2010-11-18 04:25:07 +00:00
Jo-Philipp Wich
e73df4fb45 modules/admin-full: use big wifi icons 2010-11-18 03:41:13 +00:00
Manuel Munz
e8a9cad684 modules/freifunk: Make the public index page editable 2010-11-18 03:29:17 +00:00
Manuel Munz
543e129ab5 modules/freifunk: Fix small error for wireless protocol 2010-11-18 03:26:27 +00:00
Manuel Munz
8e62643c6a modules/freifunk: Add community profile for Marburg 2010-11-18 03:10:44 +00:00
Jo-Philipp Wich
a5dc680dee modules/admin-full: IE fixes 2010-11-18 01:34:56 +00:00
Manuel Munz
b054595412 Freifunk: Add page to show services announced by olsrd 2010-11-17 22:45:36 +00:00
Jo-Philipp Wich
184523b6e7 modules/admin-full: xhr fixes 2010-11-17 15:23:21 +00:00
Jo-Philipp Wich
ba226fda1b modules/admin-full: add missing translations to switch config page 2010-11-17 01:57:53 +00:00
Jo-Philipp Wich
218ca5d731 modules/admin-full: fix disabling of rebind protection in dnsmasq config 2010-11-17 00:06:40 +00:00
Jo-Philipp Wich
37c749025d modules/admin-full: rework static routes config, add metric, mtu and live validation 2010-11-16 19:06:51 +00:00
Jo-Philipp Wich
ce88550559 modules/admin-full: fix wifi join 2010-11-16 00:04:28 +00:00
Jo-Philipp Wich
3386d649ea modules/admin-full: readd atm bridge config 2010-11-15 23:00:53 +00:00
Jo-Philipp Wich
125eb141de modules/admin-full: rework interface add model 2010-11-15 22:11:18 +00:00
Jo-Philipp Wich
d26e671b78 modules/admin-full: add missing svn property to previous commit 2010-11-15 22:09:47 +00:00
Jo-Philipp Wich
75e807e289 modules/admin-full: new interface overview page, other template changes 2010-11-15 22:08:42 +00:00
Jo-Philipp Wich
b6ee173c59 modules/admin-full: new network actions 2010-11-15 22:04:56 +00:00
Jo-Philipp Wich
251088304e modules/admin-full: template tweaks 2010-11-15 14:41:30 +00:00
Jo-Philipp Wich
19d1578077 modules/admin-full: hide 6to4 options for other protocols 2010-11-15 12:42:24 +00:00
Jo-Philipp Wich
07bc8396a9 modules/admin-full: add 6to4 configuration support 2010-11-15 12:31:41 +00:00