Update of /cvsroot/meshdb/www/db2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5828/www/db2
Modified Files:
submit.php view-netloc.inc.php
Log Message:
Added a field for antenna polarisation (#988849).
Index: submit.php
===================================================================
RCS file: /cvsroot/meshdb/www/db2/submit.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- submit.php 26 Jul 2004 12:45:22 -0000 1.9
+++ submit.php 27 Jul 2004 08:09:33 -0000 1.10
@@ -402,7 +402,7 @@
$newvals = $config;
$s = setexp($newvals, $oldconfig, $changes,
$strs = "carddesc cardurl antdesc anturl"
- ." imageurl protocol",
+ ." imageurl protocol polarisation",
$ints = "channel",
$dbls = "estgain antspread direction",
$pfx = $ifname.".");
Index: view-netloc.inc.php
===================================================================
RCS file: /cvsroot/meshdb/www/db2/view-netloc.inc.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- view-netloc.inc.php 10 Aug 2002 03:33:55 -0000 1.1.1.1
+++ view-netloc.inc.php 27 Jul 2004 08:09:33 -0000 1.2
@@ -91,6 +91,19 @@
</tr>
<tr>
+ <th>Polarisation:</th>
+ <td><?=selectval("config[$ifname.polarisation]",
+ array(
+ NULL => "Unspecified",
+ "horiz" => "Horizontal",
+ "vert" => "Vertical",
+ "cw" => "Clockwise",
+ "ccw" => "Counter clockwise",
+ ))?></td>
+ <?=edithelp("")?>
+</tr>
+
+<tr>
<th>Comment:</th>
<td><?=valtext("netloc[$ifname.comment]")?></td>
<?=edithelp("")?>
|