[Epydoc-commits] SF.net SVN: epydoc: [1518] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
|
From: <ed...@us...> - 2007-02-16 07:23:37
|
Revision: 1518
http://svn.sourceforge.net/epydoc/?rev=1518&view=rev
Author: edloper
Date: 2007-02-15 23:23:36 -0800 (Thu, 15 Feb 2007)
Log Message:
-----------
- minor HTML change: in epydoc-log.html options table, use valign=top
Modified Paths:
--------------
trunk/epydoc/src/epydoc/cli.py
Modified: trunk/epydoc/src/epydoc/cli.py
===================================================================
--- trunk/epydoc/src/epydoc/cli.py 2007-02-16 06:13:56 UTC (rev 1517)
+++ trunk/epydoc/src/epydoc/cli.py 2007-02-16 07:23:36 UTC (rev 1518)
@@ -1289,8 +1289,9 @@
for (key, val) in opts]
for is_default, key, val in sorted(opts):
css = is_default and 'opt-default' or 'opt-changed'
- msg += ('<tr class="%s"><td>%s</td><td><tt> = '
- '</tt></td><td><tt>%s</tt></td></tr>' %
+ msg += ('<tr valign="top" class="%s"><td valign="top">%s</td>'
+ '<td valign="top"><tt> = </tt></td>'
+ '<td valign="top"><tt>%s</tt></td></tr>' %
(css, key, plaintext_to_html(repr(val))))
msg += '</table>\n'
self.out.write('<div class="log-info">\n%s</div>\n' % msg)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|