Revision: 1666
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1666&view=rev
Author: dmaphy
Date: 2010-10-17 13:35:44 +0000 (Sun, 17 Oct 2010)
Log Message:
-----------
website: fix generation of navigation sidebar
Modified Paths:
--------------
www/staging/gencontent.sh
Modified: www/staging/gencontent.sh
===================================================================
--- www/staging/gencontent.sh 2010-10-17 12:42:07 UTC (rev 1665)
+++ www/staging/gencontent.sh 2010-10-17 13:35:44 UTC (rev 1666)
@@ -132,7 +132,7 @@
# TODO: newer versions of rst2html may face problems with the configuration files encoding
$RST2HTML -s --config=$CONTENTDIR"rst2html_config.conf" $SOURCESDIR$i/README | tee .README.html >> $LOGFILE 2>&1
title=`echo ${i} | sed 's/\([a-z]\)\([a-zA-Z0-9]*\)/\u\1\2/g'`
- echo "<li><a href=\"index.php?site=$i\">${title}</a></li>" >> $CONTENTDIR"geany-plugins-listing.html"
+ echo "<li><a href=\"$i.html\">${title}</a></li>" >> $CONTENTDIR"geany-plugins-listing.html"
if [ $? -ne 0 ]; then
echo -e "$RST2HTML exited with $?.\n\n"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1665
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1665&view=rev
Author: dmaphy
Date: 2010-10-17 12:42:07 +0000 (Sun, 17 Oct 2010)
Log Message:
-----------
website: make the navigation use the rewrite rules in gencontent.sh
Modified Paths:
--------------
www/staging/gencontent.sh
Modified: www/staging/gencontent.sh
===================================================================
--- www/staging/gencontent.sh 2010-10-17 01:05:13 UTC (rev 1664)
+++ www/staging/gencontent.sh 2010-10-17 12:42:07 UTC (rev 1665)
@@ -119,7 +119,7 @@
if [ $? -eq 0 ]; then # ... if yes, ...
# ... add it to the navigation ...
title=`echo ${i} | sed 's/\([a-z]\)\([a-zA-Z0-9]*\)/\u\1\2/g'`
- echo "<li><a href=\"index.php?site=$i\">${title}</a></li>" >> $CONTENTDIR"geany-plugins-listing.html"
+ echo "<li><a href=\"$i.html\">${title}</a></li>" >> $CONTENTDIR"geany-plugins-listing.html"
continue # ... and jump to the next one
fi;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.