summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SConstruct2
-rw-r--r--gpscap.ini2
-rw-r--r--gpscap.py20
-rw-r--r--www/bt.html64
-rw-r--r--www/bu_303b.html78
-rw-r--r--www/excellence.html66
-rw-r--r--www/faq.html.in66
-rw-r--r--www/for-vendors.html66
-rw-r--r--www/future.html66
-rw-r--r--www/gps-hacking.html66
-rw-r--r--www/gps_report.cgi.in94
-rw-r--r--www/gpsd-trans-logo.pngbin353526 -> 353520 bytes
-rw-r--r--www/gpsd1.pngbin23140 -> 23139 bytes
-rw-r--r--www/gypsy.html64
-rw-r--r--www/hacking.html.in64
-rw-r--r--www/hall-of-shame.html64
-rw-r--r--www/hardware-head.html.in123
-rw-r--r--www/hardware-tail.html16
-rw-r--r--www/history.html66
-rw-r--r--www/index.html.in98
-rw-r--r--www/paper.gifbin8986 -> 8985 bytes
-rw-r--r--www/references.html62
-rw-r--r--www/troubleshooting.html64
-rw-r--r--www/upstream-bugs.html68
-rw-r--r--www/wishlist.html74
-rw-r--r--www/xgps-sample.html67
26 files changed, 709 insertions, 711 deletions
diff --git a/SConstruct b/SConstruct
index 416e6ef8..edf50b34 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1394,7 +1394,7 @@ www = env.Alias('www', webpages)
def validation_list(target, source, env):
for page in glob.glob("www/*.html"):
with open(page) as fp:
- if "Valid XHTML" in fp.read():
+ if "Valid HTML" in fp.read():
print os.path.join(website, os.path.basename(page))
Utility("validation-list", [www], validation_list)
diff --git a/gpscap.ini b/gpscap.ini
index 6b7e39e3..970a75f7 100644
--- a/gpscap.ini
+++ b/gpscap.ini
@@ -1421,7 +1421,7 @@ engine = unknown
interfaces = RS232
tested = regression
rating = good
-submitter = Ángel Marqués Mateu <amarques@cgf.upv.es>
+submitter = Angel Marques Mateu <amarques@cgf.upv.es>
notes =
logs = magellan315.log
diff --git a/gpscap.py b/gpscap.py
index 99b503a3..6127217e 100644
--- a/gpscap.py
+++ b/gpscap.py
@@ -69,7 +69,7 @@ class GPSDictionary(ConfigParser.RawConfigParser):
</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"
+ vhead2 = "<tr><td style='text-align:center;' colspan='7'><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:
@@ -98,7 +98,7 @@ class GPSDictionary(ConfigParser.RawConfigParser):
if self.has_option(dev, "techdoc"):
namefield = "<a href='%s'>%s</a>" % (self.get(dev, "techdoc"), dev)
if self.has_option(dev, "discontinued"):
- namefield = namefield + "&nbsp;<img title='Device discontinued' src='discontinued.png' alt='Discontinued icon'/>"
+ namefield = namefield + "&nbsp;<img title='Device discontinued' src='discontinued.png' alt='Discontinued icon'>"
ofp.write("<td>%s</td>\n" % namefield)
ofp.write("<td>%s</td>\n" % self.get(dev, "packaging"))
engine = self.get(dev, "engine")
@@ -115,23 +115,23 @@ class GPSDictionary(ConfigParser.RawConfigParser):
if self.has_option(dev, "tested"):
tested = self.get(dev, "tested")
if tested == "regression":
- testfield += "<img title='Have regression test' src='regression.png' alt='Regression-test icon'/>"
+ testfield += "<img title='Have regression test' src='regression.png' alt='Regression-test icon'>"
else:
testfield += tested
if self.has_option(dev, "noconfigure"):
- testfield += "<img title='Requires -b option' src='noconfigure.png' alt='No-configure icon'/>"
+ testfield += "<img title='Requires -b option' src='noconfigure.png' alt='No-configure icon'>"
if self.get(dev, "rating") == "excellent":
- testfield += "<img src='star.png' alt='Star icon'/><img src='star.png' alt='Star icon'/><img src='star.png' alt='Star icon'/><img src='star.png' alt='Star icon'/>"
+ testfield += "<img src='star.png' alt='Star icon'><img src='star.png' alt='Star icon'><img src='star.png' alt='Star icon'><img src='star.png' alt='Star icon'>"
elif self.get(dev, "rating") == "good":
- testfield += "<img src='star.png' alt='Star icon'/><img src='star.png' alt='Star icon'/><img src='star.png' alt='Star icon'/>"
+ testfield += "<img src='star.png' alt='Star icon'><img src='star.png' alt='Star icon'><img src='star.png' alt='Star icon'>"
elif self.get(dev, "rating") == "fair":
- testfield += "<img src='star.png' alt='Star icon'/><img src='star.png' alt='Star icon'/>"
+ testfield += "<img src='star.png' alt='Star icon'><img src='star.png' alt='Star icon'>"
elif self.get(dev, "rating") == "poor":
- testfield += "<img src='star.png' alt='Star icon'/>"
+ testfield += "<img src='star.png' alt='Star icon'>"
elif self.get(dev, "rating") == "broken":
- testfield += "<img title='Device is broken' src='bomb.png' alt='Bomb icon'/>"
+ testfield += "<img title='Device is broken' src='bomb.png' alt='Bomb icon'>"
if self.has_option(dev, "usbchip") and self.get(dev, "usbchip") in hotpluggables:
- testfield += "<img src='hotplug.png' alt='Hotplug icon'/>"
+ testfield += "<img src='hotplug.png' alt='Hotplug icon'>"
ofp.write("<td>%s</td>\n" % testfield)
nmea = "&nbsp;"
if self.has_option(dev, "nmea"):
diff --git a/www/bt.html b/www/bt.html
index 3d73b556..e4a794dc 100644
--- a/www/bt.html
+++ b/www/bt.html
@@ -1,12 +1,12 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Author" content="Eric S. Raymond"/>
- <meta name="Description" content="Blutooth setup instructions for GPSD"/>
- <meta name="Keywords" content="GPS, translator, mxmap, GIS"/>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric S. Raymond">
+ <meta name="Description" content="Blutooth setup instructions for GPSD">
+ <meta name="Keywords" content="GPS, translator, mxmap, GIS">
+ <link rel="stylesheet" href="main.css" type="text/css">
<title>Bluetooth and GPSD</title>
</head>
@@ -15,36 +15,36 @@
<div id="Header">Bluetooth and <code>gpsd</code></div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -61,7 +61,7 @@ powered on and gpsd is running.</p>
<h2>Installation</h2>
<p>If your system comes with Bluetooth tools preinstalled (look for
-<img src="bt.png" alt="Bluetooth icon"/> on your status bar) you can
+<img src="bt.png" alt="Bluetooth icon"> on your status bar) you can
probably skip these steps.</p>
<ol>
@@ -173,7 +173,7 @@ additional udev rules.</a></p>
</ul>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/bu_303b.html b/www/bu_303b.html
index c40b2c20..c4da45d8 100644
--- a/www/bu_303b.html
+++ b/www/bu_303b.html
@@ -1,13 +1,13 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
<title>BU-303 GPS Receiver</title>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <link rev="made" href="mailto:esr@snark.thyrsus.com" />
- <link rel="stylesheet" href="sitestyle.css" type="text/css" />
- <meta name="description" content="The BU-303 receiver." />
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <link rev="made" href="mailto:esr@snark.thyrsus.com">
+ <link rel="stylesheet" href="sitestyle.css" type="text/css" >
+ <meta name="description" content="The BU-303 receiver.">
+ <link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
@@ -16,34 +16,34 @@ BU-303 GPS Receiver
</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<a href='http://www.catb.org/hacker-emblem/'>
<img src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -52,7 +52,7 @@ BU-303 GPS Receiver
English and remove promotional crap.)</p>
<div style='align:center'>
-<img src="BU303-2.gif" alt="Image of a BU303" width="500" height="300"/>
+<img src="BU303-2.gif" alt="Image of a BU303" width="500" height="300">
</div>
<table cellspacing="0" cellpadding="2" style='align:center' border="0">
@@ -157,9 +157,9 @@ English and remove promotional crap.)</p>
</div>
</td>
<td class="T-1" valign="top" style="width:94%;background-color:#d7f2ff">LED indicator
- for GPS fix or not fix.<br/>
- LED OFF: Receiver is off<br/>
- LED ON : No fix, searching<br/>
+ for GPS fix or not fix.<br>
+ LED OFF: Receiver is off<br>
+ LED ON : No fix, searching<br>
LED Flashing: Position Fixed</td>
</tr>
<tr>
@@ -182,7 +182,7 @@ English and remove promotional crap.)</p>
</tbody>
</table>
-<br/>
+<br>
<table cellspacing="0" cellpadding="2" style='align:center' border="0">
<tbody>
@@ -196,7 +196,7 @@ English and remove promotional crap.)</p>
<tr>
<td class="ffg" valign="top" style="width:33%">Output Messages</td>
<td class="T-1" valign="top" style="width:67%">NMEA0183 V2.2 protocol, and
- supports commands:<br/>
+ supports commands:<br>
GGA, GSA, GSV, RMC, GLL, VTG</td>
</tr>
<tr>
@@ -237,8 +237,8 @@ English and remove promotional crap.)</p>
<td class="ffg" valign="top" style='width:33%;background-color:#d7f2ff'>Horizontal
Accuracy</td>
<td class="T-1" valign="top" style='width:33%;background-color:#d7f2ff'>15m 2d RMS
- without SA<br/>
- 10m 2d RMS WAAS enabled<br/>
+ without SA<br>
+ 10m 2d RMS WAAS enabled<br>
1-5m DGPS corrected .</td>
</tr>
<tr>
@@ -373,7 +373,7 @@ luckier than me; I got my USB subsystem to see it again, but it still
doesn't send bits.</p>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
diff --git a/www/excellence.html b/www/excellence.html
index b2f3957c..2f232eef 100644
--- a/www/excellence.html
+++ b/www/excellence.html
@@ -1,12 +1,12 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <meta name="Author" content="Eric S. Raymond"/>
- <meta name="Description" content="Essay for the Alliance for Code Excellence."/>
- <meta name="Keywords" content="GPS, translator, GIS"/>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric S. Raymond">
+ <meta name="Description" content="Essay for the Alliance for Code Excellence.">
+ <meta name="Keywords" content="GPS, translator, GIS">
+ <link rel="stylesheet" href="main.css" type="text/css">
<title>GPSD and Code Excellence</title>
</head>
<body>
@@ -16,36 +16,36 @@ GPSD and Code Excellence
</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -57,11 +57,11 @@ GPSD and Code Excellence
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -240,7 +240,7 @@ idiosyncratic devices with poorly documented interfaces, testing on
real hardware is vital to fully learn their quirks.</p>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/faq.html.in b/www/faq.html.in
index 74379fa6..ee4af880 100644
--- a/www/faq.html.in
+++ b/www/faq.html.in
@@ -1,13 +1,13 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- @MASTER@ -->
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <meta name="Author" content="Eric S. Raymond" />
- <meta name="Description" content="GPSD Frequently Asked Questions" />
- <meta name="Keywords" content="GPS, translator, GIS" />
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric S. Raymond">
+ <meta name="Description" content="GPSD Frequently Asked Questions">
+ <meta name="Keywords" content="GPS, translator, GIS">
+ <link rel="stylesheet" href="main.css" type="text/css">
<title>GPSD FAQ</title>
</head>
<body>
@@ -17,36 +17,36 @@ GPSD Frequently Asked Questions
</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- FAQ<br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ FAQ<br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -58,11 +58,11 @@ GPSD Frequently Asked Questions
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -815,7 +815,7 @@ with a client session and a GPS active, we have measured gpsd's CPU load
at steadily less than 1% on a low-power, low-speed ARM SBC.</p>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/for-vendors.html b/www/for-vendors.html
index 741205ff..8e59d827 100644
--- a/www/for-vendors.html
+++ b/www/for-vendors.html
@@ -1,12 +1,12 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Author" content="Eric S. Raymond"/>
- <meta name="Description" content="Interfacing with the GPSD project."/>
- <meta name="Keywords" content="GPS, translator, mxmap, GIS"/>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric S. Raymond">
+ <meta name="Description" content="Interfacing with the GPSD project.">
+ <meta name="Keywords" content="GPS, translator, mxmap, GIS">
+ <link rel="stylesheet" href="main.css" type="text/css">
<title>GPSD Welcomes Vendor Cooperation</title>
</head>
<body>
@@ -14,36 +14,36 @@
<div id="Header">GPSD Welcomes Vendor Cooperation</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- For GPS vendors<br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ For GPS vendors<br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -55,11 +55,11 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -222,7 +222,7 @@ home anyway, because engineers do that. We strongly suspect that if
you internally broadcast a request for a Linux or UNIX enthusiast to
work with us you won't be short of choices.</p>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/future.html b/www/future.html
index c4f77045..3637832e 100644
--- a/www/future.html
+++ b/www/future.html
@@ -1,12 +1,12 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Author" content="Eric S. Raymond"/>
- <meta name="Description" content="GPSd is a utility that can listen to a GPS or AIS receiver and re-publish the positional data in a simpler format."/>
- <meta name="Keywords" content="GPS, translator, mxmap, GIS"/>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric S. Raymond">
+ <meta name="Description" content="GPSd is a utility that can listen to a GPS or AIS receiver and re-publish the positional data in a simpler format.">
+ <meta name="Keywords" content="GPS, translator, mxmap, GIS">
+ <link rel="stylesheet" href="main.css" type="text/css">
<title>Future of the GPSD project</title>
</head>
<body>
@@ -14,36 +14,36 @@
<div id="Header">Future of the GPS project</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- Future<br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ Future<br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -55,11 +55,11 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
<p>This page is our roadmap for future features and releases.</p>
@@ -133,7 +133,7 @@ are in effect separate messages.</p></li>
conditionalize their code so it will work with any version.</p>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/gps-hacking.html b/www/gps-hacking.html
index a63295a2..370dfeb4 100644
--- a/www/gps-hacking.html
+++ b/www/gps-hacking.html
@@ -1,12 +1,12 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Author" content="Eric S. Raymond"/>
- <meta name="Description" content="Programmer's guide to GPS hacking."/>
- <meta name="Keywords" content="GPS, translator, GIS"/>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric S. Raymond">
+ <meta name="Description" content="Programmer's guide to GPS hacking.">
+ <meta name="Keywords" content="GPS, translator, GIS">
+ <link rel="stylesheet" href="main.css" type="text/css">
<title>ESR's Guide to Hacking With GPS</title>
</head>
<body>
@@ -14,36 +14,36 @@
<div id="Header">ESR's Guide to Hacking With GPS</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -55,11 +55,11 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -475,7 +475,7 @@ software</a></dt>
</dl>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/gps_report.cgi.in b/www/gps_report.cgi.in
index f2390d74..6e3851ac 100644
--- a/www/gps_report.cgi.in
+++ b/www/gps_report.cgi.in
@@ -102,7 +102,7 @@ might be able to find out ourselves, but which are easier for you to determine.
Every bit of information you can give us about your receiver will help make the
support for it more reliable.</p>
-<hr/>
+<hr>
<h2>Contact information</h2>
<p><em style='color: #ff0000;'>Important!</em> We prefer a valid email
@@ -111,7 +111,7 @@ the device. While we won't use your address for anything other than
asking you questions about your receiver, and maybe asking you to test
specific changes, this gps report will be sent to the gpsd-dev list
which is publicly archived.
-<br/>Example: <code>Eric Raymond &lt;esr&#x40;thyrsus.com&gt;</code></p>
+<br>Example: <code>Eric Raymond &lt;esr&#x40;thyrsus.com&gt;</code></p>
EOF
@@ -126,12 +126,12 @@ exotic and the information you provide in the rest of this form turns
out to be insufficient. Or if your browser is broken enough to botch
the output-sample upload.)</p>
-<hr/>
+<hr>
<h2>Receiver type identification</h2>
<p><em style='color: #ff0000;'>Important!</em> Identify the vendor and model of
your device.
-<br/>Example: <code>Haicom</code> and <code>303S</code>.</p>
+<br>Example: <code>Haicom</code> and <code>303S</code>.</p>
EOF
@@ -146,7 +146,7 @@ vendor's website by giving a search engine the product name. If it's
not linked directly from the vendor's page for the individual product,
look under "Technical Support" or "Product support" on the vendor's
main page.
-<br/>Example: <code>http://www.haicom.com.tw/gps303s.shtml</code></p>
+<br>Example: <code>http://www.haicom.com.tw/gps303s.shtml</code></p>
<p><em>URL of a technical manual:</em>
EOF
@@ -182,7 +182,7 @@ print <<EOF;
may be able to get this from the display of <code>xgps</code>; look for
a Device Type field or at the window title bar. Alternatively, you may find
it in the technical manual.
-<br/>Example: <code>SiRF-II</code> and <code>2.31ES</code>.</p>
+<br>Example: <code>SiRF-II</code> and <code>2.31ES</code>.</p>
EOF
print "<p><em>Chipset:</em>",
@@ -202,7 +202,7 @@ print "<em>NMEA 0183 version emitted:</em>",$query->textfield(-name=>"nmea",
-size=>6);
print <<EOF;
-<hr/>
+<hr>
<h2>Interfaces</h2>
<p>Please identify the receiver's interface type (USB, RS-232, Bluetooth,
@@ -233,7 +233,7 @@ print"<em>USB-to-serial chip:</em>",$query->textfield(-name=>"usbchip",
-size=>72);
print <<EOF;
-<hr/>
+<hr>
<h2>GPSD compatibility</h2>
<p>Please tell us what version you tested with. If you used us a release,
@@ -277,7 +277,7 @@ print "Does the device break if probed or speed switched? " .
-defaults=>[]);
print <<EOF;
-<hr/>
+<hr>
<h2>Technical notes</h2>
<p>Now tell us the things that didn't fit in the rest of the form.
@@ -294,7 +294,7 @@ EOF
print $query->textarea(-name=>"notes", -rows=>10, -cols=>72);
print <<EOF;
-<hr/>
+<hr>
<h2>Output sample</h2>
<p><em style='color: #ff0000;'>Important!</em> We need a sample of the output
@@ -335,7 +335,7 @@ files.</p>
nearest city or other landmark, state/province, country code, and a
rough latitude/longitude. A GPS will give an exact location; we
want this as a sanity check.
-<br/>Example: <code>Groningen, NL, 53.2N 6.6E</code></p>
+<br>Example: <code>Groningen, NL, 53.2N 6.6E</code></p>
EOF
@@ -346,7 +346,7 @@ print <<EOF;
<p>Year-Month-Day of the log capture (the receiver will give us
hour/minute/second).
-<br/>Example: <code>2011-05-14</code>.</p>
+<br>Example: <code>2011-05-14</code>.</p>
EOF
@@ -366,7 +366,7 @@ print $query->textarea(-name=>"sample_notes", -rows=>10, -cols=>72);
print <<EOF;
-<hr/>
+<hr>
<p>Thanks for your help. Here is a summary of the information you have
entered so far:</p>
@@ -375,74 +375,74 @@ EOF
print "<table border='0' width='100%'><tr><td align='center'>";
if ($query->param("submitter")) {
- print "Contact address is <code>". escapeHTML($query->param("submitter")) ."</code><br/>\n";
+ print "Contact address is <code>". escapeHTML($query->param("submitter")) ."</code><br>\n";
} else {
- print "<span style='color:#ff0000;'>No contact address.</span><br/>\n";
+ print "<span style='color:#ff0000;'>No contact address.</span><br>\n";
}
if ($query->param("vendor")) {
- print "Vendor is <code>". escapeHTML($query->param("vendor")) ."</code><br/>\n";
+ print "Vendor is <code>". escapeHTML($query->param("vendor")) ."</code><br>\n";
} else {
- print "<span style='color:#ff0000;'>No vendor.</span><br/>\n";
+ print "<span style='color:#ff0000;'>No vendor.</span><br>\n";
}
if ($query->param("packaging")) {
- print "Packaging type is <code>". escapeHTML($query->param("packaging")) ."</code><br/>\n";
+ print "Packaging type is <code>". escapeHTML($query->param("packaging")) ."</code><br>\n";
} else {
- print "No packaging type specified.<br/>\n";
+ print "No packaging type specified.<br>\n";
}
if ($query->param("model")) {
- print "Model is <code>". escapeHTML($query->param("model")) ."</code><br/>\n";
+ print "Model is <code>". escapeHTML($query->param("model")) ."</code><br>\n";
} else {
- print "<span style='color:#ff0000;'>No model specified.</span><br/>\n";
+ print "<span style='color:#ff0000;'>No model specified.</span><br>\n";
}
if ($query->param("techdoc")) {
- print "<a href='". escapeHTML($query->param("techdoc")) ."'>Document URL specified.</a><br/>\n";
+ print "<a href='". escapeHTML($query->param("techdoc")) ."'>Document URL specified.</a><br>\n";
} else {
- print "<span style='color:#ff0000;'>No document URL.</span><br/>\n";
+ print "<span style='color:#ff0000;'>No document URL.</span><br>\n";
}
if ($output_sample_body) {
print "Output sample uploaded";
} else {
- print "<span style='color:#ff0000;'>No output sample.</span><br/>\n";
+ print "<span style='color:#ff0000;'>No output sample.</span><br>\n";
}
print "</td><td align='center'>";
if ($query->param("chipset")) {
- print "Chipset is <code>". escapeHTML($query->param("chipset")) ."</code><br/>\n";
+ print "Chipset is <code>". escapeHTML($query->param("chipset")) ."</code><br>\n";
} else {
- print "Chipset not specified.<br/>\n";
+ print "Chipset not specified.<br>\n";
}
if ($query->param("firmware")) {
- print "Firmware is <code>". escapeHTML($query->param("firmware")) ."</code><br/>\n";
+ print "Firmware is <code>". escapeHTML($query->param("firmware")) ."</code><br>\n";
} else {
- print "Firmware not specified.<br/>\n";
+ print "Firmware not specified.<br>\n";
}
if ($query->param("nmea")) {
- print "NMEA version is <code>". escapeHTML($query->param("nmea")) ."</code><br/>\n";
+ print "NMEA version is <code>". escapeHTML($query->param("nmea")) ."</code><br>\n";
} else {
- print "NMEA version not specified.<br/>\n";
+ print "NMEA version not specified.<br>\n";
}
if ($query->param("interfaces")) {
- print "Interface type is <code>". escapeHTML($query->param("interfaces")) ."</code><br/>\n";
+ print "Interface type is <code>". escapeHTML($query->param("interfaces")) ."</code><br>\n";
if ($query->param("interfaces") eq "USB") {
if ($query->param("usbchip")) {
- print "USB chip is <code>". escapeHTML($query->param("usbchip")) ."</code><br/>\n";
+ print "USB chip is <code>". escapeHTML($query->param("usbchip")) ."</code><br>\n";
} else {
- print "No USB chip specified.<br/>\n";
+ print "No USB chip specified.<br>\n";
}
}
} else {
- print "No interface type specified.<br/>\n";
+ print "No interface type specified.<br>\n";
}
if ($query->param("tested")) {
- print "Tested with GPSD version <code>". escapeHTML($query->param("tested")) ."</code><br/>\n";
+ print "Tested with GPSD version <code>". escapeHTML($query->param("tested")) ."</code><br>\n";
} else {
- print "No GPSD version specified.<br/>\n";
+ print "No GPSD version specified.<br>\n";
}
if ($query->param("rating")) {
- print "GPSD compatibility is <code>". escapeHTML($query->param("rating")) ."</code><br/>\n";
+ print "GPSD compatibility is <code>". escapeHTML($query->param("rating")) ."</code><br>\n";
} else {
- print "No GPSD compatiblity specified.<br/>\n";
+ print "No GPSD compatiblity specified.<br>\n";
}
if ($query->param("noconfigure")) {
print "Device can be sent catatonic by baud-rate changes<br>\n";
@@ -453,25 +453,25 @@ if ($query->param("noconfigure")) {
print "</td><td align='center'>";
if ($query->param("notes")) {
- print "Technical notes have been entered.<br/>\n";
+ print "Technical notes have been entered.<br>\n";
} else {
- print "No technical notes.<br/>\n";
+ print "No technical notes.<br>\n";
}
if ($query->param("location")) {
- print "Sample location <code>". escapeHTML($query->param("location")) ."</code><br/>\n";
+ print "Sample location <code>". escapeHTML($query->param("location")) ."</code><br>\n";
} else {
- print "No sample location specified.<br/>\n";
+ print "No sample location specified.<br>\n";
}
if ($query->param("date")) {
- print "Sample date <code>". escapeHTML($query->param("date")) ."</code><br/>\n";
+ print "Sample date <code>". escapeHTML($query->param("date")) ."</code><br>\n";
} else {
- print "No sample date specified.<br/>\n";
+ print "No sample date specified.<br>\n";
}
if ($query->param("sample_notes")) {
- print "Notes on the sample have been entered.<br/>\n";
+ print "Notes on the sample have been entered.<br>\n";
} else {
- print "No notes on the sample.<br/>\n";
+ print "No notes on the sample.<br>\n";
}
print "</td></tr></table>";
@@ -514,7 +514,7 @@ EOF
EOF
}
-print "</form>\n<hr/>\n";
+print "</form>\n<hr>\n";
print $query->end_html;
diff --git a/www/gpsd-trans-logo.png b/www/gpsd-trans-logo.png
index ffadc5ec..77080c7c 100644
--- a/www/gpsd-trans-logo.png
+++ b/www/gpsd-trans-logo.png
Binary files differ
diff --git a/www/gpsd1.png b/www/gpsd1.png
index dfc8e921..2162da01 100644
--- a/www/gpsd1.png
+++ b/www/gpsd1.png
Binary files differ
diff --git a/www/gypsy.html b/www/gypsy.html
index dbea31cd..8c19c0d7 100644
--- a/www/gypsy.html
+++ b/www/gypsy.html
@@ -1,46 +1,46 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Description" content="Evaluating the competition"/>
- <meta name="Keywords" content="GPS, translator, GIS"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Description" content="Evaluating the competition">
+ <meta name="Keywords" content="GPS, translator, GIS">
<title>Why You Should use GPSD over Gypsy</title>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<div id="Header">Why You Should use GPSD over Gypsy</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -52,11 +52,11 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -122,7 +122,7 @@ right. Finally we think that, given a choice, we'd prefer to cooperate
with the author of libgypsy than fight with him over Gypsy.</p>
</div>
-<hr/> <script src="datestamp.js" type='text/javascript'></script>
+<hr> <script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
<!--
diff --git a/www/hacking.html.in b/www/hacking.html.in
index e5726102..7d874941 100644
--- a/www/hacking.html.in
+++ b/www/hacking.html.in
@@ -1,50 +1,48 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<!-- @MASTER@ -->
-<!DOCTYPE html
- PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
- <meta name="Description" content="Programmer's references for GPSD"/>
- <meta name="Keywords" content="GPS, translator, GIS"/>
+ <meta name="Description" content="Programmer's references for GPSD">
+ <meta name="Keywords" content="GPS, translator, GIS">
<title>Hacker's Guide to GPSD</title>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<div id="Header">Hacker's Guide to GPSD</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- Hacker's Guide<br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ Hacker's Guide<br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -56,11 +54,11 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml10"
- alt="Valid XHTML 1.0!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -1423,7 +1421,7 @@ href='http://git.recluse.de/?p=debian/pkg-gpsd.git;a=summary'>Debian
build controls</a></p>
</div>
-<hr/> <script src="datestamp.js" type='text/javascript'></script>
+<hr> <script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
<!--
diff --git a/www/hall-of-shame.html b/www/hall-of-shame.html
index 38ada7e9..a2fa6328 100644
--- a/www/hall-of-shame.html
+++ b/www/hall-of-shame.html
@@ -1,11 +1,11 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Description" content="Naming and shaming GPS vendors for especially botched designs"/>
- <meta name="Keywords" content="GPS, translator, mxmap, GIS"/>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Description" content="Naming and shaming GPS vendors for especially botched designs">
+ <meta name="Keywords" content="GPS, translator, mxmap, GIS">
+ <link rel="stylesheet" href="main.css" type="text/css">
<title>GPS Hall of Shame</title>
</head>
<body>
@@ -15,36 +15,36 @@ GPS Hall of Shame
</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- Hall of Shame<br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ Hall of Shame<br>
+ <a href="hacking.html">Hacker's Guide</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -56,11 +56,11 @@ GPS Hall of Shame
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -149,7 +149,7 @@ way to query the offset.</p></li>
</ul>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/hardware-head.html.in b/www/hardware-head.html.in
index d20a4ed0..f0778a59 100644
--- a/www/hardware-head.html.in
+++ b/www/hardware-head.html.in
@@ -1,48 +1,49 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<!-- @MASTER@ -->
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Author" content="Eric Raymond"/>
- <meta name="Description" content="Hardware known to work with GPSD."/>
- <meta name="Keywords" content="GPS, translator, mxmap, GIS"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric Raymond">
+ <meta name="Description" content="Hardware known to work with GPSD.">
+ <meta name="Keywords" content="GPS, translator, mxmap, GIS">
<title>Compatible GPSes</title>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<div id="Header">Compatible Hardware</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- Hardware<br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ Hardware<br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -54,11 +55,11 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -72,12 +73,12 @@
<table border="0">
<tr><td valign="top" align="left">
<a href="http://www.google.com/">
-<img src="http://www.google.com/logos/Logo_25wht.gif" style='border:0px' alt="Google"></img></a>
+<img src="http://www.google.com/logos/Logo_25wht.gif" style='border:0px' alt="Google"></a>
</td>
<td>
-<input type="hidden" name="domains" value="@SITESEARCH@"></input>
-<input type="text" name="q" size="31" maxlength="255" value=""></input>
-<input type="submit" name="sa" value="Search"></input>
+<input type="hidden" name="domains" value="@SITESEARCH@">
+<input type="text" name="q" size="31" maxlength="255" value="">
+<input type="submit" name="sa" value="Search">
</td></tr>
<tr>
<td>&nbsp;</td>
@@ -85,23 +86,23 @@
<table>
<tr>
<td>
-<input type="radio" name="sitesearch" value=""></input>
+<input type="radio" name="sitesearch" value="">
Web
</td>
<td>
-<input type="radio" name="sitesearch" value="@SITESEARCH@" checked="checked"></input>
+<input type="radio" name="sitesearch" value="@SITESEARCH@" checked="checked">
@SITESEARCH@
</td>
</tr>
</table>
-<input type="hidden" name="client" value="pub-1458586455084261"></input>
-<input type="hidden" name="forid" value="1"></input>
-<input type="hidden" name="ie" value="ISO-8859-1"></input>
-<input type="hidden" name="oe" value="ISO-8859-1"></input>
-<input type="hidden" name="flav" value="0000"></input>
-<input type="hidden" name="sig" value="BCQudoNGuH3P6MJe"></input>
-<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1"></input>
-<input type="hidden" name="hl" value="en"></input>
+<input type="hidden" name="client" value="pub-1458586455084261">
+<input type="hidden" name="forid" value="1">
+<input type="hidden" name="ie" value="ISO-8859-1">
+<input type="hidden" name="oe" value="ISO-8859-1">
+<input type="hidden" name="flav" value="0000">
+<input type="hidden" name="sig" value="BCQudoNGuH3P6MJe">
+<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1">
+<input type="hidden" name="hl" value="en">
</td></tr></table>
</form>
<!-- SiteSearch Google -->
@@ -114,7 +115,7 @@ are some notes on hardware we have tested. Hyperlinks lead to
technical information. The "Works with" column is the last
<code>gpsd</code> version with which this receiver is known to have
been successfully tested; A <img src="regression.png" alt="Regression
-icon"/> in this column means we have a regression test load for the
+icon"> in this column means we have a regression test load for the
device that is checked before each release. Vendors are listed in
alphabetical order.</p>
@@ -130,30 +131,30 @@ of the problem. Where possible, we indicate this in the device table.</p>
<p>Icons used in the table:</p>
<ul>
-<li><img src="star.png" alt="Star icon"/><img src="star.png" alt="Star
-icon"/><img src="star.png" alt="Star icon"/><img src="star.png"
-alt="Star icon"/> marks devices with <b>Excellent</b> performance: gpsd
+<li><img src="star.png" alt="Star icon"><img src="star.png" alt="Star
+icon"><img src="star.png" alt="Star icon"><img src="star.png"
+alt="Star icon"> marks devices with <b>Excellent</b> performance: gpsd
recognizes the receiver rapidly and reliably, reports are complete and
correct.</li>
-<li><img src="star.png" alt="Star icon"/><img src="star.png" alt="Star
-icon"/><img src="star.png" alt="Star icon"/> marks devices with
+<li><img src="star.png" alt="Star icon"><img src="star.png" alt="Star
+icon"><img src="star.png" alt="Star icon"> marks devices with
<b>Good</b> performance: <tt>gpsd</tt> has minor problems or lag
recognizing the device, but reports are complete and correct.</li>
-<li><img src="star.png" alt="Star icon"/><img src="star.png" alt="Star
-icon"/> marks devices with <b>Fair</b> performance: reports have minor
+<li><img src="star.png" alt="Star icon"><img src="star.png" alt="Star
+icon"> marks devices with <b>Fair</b> performance: reports have minor
dropouts or problems, including occasional transient nonsense
values.</li>
-<li><img src="star.png" alt="Star icon"/> marks devices with
+<li><img src="star.png" alt="Star icon"> marks devices with
<b>Poor</b> performance: reports frequently have values that are wrong
or nonsense.</li>
-<li><img src="bomb.png" alt="Bomb icon"/> marks devices which are <b>Broken</b>;
+<li><img src="bomb.png" alt="Bomb icon"> marks devices which are <b>Broken</b>;
gpsd frequently fails to recognize the device at all.</li>
-<li><img src="noconfigure.png" alt="No-configure icon"/> marks devices
+<li><img src="noconfigure.png" alt="No-configure icon"> marks devices
that needed the <code>gpsd -b</code> option when tested. Usually these are
Bluetooth devices with defective firmware that does not handle
baud-rate changes properly. Some poorly-designed USB devices choke if
@@ -161,14 +162,14 @@ they are fed too many probe strings; these may work better with recent
versions of <code>gpsd</code>, which interleaves probe writes with the
first few packet reads.</li>
-<li><img src="regression.png" alt="Regression-test icon"/> marks
+<li><img src="regression.png" alt="Regression-test icon"> marks
devices for which we have a regression-test load. These are checked on
every release.</li>
-<li><img src="discontinued.png" alt="Discontinued icon"/> marks
+<li><img src="discontinued.png" alt="Discontinued icon"> marks
devices that have been discontinued by their manufacturers.</li>
-<li><img src="hotplug.png" alt="Hotplug icon"/> marks devices which
+<li><img src="hotplug.png" alt="Hotplug icon"> marks devices which
will be recognized by the Linux hotplug system when they are plugged
in. If you installed <code>gpsd</code> from a binary package,or did "make
udev-install" from the source distribution, this should mean you never
@@ -177,7 +178,7 @@ for you when it sees a device of this kind go active.</li>
</ul>
<p>Note that in most cases (including the <img src="noconfigure.png"
-alt="No-configure icon"/> bug), poor ratings reflect problems not in
+alt="No-configure icon"> bug), poor ratings reflect problems not in
<code>gpsd</code> but rather in device design and firmware so badly
botched that <code>gpsd</code> cannot compensate.</p>
diff --git a/www/hardware-tail.html b/www/hardware-tail.html
index 955b7ef0..a0c28959 100644
--- a/www/hardware-tail.html
+++ b/www/hardware-tail.html
@@ -25,7 +25,7 @@ serial data accurate to about 250mS.</p>
<table border='1'>
<tr>
<th>Receiver</th>
-<th>Claimed<br/>Accuracy</th>
+<th>Claimed<br>Accuracy</th>
<th>NTP time offset</th>
<th>Notes</th>
</tr>
@@ -48,8 +48,8 @@ serial data accurate to about 250mS.</p>
<td align="center">-</td>
</tr>
<tr>
-<td>Motorola<br/>iLotus<br/>Synergy-GPS M12M</td>
-<td align="center">20ns<br/>6ns corrected</td>
+<td>Motorola<br>iLotus<br>Synergy-GPS M12M</td>
+<td align="center">20ns<br>6ns corrected</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
@@ -97,13 +97,13 @@ serial data accurate to about 250mS.</p>
</tr>
<tr>
<td>ublox Antaris4T</td>
-<td align="center">50ns<br/>15ns compensated</td>
+<td align="center">50ns<br>15ns compensated</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
<tr>
<td>ublox Antaris 5</td>
-<td align="center">50ns<br/>50ns</td>
+<td align="center">50ns<br>50ns</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
@@ -123,7 +123,7 @@ serial data accurate to about 250mS.</p>
<td>Garmin GPS18/LVC</td>
<td align="center">1usec</td>
<td align="center">0.125sec</td>
-<td align="center">Must be outside with a clear sky view.<br/>At 19200bps; drops to 0.525 at 4800bps</td>
+<td align="center">Must be outside with a clear sky view.<br>At 19200bps; drops to 0.525 at 4800bps</td>
</tr>
<tr>
<td>Rockwell Jupiter</td>
@@ -138,7 +138,7 @@ serial data accurate to about 250mS.</p>
<td align="center">-</td>
</tr>
<tr>
-<td>SiRFstar3<br/>(GlobalSat MR-350P)</td>
+<td>SiRFstar3<br>(GlobalSat MR-350P)</td>
<td align="center">1usec</td>
<td align="center">-</td>
<td align="center">May work inside wood frame buildings.</td>
@@ -206,7 +206,7 @@ serial data accurate to about 250mS.</p>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/history.html b/www/history.html
index 0e6d7f3e..d5a5ac15 100644
--- a/www/history.html
+++ b/www/history.html
@@ -1,12 +1,12 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Author" content="Eric S. Raymond"/>
- <meta name="Description" content="GPSd is a utility that can listen to a GPS or AIS yreceiver and re-publish the positional data in a simpler format."/>
- <meta name="Keywords" content="GPS, translator, mxmap, GIS"/>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric S. Raymond">
+ <meta name="Description" content="GPSd is a utility that can listen to a GPS or AIS yreceiver and re-publish the positional data in a simpler format.">
+ <meta name="Keywords" content="GPS, translator, mxmap, GIS">
+ <link rel="stylesheet" href="main.css" type="text/css">
<title>GPSD project history</title>
</head>
<body>
@@ -16,36 +16,36 @@ A Brief History of GPSD
</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- History<br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ History<br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -57,11 +57,11 @@ A Brief History of GPSD
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -184,7 +184,7 @@ otherwise have forked the old 1.x sources or written a competing
daemon.</p>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/index.html.in b/www/index.html.in
index 8cf4a548..bceb5154 100644
--- a/www/index.html.in
+++ b/www/index.html.in
@@ -1,15 +1,15 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <meta name="Author" content="Eric S. Raymond" />
- <meta name="Description" content="gpsd is a utility that can listen to a GPS or AIS receiver and re-publish the positional data in a simpler format." />
- <meta name="Keywords" content="GPS, translator, GIS" />
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric S. Raymond">
+ <meta name="Description" content="gpsd is a utility that can listen to a GPS or AIS receiver and re-publish the positional data in a simpler format.">
+ <meta name="Keywords" content="GPS, translator, GIS">
<!-- the following is a verification tag for Google Analytics -->
- <meta name="verify-v1" content="kb4f3qxJPMaOltYTpJHnvbnteza1PHO4EhrRIfcq2gk=" />
+ <meta name="verify-v1" content="kb4f3qxJPMaOltYTpJHnvbnteza1PHO4EhrRIfcq2gk=">
<title>GPSd &mdash; Put your GPS on the net!</title>
- <link rel="stylesheet" href="main.css" type="text/css" />
+ <link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
@@ -18,38 +18,38 @@
</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- Home<br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ Home<br>
<div>
- <a href="#news">News</a><br/>
- <a href="#downloads">Downloads</a><br/>
- <a href="#mailing-lists">Mailing lists</a><br/>
- <a href="#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="#recipes">Recipes</a><br/>
- <a href="#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
- <a href="references.html">References</a><br/>
+ <a href="#news">News</a><br>
+ <a href="#downloads">Downloads</a><br>
+ <a href="#mailing-lists">Mailing lists</a><br>
+ <a href="#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="#recipes">Recipes</a><br>
+ <a href="#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
+ <a href="references.html">References</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
</div>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -61,11 +61,11 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -484,7 +484,7 @@ src="http://ss.webring.com/navbar?f=j;y=eric_s_raymond;u=defurl">
</script><noscript><table cellspacing="0" border="2">
<tr><td><table cellpadding="2" cellspacing="0" border="0">
<tr><td align="center">
-This site is a member of WebRing.<br/>
+This site is a member of WebRing.<br>
To browse visit <a
href="http://ss.webring.com/navbar?f=l;y=eric_s_raymond;u=defurl">
Here</a>.</td></tr>
@@ -499,12 +499,12 @@ Here</a>.</td></tr>
<table border="0" style="background-color:white">
<tr><td valign="top" align="left">
<a href="http://www.google.com/">
-<img src="http://www.google.com/logos/Logo_25wht.gif" alt="Google"></img></a>
+<img src="http://www.google.com/logos/Logo_25wht.gif" alt="Google"></a>
</td>
<td>
-<input type="hidden" name="domains" value="@SITESEARCH@"></input>
-<input type="text" name="q" size="31" maxlength="255" value=""></input>
-<input type="submit" name="sa" value="Search"></input>
+<input type="hidden" name="domains" value="@SITESEARCH@">
+<input type="text" name="q" size="31" maxlength="255" value="">
+<input type="submit" name="sa" value="Search">
</td></tr>
<tr>
<td>&nbsp;</td>
@@ -512,23 +512,23 @@ Here</a>.</td></tr>
<table>
<tr>
<td>
-<input type="radio" name="sitesearch" value="" checked="checked"></input>
+<input type="radio" name="sitesearch" value="" checked="checked">
Web
</td>
<td>
-<input type="radio" name="sitesearch" value="@SITESEARCH@"></input>
+<input type="radio" name="sitesearch" value="@SITESEARCH@">
@SITESEARCH@
</td>
</tr>
</table>
-<input type="hidden" name="client" value="pub-1458586455084261"></input>
-<input type="hidden" name="forid" value="1"></input>
-<input type="hidden" name="ie" value="ISO-8859-1"></input>
-<input type="hidden" name="oe" value="ISO-8859-1"></input>
-<input type="hidden" name="flav" value="0000"></input>
-<input type="hidden" name="sig" value="BCQudoNGuH3P6MJe"></input>
-<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1"></input>
-<input type="hidden" name="hl" value="en"></input>
+<input type="hidden" name="client" value="pub-1458586455084261">
+<input type="hidden" name="forid" value="1">
+<input type="hidden" name="ie" value="ISO-8859-1">
+<input type="hidden" name="oe" value="ISO-8859-1">
+<input type="hidden" name="flav" value="0000">
+<input type="hidden" name="sig" value="BCQudoNGuH3P6MJe">
+<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1">
+<input type="hidden" name="hl" value="en">
</td></tr></table>
</form>
<!-- SiteSearch Google -->
@@ -536,7 +536,7 @@ Web
</div>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
diff --git a/www/paper.gif b/www/paper.gif
index 5d499eeb..b2e1e217 100644
--- a/www/paper.gif
+++ b/www/paper.gif
Binary files differ
diff --git a/www/references.html b/www/references.html
index d8b0a717..e090d871 100644
--- a/www/references.html
+++ b/www/references.html
@@ -1,48 +1,48 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <meta name="Description" content="Programmer's references for GPSD" />
- <meta name="Keywords" content="GPS, translator, GIS" />
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Description" content="Programmer's references for GPSD">
+ <meta name="Keywords" content="GPS, translator, GIS">
<title>Reference links on GPS technology</title>
- <link rel="stylesheet" href="main.css" type="text/css" />
+ <link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<div id="Header">Programmer's References</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- References<br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ References<br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -54,11 +54,11 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml10"
- alt="Valid XHTML 1.0!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
diff --git a/www/troubleshooting.html b/www/troubleshooting.html
index 21598acb..99d0c9a9 100644
--- a/www/troubleshooting.html
+++ b/www/troubleshooting.html
@@ -1,48 +1,48 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <meta name="Description" content="How to bring up a GPS under GPSD"/>
- <meta name="Keywords" content="GPS, translator, GIS"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Description" content="How to bring up a GPS under GPSD">
+ <meta name="Keywords" content="GPS, translator, GIS">
<title>Troubleshooting GPSD</title>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<div id="Header">Troubleshooting GPSD</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- <a href="xgps-sample.html">Screenshots</a><br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- Troubleshooting<br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ <a href="xgps-sample.html">Screenshots</a><br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ Troubleshooting<br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -54,11 +54,11 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml10"
- alt="Valid XHTML 1.0!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -424,7 +424,7 @@ udev end of the configuration is working.</p>
</div>
-<hr/> <script src="datestamp.js" type='text/javascript'></script>
+<hr> <script src="datestamp.js" type='text/javascript'></script>
</body>
</html>
<!--
diff --git a/www/upstream-bugs.html b/www/upstream-bugs.html
index ffde3b11..04822b4c 100644
--- a/www/upstream-bugs.html
+++ b/www/upstream-bugs.html
@@ -1,42 +1,42 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Author" content="Eric Raymond"/>
- <meta name="Keywords" content="GPS, translator, mxmap, GIS"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric Raymond">
+ <meta name="Keywords" content="GPS, translator, mxmap, GIS">
<title>Bugs GPSD Exposes In Other Software</title>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<div id="Header">Bugs GPSD Exposes In Other Software</div>
-<div id="Menu"> <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br/>
-<a href="index.html">Home</a><br/>
-<a href="index.html#news">News</a><br/>
-<a href="index.html#downloads">Downloads</a><br/>
-<a href="index.html#mailing-lists">Mailing lists</a><br/>
-<a href="index.html#documentation">Documentation</a><br/>
-<a href="faq.html">FAQ</a><br/>
-<a href="xgps-sample.html">Screenshots</a><br/>
-<a href="index.html#recipes">Recipes</a><br/>
-<a href="index.html#others">Other GPSDs</a><br/>
-<a href="hardware.html">Hardware</a><br/>
-<a href="for-vendors.html">For GPS Vendors</a><br/>
-<a href="wishlist.html">Wish List</a><br/>
-<a href="hall-of-shame.html">Hall of Shame</a><br/>
-<a href="troubleshooting.html">Troubleshooting Guide</a><br/>
-<a href="hacking.html">Hacker's Guide</a><br/>
+<div id="Menu"> <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+<a href="index.html">Home</a><br>
+<a href="index.html#news">News</a><br>
+<a href="index.html#downloads">Downloads</a><br>
+<a href="index.html#mailing-lists">Mailing lists</a><br>
+<a href="index.html#documentation">Documentation</a><br>
+<a href="faq.html">FAQ</a><br>
+<a href="xgps-sample.html">Screenshots</a><br>
+<a href="index.html#recipes">Recipes</a><br>
+<a href="index.html#others">Other GPSDs</a><br>
+<a href="hardware.html">Hardware</a><br>
+<a href="for-vendors.html">For GPS Vendors</a><br>
+<a href="wishlist.html">Wish List</a><br>
+<a href="hall-of-shame.html">Hall of Shame</a><br>
+<a href="troubleshooting.html">Troubleshooting Guide</a><br>
+<a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
-<a href="references.html">References</a><br/>
-<a href="history.html">History</a><br/>
-<a href="future.html">Future</a><br/>
+<a href="references.html">References</a><br>
+<a href="history.html">History</a><br>
+<a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href="http://www.catb.org/hacker-emblem/"><img
- src="http://www.catb.org/hacker-emblem/glider.png" alt="hacker emblem"/></a><br/>
+ src="http://www.catb.org/hacker-emblem/glider.png" alt="hacker emblem"></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
-<hr/>
+<hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
@@ -49,10 +49,10 @@
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
-<hr/>
+<hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1!"
- height="31" width="88"/></a>
+ src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"
+ height="31" width="88"></a>
</div>
<div id="Content">
@@ -94,7 +94,7 @@ with Fedora Core 5 was buggy.</a></li>
<li><a href="floats">Incorrect generation of floating-point code in embedded toolchains</a></li>
</ul>
-<hr/>
+<hr>
<h1>Open User-Visible Problems</h1>
@@ -263,7 +263,7 @@ Until I changed the line in /etc/hosts from:</p>
::1 localhost.localdomain localhost
</pre>
-to:<br/>
+to:<br>
<pre class='code'>
127.0.0.1 localhost.localdomain localhost
@@ -337,7 +337,7 @@ Apple and is reported fixed.</p>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type="text/javascript"></script>
</body>
</html>
diff --git a/www/wishlist.html b/www/wishlist.html
index 99eb4c80..dfda92b9 100644
--- a/www/wishlist.html
+++ b/www/wishlist.html
@@ -1,45 +1,45 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
- <meta name="Author" content="Eric Raymond"/>
- <meta name="Description" content="Hardware known to work with GPSD."/>
- <meta name="Keywords" content="GPS, translator, mxmap, GIS"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="Author" content="Eric Raymond">
+ <meta name="Description" content="Hardware known to work with GPSD.">
+ <meta name="Keywords" content="GPS, translator, mxmap, GIS">
<title>GPSD Wish List</title>
- <link rel="stylesheet" href="main.css" type="text/css"/>
+ <link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
-<div id="Header">GPSD Wish List<br/></div>
+<div id="Header">GPSD Wish List<br></div>
-<div id="Menu"> <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br/>
-<a href="index.html">Home</a><br/>
-<a href="index.html#news">News</a><br/>
-<a href="index.html#downloads">Downloads</a><br/>
-<a href="index.html#mailing-lists">Mailing lists</a><br/>
-<a href="index.html#documentation">Documentation</a><br/>
-<a href="faq.html">FAQ</a><br/>
-<a href="xgps-sample.html">Screenshots</a><br/>
-<a href="index.html#recipes">Recipes</a><br/>
-<a href="index.html#others">Other GPSDs</a><br/>
-<a href="hardware.html">Hardware</a><br/>
-<a href="for-vendors.html">For GPS Vendors</a><br/>
-Wishlist<br/>
-<a href="hall-of-shame.html">Hall of Shame</a><br/>
-<a href="troubleshooting.html">Troubleshooting Guide</a><br/>
-<a href="hacking.html">Hacker's Guide</a><br/>
+<div id="Menu"> <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+<a href="index.html">Home</a><br>
+<a href="index.html#news">News</a><br>
+<a href="index.html#downloads">Downloads</a><br>
+<a href="index.html#mailing-lists">Mailing lists</a><br>
+<a href="index.html#documentation">Documentation</a><br>
+<a href="faq.html">FAQ</a><br>
+<a href="xgps-sample.html">Screenshots</a><br>
+<a href="index.html#recipes">Recipes</a><br>
+<a href="index.html#others">Other GPSDs</a><br>
+<a href="hardware.html">Hardware</a><br>
+<a href="for-vendors.html">For GPS Vendors</a><br>
+Wishlist<br>
+<a href="hall-of-shame.html">Hall of Shame</a><br>
+<a href="troubleshooting.html">Troubleshooting Guide</a><br>
+<a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
-<a href="references.html">References</a><br/>
-<a href="history.html">History</a><br/>
-<a href="future.html">Future</a><br/>
+<a href="references.html">References</a><br>
+<a href="history.html">History</a><br>
+<a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href="http://www.catb.org/hacker-emblem/"><img
-src="http://www.catb.org/hacker-emblem/glider.png" alt="hacker emblem"/></a><hr/>
+src="http://www.catb.org/hacker-emblem/glider.png" alt="hacker emblem"></a><hr>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
-<hr/>
+<hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
@@ -52,10 +52,10 @@ src="http://www.catb.org/hacker-emblem/glider.png" alt="hacker emblem"/></a><hr/
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
-<hr/>
+<hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1!"
- height="31" width="88"/></a>
+ src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"
+ height="31" width="88"></a>
</div>
<div id="Content">
@@ -96,7 +96,7 @@ want help picking one we don't yet support, just ask us.</p>
<div>&nbsp;</div>
-<br/>
+<br>
<table border="1" cellpadding="2" cellspacing="2">
<tbody>
<tr align="center">
@@ -110,7 +110,7 @@ want help picking one we don't yet support, just ask us.</p>
<tr>
<td valign="top">Fastrax <a href="http://www.fastrax.fi/index.cfm?template=productfamily.show.cfm&amp;guid=C4110C85-E1EF-4F6B-BC83-5A76DA97EA11">iTrax03</a></td>
<td align="center" valign="top"><a href="http://www.fastrax.fi/index.cfm?template=products.show.cfm&amp;guid=cc26fe3a-f27c-41cc-bafb-2998813ceb72">EVK</a></td>
- <td align="center" valign="top">csk<br/>
+ <td align="center" valign="top">csk<br>
</td>
</tr>
<tr>
@@ -309,7 +309,7 @@ purchased.</p>
</tr>
</tbody>
</table>
-<br/>
+<br>
<p>All our software is <b>free and available to everyone</b>. Please
help us get the standards and test hardware we need so we can do a better
@@ -318,7 +318,7 @@ job on behalf of everyone.</p>
</div>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type="text/javascript"></script>
</body>
</html>
diff --git a/www/xgps-sample.html b/www/xgps-sample.html
index 89b188cf..8d63a5bb 100644
--- a/www/xgps-sample.html
+++ b/www/xgps-sample.html
@@ -1,12 +1,11 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
<head>
<title>The xgps client</title>
-<link rev="made" href="mailto:esr@snark.thyrsus.com" />
-<link rel="stylesheet" href="main.css" type="text/css" media='all'/>
-<meta name="MSSmartTagsPreventParsing" content="TRUE" />
+<link rev="made" href="mailto:esr@snark.thyrsus.com">
+<link rel="stylesheet" href="main.css" type="text/css" media='all'>
+<meta name="MSSmartTagsPreventParsing" content="TRUE">
</head>
<body>
@@ -15,36 +14,36 @@ The xgps client
</div>
<div id="Menu">
- <img src="gpsd-logo-small.png" alt="Small gpsd Logo" /><br />
- <a href="index.html">Home</a><br/>
- <a href="index.html#news">News</a><br/>
- <a href="index.html#downloads">Downloads</a><br/>
- <a href="index.html#mailing-lists">Mailing lists</a><br/>
- <a href="index.html#documentation">Documentation</a><br/>
- <a href="faq.html">FAQ</a><br/>
- Screenshots<br/>
- <a href="index.html#recipes">Recipes</a><br/>
- <a href="index.html#others">Other GPSDs</a><br/>
- <a href="hardware.html">Hardware</a><br/>
- <a href="for-vendors.html">For GPS Vendors</a><br/>
- <a href="wishlist.html">Wish List</a><br/>
- <a href="hall-of-shame.html">Hall of Shame</a><br/>
- <a href="troubleshooting.html">Troubleshooting Guide</a><br/>
- <a href="hacking.html">Hacker's Guide</a><br/>
+ <img src="gpsd-logo-small.png" alt="Small gpsd Logo"><br>
+ <a href="index.html">Home</a><br>
+ <a href="index.html#news">News</a><br>
+ <a href="index.html#downloads">Downloads</a><br>
+ <a href="index.html#mailing-lists">Mailing lists</a><br>
+ <a href="index.html#documentation">Documentation</a><br>
+ <a href="faq.html">FAQ</a><br>
+ Screenshots<br>
+ <a href="index.html#recipes">Recipes</a><br>
+ <a href="index.html#others">Other GPSDs</a><br>
+ <a href="hardware.html">Hardware</a><br>
+ <a href="for-vendors.html">For GPS Vendors</a><br>
+ <a href="wishlist.html">Wish List</a><br>
+ <a href="hall-of-shame.html">Hall of Shame</a><br>
+ <a href="troubleshooting.html">Troubleshooting Guide</a><br>
+ <a href="hacking.html">Hacker's Guide</a><br>
<a href="protocol-transition.html">Application Compatibility</a>
- <a href="references.html">References</a><br/>
- <a href="history.html">History</a><br/>
- <a href="future.html">Future</a><br/>
+ <a href="references.html">References</a><br>
+ <a href="history.html">History</a><br>
+ <a href="future.html">Future</a><br>
<div>&nbsp;</div>
<a href='http://www.catb.org/hacker-emblem/'><img
src='http://www.catb.org/hacker-emblem/glider.png'
- alt='hacker emblem' /></a><br />
+ alt='hacker emblem'></a><br>
<script type="text/javascript" src="http://www.ohloh.net/p/3944/widgets/project_thin_badge.js"></script>
- <hr/>
+ <hr>
<script type="text/javascript"><!--
google_ad_client = "pub-1458586455084261";
google_ad_width = 160;
@@ -56,11 +55,11 @@ The xgps client
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
- <hr/>
+ <hr>
<a href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-xhtml11"
- alt="Valid XHTML 1.1!" height="31" width="88" /></a>
+ src="http://www.w3.org/Icons/valid-html401"
+ alt="Valid HTML 4.01!" height="31" width="88"></a>
</div>
<div id="Content">
@@ -70,7 +69,7 @@ connects to a <code>gpsd</code> at any host you tell it to, and
requests raw data, so that it can display the current location of all
visible GPS satellites your receiver 'sees'.</p>
-<p><img src="gpsd1.png" alt="[image] The GPS receiver has no fix yet."/></p>
+<p><img src="gpsd1.png" alt="[image] The GPS receiver has no fix yet."></p>
<p>The GPS receiver has not yet acquired a fix. The receiver has not
tracked the grey satellites, but knows where they should be.</p>
@@ -79,13 +78,13 @@ tracked the grey satellites, but knows where they should be.</p>
as well as altitude data, and requires at least four good satellites. A
2d fix does not give altitude, but only requires 3 satellites.</p>
-<p><img src="gpsd2.png" alt="[image] The GPS receiver has a good 3d fix."/></p>
+<p><img src="gpsd2.png" alt="[image] The GPS receiver has a good 3d fix."></p>
<p>Depending on your GPS receiver, the additional satellites may be used
to determine location with better accuracy.</p>
</div>
-<hr/>
+<hr>
<script src="datestamp.js" type='text/javascript'></script>
</body>
</html>