[GRASS-SVN] r57898 - grass/trunk/lib/gis

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Sep 30 15:47:24 PDT 2013


Author: martinl
Date: 2013-09-30 15:47:24 -0700 (Mon, 30 Sep 2013)
New Revision: 57898

Modified:
   grass/trunk/lib/gis/parser_html.c
Log:
libgis: partly disable r57897 (work in progress)


Modified: grass/trunk/lib/gis/parser_html.c
===================================================================
--- grass/trunk/lib/gis/parser_html.c	2013-09-30 22:28:15 UTC (rev 57897)
+++ grass/trunk/lib/gis/parser_html.c	2013-09-30 22:47:24 UTC (rev 57898)
@@ -316,6 +316,7 @@
 
 void print_escaped_for_html_keywords(FILE * f, const char * str)
 {
+#if 0 /* temporary disabled */
     /* HTML link only for second keyword */
     if (st->n_keys > 1 &&
         strcmp(st->module_info.keywords[1], str) == 0) {
@@ -333,7 +334,10 @@
         fprintf(f, ".html\">%s</a>", str);
     }
     else {
+#endif
         fprintf(f, "%s", str);
+#if 0
     }
+#endif
 }
 #undef do_escape



More information about the grass-commit mailing list