CVS update by matsl xemacs-builds/matsl/package_smoketest ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Thu Nov 29 18:52:23 EST 2007


  User: matsl   
  Date: 07/11/30 00:52:23

  Modified:    xemacs-builds/matsl/package_smoketest showlogs.py
Log:
* showlogs.py: Fix bad hrefs with no quotes.

Revision  Changes    Path
1.3       +10 -10    XEmacs/xemacs-builds/matsl/package_smoketest/showlogs.py

Index: showlogs.py
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs-builds/matsl/package_smoketest/showlogs.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- showlogs.py	2007/10/29 23:47:27	1.2
+++ showlogs.py	2007/11/29 23:52:22	1.3
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# $Id: showlogs.py,v 1.2 2007/10/29 23:47:27 matsl Exp $
+# $Id: showlogs.py,v 1.3 2007/11/29 23:52:22 matsl Exp $
 
 # Generate The XEmacs Package Smoketest Report
 
@@ -63,7 +63,7 @@ def log2html(row):
             td = '<td class="buildok">ok<br>'
         else:
             td = '<td class="buildfail">FAIL<br>'
-        print >> IP, td + '<a href=' + log + '>Full</a> | <a href="' + log + '.tail">Tail</a> | <a href="' + macros + '">Macros</a></td>'
+        print >> IP, td + '<a href="' + log + '">Full</a> | <a href="' + log + '.tail">Tail</a> | <a href="' + macros + '">Macros</a></td>'
     print >> IP, '</tr>'
 
 # Generate RSS
@@ -120,15 +120,15 @@ print >> IP, """<!DOCTYPE HTML PUBLIC "-
     </p>
     <h1>XEmacs Package Smoketest</h1>
 
-    <!-- Produced by:  \$Id: showlogs.py,v 1.2 2007/10/29 23:47:27 matsl Exp $ -->
+    <!-- Produced by:  \$Id: showlogs.py,v 1.3 2007/11/29 23:52:22 matsl Exp $ -->
 """
     
-print >> IP, "<table border=2 width=\"100%\"><tr><th>Builds</th>" + \
-      "<th><a href=" + urls['21.4-mule'] + ">21.4 mule</a></th>" + \
-      "<th><a href=" + urls['21.5-mule'] + ">21.5 mule</a></th>" + \
-      "<th><a href=" + urls['21.4-nomule'] + ">21.4 NO mule</a></th>" + \
-      "<th><a href=" + urls['21.5-nomule'] + ">21.5 NO mule</a></th>" + \
-      "\n"
+print >> IP, '<table border=2 width=\"100%\"><tr><th>Builds</th>' + \
+      '<th><a href="' + urls['21.4-mule'] + '">21.4 mule</a></th>' + \
+      '<th><a href="' + urls['21.5-mule'] + '">21.5 mule</a></th>' + \
+      '<th><a href="' + urls['21.4-nomule'] + '">21.4 NO mule</a></th>' + \
+      '<th><a href="' + urls['21.5-nomule'] + '">21.5 NO mule</a></th>' + \
+      '\n'
 
 ## Disabled builds
 ## "<th><a href=" + urls['21.1-mule'] + ">21.1 mule</a></th>" + \
@@ -142,7 +142,7 @@ for r in rows:
     log2html(r)
     
 print >> IP, """</table>
-<p><a href=build-logs>Build history</a></p>
+<p><a href="build-logs">Build history</a></p>
 """
 
 # Add on news ...





More information about the XEmacs-CVS mailing list