summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2015-04-30 14:14:00 -0700
committerGary E. Miller <gem@rellim.com>2015-04-30 14:14:00 -0700
commit10bc5f62a8d08e4083f976c901cbffe4d15fb333 (patch)
treea2e0a749ee71909123cce3b9b1c94ea6741d5182
parent0625f602b6ef7a754b6edb242b79d1ba37158514 (diff)
downloadgpsd-10bc5f62a8d08e4083f976c901cbffe4d15fb333.tar.gz
Fix an insurgency of whitespace infection.
-rw-r--r--www/faq.html.in2
-rw-r--r--www/gps_report.cgi.in62
-rw-r--r--www/hacking.html.in2
3 files changed, 33 insertions, 33 deletions
diff --git a/www/faq.html.in b/www/faq.html.in
index 0b5332e2..7c44f270 100644
--- a/www/faq.html.in
+++ b/www/faq.html.in
@@ -883,7 +883,7 @@ thing to try is to <a href="#baud">suppress the autobauding loop</a>.</dd>
up relatively often and are usually fixed pretty quickly.</dd>
<dt><b>3. Try a different USB-to-serial chip</b></dt>
-<dd>Another thing to try is a GPS with a different USB-to-serial chip.
+<dd>Another thing to try is a GPS with a different USB-to-serial chip.
You probably do not have a a chip-specific problem if you're using
a PL23203, as those drivers have been tested a lot. But we've seen
reports that were definitely chip-specific on less common chipsets
diff --git a/www/gps_report.cgi.in b/www/gps_report.cgi.in
index 9fd8a740..a4785cb0 100644
--- a/www/gps_report.cgi.in
+++ b/www/gps_report.cgi.in
@@ -44,7 +44,7 @@ def hasRequiredElements(form):
for fld in ("submitter", "vendor", "model", "techdoc"):
if not form.getvalue(fld):
return False
- return not not output_sample_content
+ return not not output_sample_content
formfields = ("submitter",
"vendor",
@@ -261,15 +261,15 @@ your device.</p>
<p>Example: <code>Haicom</code> and <code>303S</code>.</p>
<p><em>Vendor:&nbsp;</em>
-<input type="text"
- name="vendor"
- size="72"
+<input type="text"
+ name="vendor"
+ size="72"
value="%(vendor)s"></p>
<p><em>Model:&nbsp;&nbsp;</em>
-<input type="text"
- name="model"
- size="72"
+<input type="text"
+ name="model"
+ size="72"
value="%(model)s"></p>
<p><em style="color: #ff0000;">Important!</em> We need a URL pointing to a
@@ -282,8 +282,8 @@ main page.</p>
<p>Example: <code>http://www.haicom.com.tw/gps303s.shtml</code></p>
<p><em>URL of a technical manual:</em>
-<input type="text"
- name="techdoc"
+<input type="text"
+ name="techdoc"
size="72"
value="%(techdoc)s"></p>
@@ -323,15 +323,15 @@ it in the technical manual.</p>
<p>Example: <code>SiRF-II</code> and <code>2.31ES</code>.</p>
<p><em>Chipset:&nbsp;&nbsp;</em>
-<input type="text"
- name="chipset"
- size="72"
+<input type="text"
+ name="chipset"
+ size="72"
value="%(chipset)s"></p>
<p><em>Firmware:&nbsp;</em>
-<input type="text"
- name="firmware"
- size="72"
+<input type="text"
+ name="firmware"
+ size="72"
value="%(firmware)s"></p>
<p>Please identify, if possible, the NMEA version the receiver emits. You may
@@ -341,9 +341,9 @@ be able to get this information from the technical manual. Likely values are
protocol, leave this field blank.</p>
<p><em>NMEA version emitted:&nbsp;</em>
-<input type="text"
- name="nmea"
- size="6"
+<input type="text"
+ name="nmea"
+ size="6"
value="%(nmea)s"></p>
<hr/>
@@ -384,9 +384,9 @@ give us the full release number, like <code>3.5</code>. If you built
your code from our development repository please give the revision ID.</p>
<p><em>GPSD version:&nbsp;</em>
-<input type="text"
- name="tested"
- size="6"
+<input type="text"
+ name="tested"
+ size="6"
value="%(tested)s"></p>
<p>Please rate how well this receiver functions with GPSD:</p>
@@ -459,7 +459,7 @@ this output to a file with the <code>gpscat</code> utility.</p>
because the device needs some kind of activation sequence written to
it before it will start reporting. Some Garmin GPSes (the ones that
speak Garmin binary protocol rather than NMEA) are like this. If you
-think you have one of these, ask for help on GPSD\'s development mailing
+think you have one of these, ask for help on GPSD\'s development mailing
list</a>.</p>
<p>A log file is most useful when it contains (a) some sentences
@@ -481,9 +481,9 @@ want this as a sanity check.</p>
<p>Example: <code>Groningen, NL, 53.2N 6.6E</code></p>
<p><em>Location:&nbsp;</em>
-<input type="text"
- name="location"
- size="72"
+<input type="text"
+ name="location"
+ size="72"
value="%(location)s"></p>
<p>Year-Month-Day of the log capture (the receiver will give us
@@ -492,9 +492,9 @@ hour/minute/second).</p>
<p>Example: <code>2011-05-14</code>.</p>
<p><em>Date:&nbsp;</em>
-<input type="text"
- name="date"
- size="72"
+<input type="text"
+ name="date"
+ size="72"
value="%(date)s"></p>
@@ -519,9 +519,9 @@ which is publicly archived.</p>
<p>Example: <code>Eric Raymond &lt;esr&#x40;thyrsus.com&gt;</code></p>
<p><em>Name and email address: </em>
-<input type="text"
- name="submitter"
- size="72"
+<input type="text"
+ name="submitter"
+ size="72"
value="%(submitter)s"></p>
<p>(It is not actually very likely we will contact you, but we need to
diff --git a/www/hacking.html.in b/www/hacking.html.in
index c5a9f315..132b3104 100644
--- a/www/hacking.html.in
+++ b/www/hacking.html.in
@@ -1633,7 +1633,7 @@ the following order:</p>
<dl>
<dt>1. Check the <a href="@BUGTRACKER@">bug tracker</a> for
-release blockers.</dt>
+release blockers.</dt>
<dd><p>Check support requests, too, and <a href="https://bugs.debian.org/cgi-bin/pkgreport.cgi?src=gpsd&amp;repeatmerged=yes">Debian's GPSD buglist</a>.</p></dd>
<dt>2. Issue the pre-release heads-up</dt>