[Erp5-report] r8185 - /erp5/trunk/products/ERP5Subversion/Tool/SubversionTool.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Jun 27 14:34:17 CEST 2006


Author: chris
Date: Tue Jun 27 14:34:15 2006
New Revision: 8185

URL: http://svn.erp5.org?rev=8185&view=rev
Log:
- improved xhtml compliance

Modified:
    erp5/trunk/products/ERP5Subversion/Tool/SubversionTool.py

Modified: erp5/trunk/products/ERP5Subversion/Tool/SubversionTool.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Subversion/Tool/SubversionTool.py?rev=8185&r1=8184&r2=8185&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Subversion/Tool/SubversionTool.py (original)
+++ erp5/trunk/products/ERP5Subversion/Tool/SubversionTool.py Tue Jun 27 14:34:15 2006
@@ -611,11 +611,11 @@
     file_path = self.relativeToAbsolute(file_path, business_template)
     if os.path.exists(file_path):
       if os.path.isdir(file_path):
-        text = "<span style='font-weight: bold'>"+file_path+"</span><hr/>"
+        text = "<span style='font-weight: bold; color: black;'>"+file_path+"</span><hr/>"
         text += file_path +" is a folder!"
       else:
         input_file = open(file_path, 'r')
-        head = "<span style='font-weight: bold'>"+file_path+'</span>  <a href="' + \
+        head = "<span style='font-weight: bold; color: black;'>"+file_path+'</span>  <a href="' + \
         self.editPath(business_template, file_path) + \
         '"><img src="imgs/edit.png" style="border: 0" alt="edit" /></a><hr/>'
         text = head + colorize(input_file.read())




More information about the Erp5-report mailing list