commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

r5364 - trunk/www/utils/webhelpers


From: jcater
Subject: r5364 - trunk/www/utils/webhelpers
Date: Thu, 18 Mar 2004 22:39:47 -0600 (CST)

Author: jcater
Date: 2004-03-18 22:39:46 -0600 (Thu, 18 Mar 2004)
New Revision: 5364

Modified:
   trunk/www/utils/webhelpers/tools.py
Log:
fixed invalid doc directory

Modified: trunk/www/utils/webhelpers/tools.py
===================================================================
--- trunk/www/utils/webhelpers/tools.py 2004-03-19 04:36:21 UTC (rev 5363)
+++ trunk/www/utils/webhelpers/tools.py 2004-03-19 04:39:46 UTC (rev 5364)
@@ -155,9 +155,10 @@
         for props, text in fileset:
           all = []
           for file, type in mod.docs.getTypes(props, DEST):
-            all.append('<a href="../../..%s">%s</a>' % (file, type))
+            all.append('<a href="../..%s">%s</a>' % (file, type))
+            all2.append('<a href="../../..%s">%s</a>' % (file, type))
           html += '  <li>%s: %s</li>\n' % (props['name'], string.join(all,' | 
'))
-          html2 += '<div class="docgroup"><div 
class="docheader"><b>%s</b>&nbsp;&nbsp;&nbsp; ( %s )</div>\n' % (props['name'], 
string.join(all,' | '))
+          html2 += '<div class="docgroup"><div 
class="docheader"><b>%s</b>&nbsp;&nbsp;&nbsp; ( %s )</div>\n' % (props['name'], 
string.join(all2,' | '))
           html2 += 
addToolLinks(htmlify(string.join(text,'\n'),'www/docs/%s.txt' % tool),
             toolUrlHints,'../..',tool) + "</div>\n"
         html += '</ul></li>\n'





reply via email to

[Prev in Thread] Current Thread [Next in Thread]