[GRASS-SVN] r31090 - grass/trunk/tools
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Apr 23 07:03:30 EDT 2008
Author: hamish
Date: 2008-04-23 07:03:30 -0400 (Wed, 23 Apr 2008)
New Revision: 31090
Modified:
grass/trunk/tools/build_html_index.sh
Log:
more human friendly skip list
Modified: grass/trunk/tools/build_html_index.sh
===================================================================
--- grass/trunk/tools/build_html_index.sh 2008-04-23 10:53:41 UTC (rev 31089)
+++ grass/trunk/tools/build_html_index.sh 2008-04-23 11:03:30 UTC (rev 31090)
@@ -3,12 +3,31 @@
#generates HTML man pages docs/html/index.html
# Markus Neteler, 2003, 2004, 2005, 2006
+
+## TODO: better fix this in include/Make/Html.make, see bug #5361
+
#exclude following list of modules from help index:
-# escape it properly:
-## TODO: better fix this in include/Make/Html.make, see bug #5361
-EXCLUDEHTML="v\.topo\.check\|i\.ask\|i\.find\|photo\.elev\|photo\.target\|helptext\.html\|r\.watershed\.ram\|r\.watershed\.seg\|gis.m\|wxGUI.*html\|d\.paint\.labels\|p\.out\.vrml\|r\.cats"
+EXCLUDEMODS="\
+v.topo.check \
+i.ask \
+i.find \
+photo.elev \
+photo.target \
+helptext.html \
+r.watershed.ram \
+r.watershed.seg \
+gis.m \
+wxGUI.*html \
+d.paint.labels \
+p.out.vrml \
+r.cats"
+
+
############# nothing to configure below ############
+# regex-proof module skip list
+EXCLUDEHTML="`echo "$EXCLUDEMODS" | tr ' ' '|' | sed -e 's+\.+\\\\.+g' -e 's+|+\\\\|+g'`"
+
#fetch the ARCH for store the files:
ARCH="`cat ../include/Make/Platform.make | grep '^ARCH' | sed 's+ ++g' | cut -d'=' -f2`"
GEMDIR="../gem"
More information about the grass-commit
mailing list