mirror of https://github.com/aredn/aredn.git
bugfix: removed global css border change
This commit is contained in:
parent
4f2d68bc08
commit
d55f6de4cf
|
@ -15,7 +15,6 @@ hr {
|
||||||
|
|
||||||
body table {
|
body table {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dist-alert {
|
.dist-alert {
|
||||||
|
|
|
@ -15,7 +15,6 @@ hr {
|
||||||
|
|
||||||
body table {
|
body table {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dist-alert {
|
.dist-alert {
|
||||||
|
|
|
@ -46,9 +46,8 @@ use channelmaps;
|
||||||
#
|
#
|
||||||
|
|
||||||
# test for web connectivity (for maps)
|
# test for web connectivity (for maps)
|
||||||
my $pingOk=0;
|
$pingOk=is_online();
|
||||||
my $rc=system("ping -c2 -W1 8.8.8.8 > /dev/null 2>&1");
|
|
||||||
$pingOk=1 if($rc==0);
|
|
||||||
@output = ();
|
@output = ();
|
||||||
@errors = ();
|
@errors = ();
|
||||||
|
|
||||||
|
@ -164,11 +163,17 @@ $parms{wifi_txpower} = $wifi_txpower;
|
||||||
|
|
||||||
if($parms{button_apply} or $parms{button_save})
|
if($parms{button_apply} or $parms{button_save})
|
||||||
{
|
{
|
||||||
my $wifiintf = get_interface("wifi");
|
if($wifi_distance < 1 or $wifi_distance =~ /\D/)
|
||||||
$cmd = "";
|
{
|
||||||
$cmd .= "iw phy phy0 set distance $wifi_distance >/dev/null 2>&1;";
|
push (@errors, "invalid distance value");
|
||||||
$cmd .= "iw dev $wifiintf set txpower fixed ${wifi_txpower}00 >/dev/null 2>&1;";
|
} else {
|
||||||
system $cmd;
|
my $wifiintf = get_interface("wifi");
|
||||||
|
$cmd = "";
|
||||||
|
$cmd .= "iw phy phy0 set distance $wifi_distance >/dev/null 2>&1;";
|
||||||
|
$cmd .= "iw dev $wifiintf set txpower fixed ${wifi_txpower}00 >/dev/null 2>&1;";
|
||||||
|
system $cmd;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -280,8 +285,6 @@ if($parms{button_save})
|
||||||
$wifi_chanbw = 20;
|
$wifi_chanbw = 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
push (@errors, "invalid WiFi distance") if $wifi_distance < 0 or $wifi_distance =~ /\D/;
|
|
||||||
|
|
||||||
$wifi_country_validated=0;
|
$wifi_country_validated=0;
|
||||||
foreach my $testcountry (split(',',"00,HX,AD,AE,AL,AM,AN,AR,AT,AU,AW,AZ,BA,BB,BD,BE,BG,BH,BL,BN,BO,BR,BY,BZ,CA,CH,CL,CN,CO,CR,CY,CZ,DE,DK,DO,DZ,EC,EE,EG,ES,FI,FR,GE,GB,GD,GR,GL,GT,GU,HN,HK,HR,HT,HU,ID,IE,IL,IN,IS,IR,IT,JM,JP,JO,KE,KH,KP,KR,KW,KZ,LB,LI,LK,LT,LU,LV,MC,MA,MO,MK,MT,MY,MX,NL,NO,NP,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PR,QA,RO,RS,RU,RW,SA,SE,SG,SI,SK,SV,SY,TW,TH,TT,TN,TR,UA,US,UY,UZ,VE,VN,YE,ZA,ZW")) {
|
foreach my $testcountry (split(',',"00,HX,AD,AE,AL,AM,AN,AR,AT,AU,AW,AZ,BA,BB,BD,BE,BG,BH,BL,BN,BO,BR,BY,BZ,CA,CH,CL,CN,CO,CR,CY,CZ,DE,DK,DO,DZ,EC,EE,EG,ES,FI,FR,GE,GB,GD,GR,GL,GT,GU,HN,HK,HR,HT,HU,ID,IE,IL,IN,IS,IR,IT,JM,JP,JO,KE,KH,KP,KR,KW,KZ,LB,LI,LK,LT,LU,LV,MC,MA,MO,MK,MT,MY,MX,NL,NO,NP,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PR,QA,RO,RS,RU,RW,SA,SE,SG,SI,SK,SV,SY,TW,TH,TT,TN,TR,UA,US,UY,UZ,VE,VN,YE,ZA,ZW")) {
|
||||||
if ( $testcountry eq $wifi_country ) {
|
if ( $testcountry eq $wifi_country ) {
|
||||||
|
@ -451,7 +454,7 @@ function updDist(x) {
|
||||||
document.getElementsByName('wifi_distance_disp')[0].value = x;
|
document.getElementsByName('wifi_distance_disp')[0].value = x;
|
||||||
dist_hidden.value = xc;
|
dist_hidden.value = xc;
|
||||||
// if default, then ALERT!
|
// if default, then ALERT!
|
||||||
if(dist_hidden.value==100000) {
|
if(dist_hidden.value==0) {
|
||||||
distBox.className = 'dist-alert';
|
distBox.className = 'dist-alert';
|
||||||
} else {
|
} else {
|
||||||
distBox.className = 'dist-norm';
|
distBox.className = 'dist-norm';
|
||||||
|
@ -590,7 +593,12 @@ print "</select></td>
|
||||||
print "<tr><td colspan='4'><hr /></td></tr>";
|
print "<tr><td colspan='4'><hr /></td></tr>";
|
||||||
print "<tr><td align=left>Latitude</td><td><input type=text name=latitude size=10 value='$lat' title='Latitude value (in decimal) (ie. 30.312354)' /></td>";
|
print "<tr><td align=left>Latitude</td><td><input type=text name=latitude size=10 value='$lat' title='Latitude value (in decimal) (ie. 30.312354)' /></td>";
|
||||||
print "<td align='right' colspan='2'>";
|
print "<td align='right' colspan='2'>";
|
||||||
print "<button type='button' id='hideshowmap' value='show' onClick='toggleMap(this);'>Show Map</button> " if($pingOk);
|
if($pingOk)
|
||||||
|
{
|
||||||
|
print "<button type='button' id='hideshowmap' value='show' onClick='toggleMap(this);'>Show Map</button> ";
|
||||||
|
} else {
|
||||||
|
print "<button disabled type='button' title='The map is only available if this node has internet access'>Show Map</button> ";
|
||||||
|
}
|
||||||
print "<input type=submit name='button_updatelocation' value='Apply Location Settings' title='Immediately use these location settings'>";
|
print "<input type=submit name='button_updatelocation' value='Apply Location Settings' title='Immediately use these location settings'>";
|
||||||
print "</td>\n";
|
print "</td>\n";
|
||||||
print "<tr><td align=left>Longitude</td><td><input type=text name=longitude size=10 value='$lon' title='Longitude value (in decimal) (ie. -95.334454)' /></td>";
|
print "<tr><td align=left>Longitude</td><td><input type=text name=longitude size=10 value='$lon' title='Longitude value (in decimal) (ie. -95.334454)' /></td>";
|
||||||
|
@ -619,7 +627,7 @@ print "<table cellpadding=5 border=1 width=100%><tr><td valign=top width=33%>\n"
|
||||||
# WiFi settings
|
# WiFi settings
|
||||||
#
|
#
|
||||||
|
|
||||||
print "<table width=100%>
|
print "<table width=100% style='border-collapse: collapse;'>
|
||||||
<tr><th colspan=2>WiFi</th></tr>
|
<tr><th colspan=2>WiFi</th></tr>
|
||||||
<tr><td>Protocol</td>
|
<tr><td>Protocol</td>
|
||||||
<td>";
|
<td>";
|
||||||
|
@ -746,7 +754,7 @@ if($wifi_proto ne "disabled")
|
||||||
for($i = wifi_maxpower($wifi_channel); $i >= 1; --$i) { selopt($i+$txpoweroffset ." dBm", $i, $wifi_txpower) }
|
for($i = wifi_maxpower($wifi_channel); $i >= 1; --$i) { selopt($i+$txpoweroffset ." dBm", $i, $wifi_txpower) }
|
||||||
print "</select> <a href=\"/help.html\#power\" target=\"_blank\"><img src=\"/qmark.png\"></a></td></tr>\n";
|
print "</select> <a href=\"/help.html\#power\" target=\"_blank\"><img src=\"/qmark.png\"></a></td></tr>\n";
|
||||||
|
|
||||||
print "<tr id='dist' class='dist-norm'><td>Distance to<br />FARTHEST Node</td>\n";
|
print "<tr id='dist' class='dist-norm'><td>Distance to<br />FARTHEST Neighbor</td>\n";
|
||||||
$wifi_distance_disp=int($wifi_distance/1000);
|
$wifi_distance_disp=int($wifi_distance/1000);
|
||||||
|
|
||||||
print "<td><input readonly type=text size=8 name='wifi_distance_disp' value='$wifi_distance_disp' title='Distance to the farthest neighbor'> <span id='distance_unit_text'>kilometers</span><br />";
|
print "<td><input readonly type=text size=8 name='wifi_distance_disp' value='$wifi_distance_disp' title='Distance to the farthest neighbor'> <span id='distance_unit_text'>kilometers</span><br />";
|
||||||
|
|
|
@ -15,7 +15,6 @@ hr {
|
||||||
|
|
||||||
body table {
|
body table {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dist-alert {
|
.dist-alert {
|
||||||
|
|
|
@ -15,7 +15,6 @@ hr {
|
||||||
|
|
||||||
body table {
|
body table {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dist-alert {
|
.dist-alert {
|
||||||
|
|
|
@ -15,7 +15,6 @@ hr {
|
||||||
|
|
||||||
body table {
|
body table {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dist-alert {
|
.dist-alert {
|
||||||
|
|
Loading…
Reference in New Issue