[Epydoc-commits] SF.net SVN: epydoc: [1288] trunk/epydoc/src/epydoc/docwriter/html.py
Brought to you by:
edloper
From: <ed...@us...> - 2006-08-22 06:15:39
|
Revision: 1288 Author: edloper Date: 2006-08-21 23:15:35 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1288&view=rev Log Message: ----------- - Added metadata sections for variable & property details sections. - Rearranged the property details section a little. Modified Paths: -------------- trunk/epydoc/src/epydoc/docwriter/html.py Modified: trunk/epydoc/src/epydoc/docwriter/html.py =================================================================== --- trunk/epydoc/src/epydoc/docwriter/html.py 2006-08-22 06:00:44 UTC (rev 1287) +++ trunk/epydoc/src/epydoc/docwriter/html.py 2006-08-22 06:15:35 UTC (rev 1288) @@ -2152,18 +2152,19 @@ <h3 class="epydoc">$var_doc.name$</h3> $descr$ <dl><dt></dt><dd> - >>> if prop_doc.type_descr not in (None, UNKNOWN): - <dl><dt>Type:</dt> - <dd>$self.type_descr(var_doc, indent=6)$</dd></dl> - >>> #endif >>> for (name, val, summary) in accessors: - <dt>$name$ Method:</dt> + <dl><dt>$name$ Method:</dt> <dd>$val$ >>> if summary: - $summary$ >>> #endif - </dd> + </dd></dl> >>> #endfor + >>> if prop_doc.type_descr not in (None, UNKNOWN): + <dl><dt>Type:</dt> + <dd>$self.type_descr(var_doc, indent=6)$</dd></dl> + >>> #endif + >>> self.write_standard_fields(out, prop_doc) </dd></dl> </td></tr></table> </div> @@ -2187,6 +2188,7 @@ <dl><dt>Type:</dt> <dd>$self.type_descr(var_doc, indent=6)$</dd></dl> >>> #endif + >>> self.write_standard_fields(out, var_doc) >>> if var_doc.value is not UNKNOWN: <dl><dt>Value:</dt> <dd><table><tr><td><pre class="variable"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |