This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via 499bc000ffd5e65325d1fa9bbf7e1085b62eaea3 (commit) via 324cae81712b7b1b7b80333ad92e369cac28b6ce (commit) from 3bb552552806066293fcfbedb8a41458393cfcd0 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 499bc000ffd5e65325d1fa9bbf7e1085b62eaea3 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Wed Sep 15 17:40:35 2010 +0200
Updated hostapd (0.7.3).
commit 324cae81712b7b1b7b80333ad92e369cac28b6ce Author: Arne Fitzenreiter arne_f@ipfire.org Date: Mon Nov 8 20:33:26 2010 +0100
wlanap.cgi: changed txpower to textfield if driver is not madwifi.
-----------------------------------------------------------------------
Summary of changes: html/cgi-bin/wlanap.cgi | 14 ++++++++++---- lfs/hostapd | 6 +++--- 2 files changed, 13 insertions(+), 7 deletions(-)
Difference in files: diff --git a/html/cgi-bin/wlanap.cgi b/html/cgi-bin/wlanap.cgi index 0301895..cd5bda3 100644 --- a/html/cgi-bin/wlanap.cgi +++ b/html/cgi-bin/wlanap.cgi @@ -371,14 +371,20 @@ foreach $channel (@channellist){
print <<END </select></td></tr> -<tr><td width='25%' class='base'>Tx Power: </td><td class='base' colspan='3'><select name='TXPOWER'> +<tr><td width='25%' class='base'>Tx Power: </td><td class='base' colspan='3'> END ; -foreach $txpower (@txpower){ - print "<option $selected{'TXPOWER'}{$txpower}>$txpower</option> dBm"; + +if ( $wlanapsettings{'DRIVER'} eq 'MADWIFI' ){ + print "<select name='TXPOWER'>"; + foreach $txpower (@txpower){ + print "<option $selected{'TXPOWER'}{$txpower}>$txpower</option> dBm"; + } + print " </select></td></tr>"; +} else { + print "<input type='text' name='TXPOWER' size='10' value='$wlanapsettings{'TXPOWER'}' /></td></tr>" } print <<END - </select></td></tr> <tr><td width='25%' class='base'>Passphrase: </td><td class='base' colspan='3'><input type='text' name='PWD' size='63' value='$wlanapsettings{'PWD'}' /></td></tr> <tr><td width='25%' class='base'>HT Caps: </td><td class='base' colspan='3'><input type='text' name='HTCAPS' size='63' value='$wlanapsettings{'HTCAPS'}' /></td></tr> <tr><td width='25%' class='base'>Loglevel (hostapd): </td><td class='base' width='25%'> diff --git a/lfs/hostapd b/lfs/hostapd index 90b35db..57d511a 100644 --- a/lfs/hostapd +++ b/lfs/hostapd @@ -24,7 +24,7 @@
include Config
-VER = 0.7.2 +VER = 0.7.3
THISAPP = hostapd-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = hostapd -PAK_VER = 19 +PAK_VER = 20
DEPS = ""
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = f47689c62ee8c1c59989b402d4f130c3 +$(DL_FILE)_MD5 = 91a7c8d0f090b7104152d3455a84c112
install : $(TARGET)
hooks/post-receive -- IPFire 2.x development tree