[prev in list] [next in list] [prev in thread] [next in thread] 

List:       gpsd-commit-watch
Subject:    [Gpsd-commit-watch] Project gpsd at BerliOS branch, master,
From:       gpsd-dev () lists ! berlios ! de
Date:       2010-04-27 5:22:36
Message-ID: 201004270522.o3R5Map9028729 () sheep ! berlios ! de
[Download RAW message or body]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Project gpsd at BerliOS".

The branch, master has been updated
       via  f029b637c9ef2687b356eabc9c6f874be1887617 (commit)
       via  941e2e7ca514d5dbdee3dec18c8dfe54463fd0ca (commit)
       via  ee43018c88098edf60635c73fbc0001aa4dd25e9 (commit)
       via  c8026bea6e3d092e34050c40469956219262e4f8 (commit)
       via  90bc2b04acb48c266ebef5fbc0c9d916cd67f201 (commit)
      from  eb0cf5abe80ee5cd95e55cab90fd74240f04ef05 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f029b637c9ef2687b356eabc9c6f874be1887617
Author: Eric S. Raymond <esr@thyrsus.com>
Date:   Tue Apr 27 01:21:50 2010 -0400

    Clean up HTML generation, eliminating a FIX-ME.

diff --git a/Makefile.am b/Makefile.am
index 69ca2ac..25f8d8e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -285,7 +285,7 @@ stamp-python: gpspacket.c gpsclient.c libgps.la setup.py $(PYTHONMODULES_DIST) $
 		$(PYTHON) setup.py build \
 			--build-lib '$(srcdir)/$(PYTHON_DISTUTILS_LIBDIR)' \
 			--build-scripts '$(srcdir)/$(PYTHON_DISTUTILS_SCRIPTDIR)' \
-			--mangenerator '$(MANGENERATOR)') && \
+			--mangenerator '$(XMLPROC)') && \
 	(cd '$(srcdir)/gps' && \
 	    rm -f *.so && \
 	    ln -s ../$(PYTHON_DISTUTILS_LIBDIR)/gps/*.so . ) && \
@@ -390,16 +390,16 @@ man_MANS = \
 BUILT_MANPAGES = $(MANPAGES_DIST)
 
 .xml.1:
-	$(MANGENERATOR) $(MANFLAGS) $(MANTARGET) $<
+	$(XMLPROC) $(XMLPROCFLAGS) $(MANTARGET) $<
 
 .xml.3:
-	$(MANGENERATOR) $(MANFLAGS) $(MANTARGET) $<
+	$(XMLPROC) $(XMLPROCFLAGS) $(MANTARGET) $<
 
 .xml.5:
-	$(MANGENERATOR) $(MANFLAGS) $(MANTARGET) $<
+	$(XMLPROC) $(XMLPROCFLAGS) $(MANTARGET) $<
 
 .xml.8:
-	$(MANGENERATOR) $(MANFLAGS) $(MANTARGET) $<
+	$(XMLPROC) $(XMLPROCFLAGS) $(MANTARGET) $<
 
 # Another instance of the multiple-outputs hack.
 gps.1 xgps.1 xgpsspeed.1 cgps.1 lcdgps.1: stamp-gps-manpages
@@ -407,7 +407,7 @@ gps.1 xgps.1 xgpsspeed.1 cgps.1 lcdgps.1: stamp-gps-manpages
 stamp-gps-manpages: gps.xml
 	@rm -f '$@' '$@.tmp'
 	echo 'timestamp for $@' > '$@.tmp' && \
-	$(MANGENERATOR) $(MANFLAGS) $(MANTARGET) '$(srcdir)/gps.xml' && \
+	$(XMLPROC) $(XMLPROCFLAGS) $(MANTARGET) '$(srcdir)/gps.xml' && \
 	mv -f '$@.tmp' '$@'
 CLEANFILES += stamp-gps-manpages stamp-gps-manpages.tmp
 endif
@@ -710,12 +710,14 @@ TESTS = do-tests
 #
 # None of these productions are fired by 'make all'.
 
-# FIX-ME: Needs to be replaced by a $(MANGENERATOR) rule
-%.html: %.xml
-	xmlto xhtml-nochunks $<
-	if [ $< -nt www/$< ]; then cp $< www/$<; fi; done 
+www/%.html: %.xml
+	$(XMLPROC) $(XMLPROCFLAGS) $(HTMLTARGET) $<; cp $(<:.xml=.html) $@
 
-website: $(XML:.xml=.html) \
+website: www/gpscat.html www/gpsctl.html www/gpsdecode.html \
+		www/gpsd.html www/gpsfake.html www/gpsmon.html \
+		www/gpspipe.html www/gpsprof.html www/gps.html \
+		www/libgpsd.html www/libgpsmm.html www/libgps.html \
+		www/rtcm-104.html www/srec.html \
 		www/AIVDM.html www/NMEA.html \
 		www/protocol-evolution.html www/protocol-transition.html \
 		www/client-howto.html www/writing-a-driver.html \
diff --git a/configure.ac b/configure.ac
index 944ee5f..69c4f2b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -994,12 +994,13 @@ AM_CONDITIONAL([IPV6_ENABLE], [test x"$ac_ipv6" = x"yes"])
 
 dnl Test for XSLT processor (xsltproc or xmlto)
 AC_CHECK_PROG(WITH_XSLTPROC,[xsltproc],[yes],[no])
-MANGENERATOR=
+XMLPROC=
 MANTARGET=
-MANFLAGS=
+XMLPROCFLAGS=
 if test "x$WITH_XSLTPROC" = "xyes"; then
     AC_MSG_CHECKING([whether xsltproc knows about docbook xsl])
-    DOCBOOK_URI='http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
+    DOCBOOK_MAN_URI='http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
+    DOCBOOK_HTML_URI='http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl'
     cat >conftest.xml <<_EOF
        <refentry id="foo.1">
 	  <refmeta>
@@ -1014,31 +1015,34 @@ if test "x$WITH_XSLTPROC" = "xyes"; then
 	</refentry>
 _EOF
     if xsltproc --nonet --noout "$DOCBOOK_URI" conftest.xml >/dev/null 2>&1; then
-	MANGENERATOR=xsltproc
-	MANTARGET="$DOCBOOK_URI"
-	MANFLAGS="--nonet"
+	XMLPROC=xsltproc
+	MANTARGET="$DOCBOOK_MAN_URI"
+	HTMLTARGET="$DOCBOOK_HTML_URI"
+	XMLPROCFLAGS="--nonet"
 	AC_MSG_RESULT([yes])
     else
 	AC_MSG_RESULT([no])
     fi
     rm -f conftest.xml foo.1
 fi
-if test x"$MANGENERATOR" = x; then
+if test x"$XMLPROC" = x; then
     AC_CHECK_PROG(WITH_XMLTO,[xmlto],[yes],[no])
     if test "x$WITH_XMLTO" = "xyes"; then
-	MANGENERATOR=xmlto
+	XMLPROC=xmlto
 	MANTARGET=man
-	MANFLAGS=
+	HTMLTARGET=xhtml-nochunks
+	XMLPROCFLAGS=
     else
 	AC_MSG_WARN([Neither xsltproc nor xmlto works: I will not build man pages.])
 	AC_MSG_WARN([To build man pages, install xsltproc/xsltlib or xmlto and run autogen.sh again.])
     fi
 fi
 AM_CONDITIONAL([HAVE_XSLT_PROCESSOR],
-	       [test x"$MANGENERATOR" != x])
-AC_SUBST(MANGENERATOR)
+	       [test x"$XMLPROC" != x])
+AC_SUBST(XMLPROC)
 AC_SUBST(MANTARGET)
-AC_SUBST(MANFLAGS)
+AC_SUBST(HTMLTARGET)
+AC_SUBST(XMLPROCFLAGS)
 
 dnl Gentoo systems can have a problem with the Python path
 if test -e /etc/gentoo-release; then
diff --git a/drivers.c b/drivers.c
index 94ded5c..a9c7697 100644
--- a/drivers.c
+++ b/drivers.c
@@ -358,7 +358,6 @@ static void ashtech_event_hook(struct gps_device_t *session, event_t event)
 {
     if (event == event_wakeup)
 	(void)nmea_send(session, "$PASHQ,RID");
-    /* FIX-ME: Do we need to do this on reactivate as well? */
     if (event == event_identified) {
 	/* turn WAAS on. can't hurt... */
 	(void)nmea_send(session, "$PASHS,WAS,ON");

commit 941e2e7ca514d5dbdee3dec18c8dfe54463fd0ca
Author: Eric S. Raymond <esr@thyrsus.com>
Date:   Mon Apr 26 22:50:01 2010 -0400

    Deal with a FIX-ME, make labels right-aligned.

diff --git a/xgps b/xgps
index c50125e..79902c2 100755
--- a/xgps
+++ b/xgps
@@ -419,9 +419,9 @@ class Base:
                 colbase = 0
             else:
                 colbase = 2
-            label = gtk.Label(Base.gpsfields[i][0])
-            # FIX-ME: Right-justification isn't working
-            label.set_justify(gtk.JUSTIFY_RIGHT)
+            label = gtk.Label(Base.gpsfields[i][0] + ": ")
+            # Wacky way to force right alignment 
+            label.set_alignment(xalign=1, yalign=0.5)
             datatable.attach(label, colbase, colbase+1, i % 7, i % 7 + 1)
             entry = gtk.Entry()
             datatable.attach(entry, colbase+1, colbase+2, i % 7, i % 7 + 1)

commit ee43018c88098edf60635c73fbc0001aa4dd25e9
Author: Eric S. Raymond <esr@thyrsus.com>
Date:   Mon Apr 26 22:39:07 2010 -0400

    Remove another obsolete FIX-ME.

diff --git a/driver_nmea.c b/driver_nmea.c
index 19cc33e..9e80a5a 100644
--- a/driver_nmea.c
+++ b/driver_nmea.c
@@ -540,7 +540,6 @@ static gps_mask_t processGPGSV(int count, char *field[],
     session->gpsdata.skyview_time = NAN;
     gpsd_report(LOG_DATA, "GSV: Satellite data OK (%d of %d).\n",
 		session->driver.nmea.part, session->driver.nmea.await);
-    // FIX-ME: Dump satellite state at LOG_DATA level on final sentence
     return SATELLITE_IS;
 }
 

commit c8026bea6e3d092e34050c40469956219262e4f8
Author: Eric S. Raymond <esr@thyrsus.com>
Date:   Mon Apr 26 22:36:47 2010 -0400

    Remove obsolete FIX-ME, we understand their calculations better now.

diff --git a/driver_navcom.c b/driver_navcom.c
index 1bcdb07..50ff581 100644
--- a/driver_navcom.c
+++ b/driver_navcom.c
@@ -494,7 +494,6 @@ static gps_mask_t handle_0xb1(struct gps_device_t *session)
     eph = fom / 100.0 * 1.96;
     /* approximate epx and epy errors from it */
     session->newdata.epx = session->newdata.epy = eph / sqrt(2);
-    /* FIX-ME - Which units is tfom in (spec doesn't say) */
     session->newdata.ept = tfom * 1.96 /*Two sigma */ ;
 
     if (gdop != DOP_UNDEFINED)

commit 90bc2b04acb48c266ebef5fbc0c9d916cd67f201
Author: Eric S. Raymond <esr@thyrsus.com>
Date:   Mon Apr 26 22:28:56 2010 -0400

    FIXME -> FIX-ME, so I can walk through these without tripping over autotools.

diff --git a/Makefile.am b/Makefile.am
index a506e27..69ca2ac 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -710,7 +710,7 @@ TESTS = do-tests
 #
 # None of these productions are fired by 'make all'.
 
-# FIXME: Needs to be replaced by a $(MANGENERATOR) rule
+# FIX-ME: Needs to be replaced by a $(MANGENERATOR) rule
 %.html: %.xml
 	xmlto xhtml-nochunks $<
 	if [ $< -nt www/$< ]; then cp $< www/$<; fi; done 
diff --git a/driver_evermore.c b/driver_evermore.c
index c8563a9..ce1e5f7 100644
--- a/driver_evermore.c
+++ b/driver_evermore.c
@@ -341,7 +341,7 @@ gps_mask_t evermore_parse(struct gps_device_t * session, unsigned char *buf,
 	    session->context->leap_seconds;
 	/*@ end @*/
 	visible = (unsigned char)getub(buf2, 10);
-	/* FIXME: read full statellite status for each channel */
+	/* FIX-ME: read full statellite status for each channel */
 	/* we can get pseudo range (m), delta-range (m/s), doppler (Hz) and status for each channel */
 	/* gpsd_report(LOG_PROG, "MDO 0x04: visible=%d\n", visible); */
 	gpsd_report(LOG_DATA, "MDO 0x04: time=%.2f mask={TIME}\n",
@@ -508,7 +508,7 @@ static void evermore_mode(struct gps_device_t *session, int mode)
 static void evermore_event_hook(struct gps_device_t *session, event_t event)
 {
     /*
-     * FIXME: It might not be necessary to call this on reactivate.
+     * FIX-ME: It might not be necessary to call this on reactivate.
      * Experiment to see if the holds its settings through a close.
      */
     if (event == event_identified || event == event_reactivate) {
diff --git a/driver_garmin.c b/driver_garmin.c
index 6c26493..7735ae9 100644
--- a/driver_garmin.c
+++ b/driver_garmin.c
@@ -552,7 +552,7 @@ gps_mask_t PrintSERPacket(struct gps_device_t *session, unsigned char pkt_id,
 	    if (session->gpsdata.ss[j] < 0.0) {
 		session->gpsdata.ss[j] = 0.0;
 	    }
-	    // FIXME: Garmin documents this, but Daniel Dorau
+	    // FIX-ME: Garmin documents this, but Daniel Dorau
 	    // <daniel.dorau@gmx.de> says the behavior on his GPSMap60CSX
 	    // doesn't match it.
 	    if ((uint8_t) 0 != (sats->status & 4)) {
@@ -744,7 +744,7 @@ static void Build_Send_USB_Packet(struct gps_device_t *session,
 
 /* build and send a packet in serial protocol */
 /* layer_id unused */
-// FIXME: This should go through the common message buffer someday
+// FIX-ME: This should go through the common message buffer someday
 static void Build_Send_SER_Packet(struct gps_device_t *session,
 				  uint32_t layer_id UNUSED, uint32_t pkt_id,
 				  uint32_t length, uint32_t data)
@@ -1001,7 +1001,7 @@ static bool garmin_usb_detect(struct gps_device_t *session)
 static void garmin_event_hook(struct gps_device_t *session, event_t event)
 {
     /*
-     * FIXME: It might not be necessary to call this on reactivate.
+     * FIX-ME: It might not be necessary to call this on reactivate.
      * Experiment to see if the holds its settings through a close.
      */
     if (event == event_identified || event == event_reactivate) {
@@ -1026,7 +1026,7 @@ static void garmin_event_hook(struct gps_device_t *session, event_t event)
 #endif
     }
     if (event == event_deactivate)
-	/* FIXME: is any action needed, or is closing the port sufficient? */
+	/* FIX-ME: is any action needed, or is closing the port sufficient? */
 	gpsd_report(LOG_PROG, "Garmin: garmin_close()\n");
 }
 
diff --git a/driver_italk.c b/driver_italk.c
index f1c7c33..877599a 100644
--- a/driver_italk.c
+++ b/driver_italk.c
@@ -431,7 +431,7 @@ static void italk_mode(struct gps_device_t *session, int mode)
 static void italk_event_hook(struct gps_device_t *session, event_t event)
 {
     /*
-     * FIXME: It might not be necessary to call this on reactivate.
+     * FIX-ME: It might not be necessary to call this on reactivate.
      * Experiment to see if the holds its settings through a close.
      */
     if ((event == event_identified || event == event_reactivate)
diff --git a/driver_navcom.c b/driver_navcom.c
index a4d8f81..1bcdb07 100644
--- a/driver_navcom.c
+++ b/driver_navcom.c
@@ -203,7 +203,7 @@ static void navcom_event_hook(struct gps_device_t *session, event_t event)
     }
     /* Request the following messages: */
     /*
-     * FIXME: It might not be necessary to call this on reactivate.
+     * FIX-ME: It might not be necessary to call this on reactivate.
      * Experiment to see if the holds its settings through a close.
      */
     if (event == event_identified || event == event_reactivate) {
@@ -494,7 +494,7 @@ static gps_mask_t handle_0xb1(struct gps_device_t *session)
     eph = fom / 100.0 * 1.96;
     /* approximate epx and epy errors from it */
     session->newdata.epx = session->newdata.epy = eph / sqrt(2);
-    /* FIXME - Which units is tfom in (spec doesn't say) */
+    /* FIX-ME - Which units is tfom in (spec doesn't say) */
     session->newdata.ept = tfom * 1.96 /*Two sigma */ ;
 
     if (gdop != DOP_UNDEFINED)
diff --git a/driver_nmea.c b/driver_nmea.c
index 0d74455..19cc33e 100644
--- a/driver_nmea.c
+++ b/driver_nmea.c
@@ -540,7 +540,7 @@ static gps_mask_t processGPGSV(int count, char *field[],
     session->gpsdata.skyview_time = NAN;
     gpsd_report(LOG_DATA, "GSV: Satellite data OK (%d of %d).\n",
 		session->driver.nmea.part, session->driver.nmea.await);
-    // FIXME: Dump satellite state at LOG_DATA level on final sentence
+    // FIX-ME: Dump satellite state at LOG_DATA level on final sentence
     return SATELLITE_IS;
 }
 
diff --git a/driver_oncore.c b/driver_oncore.c
index 64af1a4..5c49471 100644
--- a/driver_oncore.c
+++ b/driver_oncore.c
@@ -424,7 +424,7 @@ static void oncore_event_hook(struct gps_device_t *session, event_t event)
 	(void)oncore_control_send(session, getfirmware, sizeof(getfirmware));
 
     /*
-     * FIXME: It might not be necessary to call this on reactivate.
+     * FIX-ME: It might not be necessary to call this on reactivate.
      * Experiment to see if the holds its settings through a close.
      */
     if (event == event_identified || event == event_reactivate) {
diff --git a/driver_superstar2.c b/driver_superstar2.c
index 9b19110..0ebd8df 100644
--- a/driver_superstar2.c
+++ b/driver_superstar2.c
@@ -459,7 +459,7 @@ static void superstar2_event_hook(struct gps_device_t *session, event_t event)
 	(void)superstar2_write(session, (char *)version_msg,
 			       sizeof(version_msg));
 
-    /* FIXME: check to see if this really needs to be resent on reactivation */
+    /* FIX-ME: check to see if this really needs to be resent on reactivation */
     if (event == event_identified || event == event_reactivate) {
 	/*@ +charint @*/
 	unsigned char svinfo_msg[] = { 0x01, 0xa1, 0x5e, 0x00, 0x00, 0x01 };
diff --git a/driver_tsip.c b/driver_tsip.c
index 9734288..15a1013 100644
--- a/driver_tsip.c
+++ b/driver_tsip.c
@@ -957,7 +957,7 @@ static ssize_t tsip_control_send(struct gps_device_t *session,
 
 static void tsip_event_hook(struct gps_device_t *session, event_t event)
 {
-    /* FIXME: Resending this might not be needed on reactivation */
+    /* FIX-ME: Resending this might not be needed on reactivation */
     if (event == event_identified && event == event_reactivate) {
 	unsigned char buf[100];
 
@@ -1108,7 +1108,7 @@ static void tsip_mode(struct gps_device_t *session, int mode)
     } else if (mode == MODE_BINARY) {
 	/* The speed switcher also puts us back in TSIP, so call it */
 	/* with the default 9600 8O1. */
-	// FIXME: Should preserve the current speed.
+	// FIX-ME: Should preserve the current speed.
 	// (void)tsip_speed_switch(session, 9600, 'O', 1);
 	;
 
@@ -1121,7 +1121,7 @@ static void tsip_mode(struct gps_device_t *session, int mode)
 #ifdef NTPSHM_ENABLE
 static double tsip_ntp_offset(struct gps_device_t *session)
 {
-    /* FIXME: is a constant offset right here? */
+    /* FIX-ME: is a constant offset right here? */
     return 0.075;
 }
 #endif /* NTPSHM_ENABLE */
diff --git a/drivers.c b/drivers.c
index cf9a650..94ded5c 100644
--- a/drivers.c
+++ b/drivers.c
@@ -358,7 +358,7 @@ static void ashtech_event_hook(struct gps_device_t *session, event_t event)
 {
     if (event == event_wakeup)
 	(void)nmea_send(session, "$PASHQ,RID");
-    /* FIXME: Do we need to do this on reactivate as well? */
+    /* FIX-ME: Do we need to do this on reactivate as well? */
     if (event == event_identified) {
 	/* turn WAAS on. can't hurt... */
 	(void)nmea_send(session, "$PASHS,WAS,ON");
@@ -992,7 +992,7 @@ static void mtk3301_event_hook(struct gps_device_t *session, event_t event)
 "$PMTK314,1,1,1,1,1,5,1,1,0,0,0,0,0,0,0,0,0,1,0"
 
 */
-    /* FIXME: Do we need to resend this on reactivation? */
+    /* FIX-ME: Do we need to resend this on reactivation? */
     if (event == event_identified) {
 	(void)nmea_send(session, "$PMTK320,0");	/* power save off */
 	(void)nmea_send(session, "$PMTK300,1000,0,0,0.0,0.0");	/* Fix interval */
diff --git a/gpssim.py b/gpssim.py
index 20080a5..2830929 100644
--- a/gpssim.py
+++ b/gpssim.py
@@ -144,7 +144,7 @@ class gpssim:
         else:
             raise gpssimException("unknown command '%s'" % fields[1],
                                   self.filename, self.lineno)
-        # FIXME: add syntax for ephemeris elements
+        # FIX-ME: add syntax for ephemeris elements
         self.lineno += 1
     def filter(self, input, output):
         "Make this a filter for file-like objects."
diff --git a/libgps_core.c b/libgps_core.c
index 7a6fd4d..2dbdcbd 100644
--- a/libgps_core.c
+++ b/libgps_core.c
@@ -181,7 +181,7 @@ static void libgps_dump_state(struct gps_data_t *collect, time_t now)
     char *status_values[] = { "NO_FIX", "FIX", "DGPS_FIX" };
     char *mode_values[] = { "", "NO_FIX", "MODE_2D", "MODE_3D" };
 
-    /* FIXME: We don't dump the entire state here yet */
+    /* FIX-ME: We don't dump the entire state here yet */
 #ifndef USE_QT
     (void)fprintf(debugfp, "flags: (0x%04x) %s\n",
 		  collect->set, gps_maskdump(collect->set));
diff --git a/ntpshm.c b/ntpshm.c
index 980064d..85e4cd4 100644
--- a/ntpshm.c
+++ b/ntpshm.c
@@ -266,7 +266,7 @@ int ntpshm_pps(struct gps_device_t *session, struct timeval *tv)
 {
     struct shmTime *shmTime = NULL, *shmTimeP = NULL;
     time_t seconds;
-    /* FIXME, microseconds needs to be set for 5Hz PPS */
+    /* FIX-ME, microseconds needs to be set for 5Hz PPS */
     int microseconds = 0;
     int precision;
     double offset;
@@ -281,7 +281,7 @@ int ntpshm_pps(struct gps_device_t *session, struct timeval *tv)
      * check to see if we have a fresh timestamp from the
      * GPS serial input then use that */
 
-    /* FIXME, does not handle 5Hz yet */
+    /* FIX-ME, does not handle 5Hz yet */
 
 #ifdef S_SPLINT_S		/* avoids an internal error in splint 3.1.1 */
     l_offset = 0;
diff --git a/test/sample.aivdm b/test/sample.aivdm
index bbde005..b388640 100644
--- a/test/sample.aivdm
+++ b/test/sample.aivdm
@@ -170,7 +170,7 @@
 #	Application ID           : 104
 #	Data                     : 16:0000
 #
-# FIXME: We need a type 6 test case that requires more than one AIVDM fragment.
+# FIX-ME: We need a type 6 test case that requires more than one AIVDM fragment.
 #
 # Type 7:
 # From AISHub - reported immediately after the preceding type 6, 
@@ -397,7 +397,7 @@
 #       First slot offset        : 200
 #       First slot increment     : 0
 #
-# FIXME: Need an example of the 144-bit variant with two MMSIs.
+# FIX-ME: Need an example of the 144-bit variant with two MMSIs.
 #
 # Type 17:
 # From AISHub. This is only a regression test to check that the C and Python
diff --git a/xgps b/xgps
index 748f0e3..c50125e 100755
--- a/xgps
+++ b/xgps
@@ -420,7 +420,7 @@ class Base:
             else:
                 colbase = 2
             label = gtk.Label(Base.gpsfields[i][0])
-            # FIXME: Right-justification isn't working
+            # FIX-ME: Right-justification isn't working
             label.set_justify(gtk.JUSTIFY_RIGHT)
             datatable.attach(label, colbase, colbase+1, i % 7, i % 7 + 1)
             entry = gtk.Entry()

-----------------------------------------------------------------------

Summary of changes:
 Makefile.am         |   24 +++++++++++++-----------
 configure.ac        |   28 ++++++++++++++++------------
 driver_evermore.c   |    4 ++--
 driver_garmin.c     |    8 ++++----
 driver_italk.c      |    2 +-
 driver_navcom.c     |    3 +--
 driver_nmea.c       |    1 -
 driver_oncore.c     |    2 +-
 driver_superstar2.c |    2 +-
 driver_tsip.c       |    6 +++---
 drivers.c           |    3 +--
 gpssim.py           |    2 +-
 libgps_core.c       |    2 +-
 ntpshm.c            |    4 ++--
 test/sample.aivdm   |    4 ++--
 xgps                |    6 +++---
 16 files changed, 52 insertions(+), 49 deletions(-)


hooks/post-receive
-- 
Project gpsd at BerliOS
_______________________________________________
Gpsd-commit-watch mailing list
Gpsd-commit-watch@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/gpsd-commit-watch
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic