summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gpscap.ini4
-rw-r--r--gpscap.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/gpscap.ini b/gpscap.ini
index 1981f2ab..167db08a 100644
--- a/gpscap.ini
+++ b/gpscap.ini
@@ -600,7 +600,7 @@ interfaces = CF
tested = 2.16
submitter = Oleg Gusev <oleg@crista.uni-wuppertal.de>.
notes = Uses SiRF firmware version 220.006.000ES. Accepts WAAS Mode Disable
- (<tt>$PSRF108,00*02</tt>) and WAAS Mode Enable (<tt>$PSRF108,01*03</tt>)
+ (<code>$PSRF108,00*02</code>) and WAAS Mode Enable (<code>$PSRF108,01*03</code>)
controls.
#%Bluenext
@@ -1593,7 +1593,7 @@ submitter = Chris S. Newell <chris@newellfamily.net>
type = device
vendor = Magellan
packaging = handset
-techdoc = http://support.magellangps.com/support/index.php?_m=downloads&_a=viewdownload&downloaditemid=322
+techdoc = http://support.magellangps.com/support/index.php?_m=downloads%26_a=viewdownload#26downloaditemid=322
engine = unknown
interfaces = USB
tested = regression
diff --git a/gpscap.py b/gpscap.py
index bb662777..140eb09d 100644
--- a/gpscap.py
+++ b/gpscap.py
@@ -56,7 +56,7 @@ class GPSDictionary(ConfigParser.RawConfigParser):
raise ConfigParser.Error("%s has invalid vendor" % section)
def HTMLDump(self, ofp):
- thead = """<table border='1' style='font-size:small;background-color:#CCCCCC'>
+ thead = """<table style='border:1px solid gray;font-size:small;background-color:#CCCCCC'>
<caption>Listing %s devices from %s vendors</caption>
<tr>
<th>Name</th>
@@ -69,8 +69,8 @@ class GPSDictionary(ConfigParser.RawConfigParser):
<th style='width:50%%'>Notes</th>
</tr>
"""
- vhead1 = "<tr><td style='text-align:center;' colspan='7'><a href='%s'>%s</a></td></tr>\n"
- vhead2 = "<tr><td style='text-align:center;' colspan='7'><a href='%s'>%s</a><br><p>%s</p></td></tr>\n"
+ vhead1 = "<tr><td style='text-align:center;' colspan='8'><a href='%s'>%s</a></td></tr>\n"
+ vhead2 = "<tr><td style='text-align:center;' colspan='8'><a href='%s'>%s</a><br><p>%s</p></td></tr>\n"
hotpluggables = ("pl2303", "CP2101")
ofp.write(thead % (len(self.devices), len(self.vendors)))
for vendor in self.vendors: