[GRASS-SVN] r66406 - grass-addons/tools/addons

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Oct 4 02:46:05 PDT 2015


Author: martinl
Date: 2015-10-04 02:46:05 -0700 (Sun, 04 Oct 2015)
New Revision: 66406

Modified:
   grass-addons/tools/addons/build-xml.py
Log:
addons modules.xml: blacklist v.mapcalc (no interface)

Modified: grass-addons/tools/addons/build-xml.py
===================================================================
--- grass-addons/tools/addons/build-xml.py	2015-10-04 09:38:39 UTC (rev 66405)
+++ grass-addons/tools/addons/build-xml.py	2015-10-04 09:46:05 UTC (rev 66406)
@@ -47,7 +47,10 @@
  
 def parse_modules(fd, mlist):
     indent = 4
+    blacklist = ['v.mapcalc']
     for m in mlist:
+        if m in blacklist:
+            continue # skip blacklisted modules
         print "Parsing <%s>..." % m,
         desc, keyw = get_module_metadata(m)
         fd.write('%s<task name="%s">\n' % (' ' * indent, m))



More information about the grass-commit mailing list