[Epydoc-commits] SF.net SVN: epydoc: [1742] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
|
From: <ed...@us...> - 2008-02-23 04:54:25
|
Revision: 1742
http://epydoc.svn.sourceforge.net/epydoc/?rev=1742&view=rev
Author: edloper
Date: 2008-02-22 20:54:23 -0800 (Fri, 22 Feb 2008)
Log Message:
-----------
- Added --help sty
Modified Paths:
--------------
trunk/epydoc/src/epydoc/cli.py
Modified: trunk/epydoc/src/epydoc/cli.py
===================================================================
--- trunk/epydoc/src/epydoc/cli.py 2008-02-23 04:50:41 UTC (rev 1741)
+++ trunk/epydoc/src/epydoc/cli.py 2008-02-23 04:54:23 UTC (rev 1742)
@@ -75,6 +75,7 @@
from epydoc.compat import *
import ConfigParser
from epydoc.docwriter.html_css import STYLESHEETS as CSS_STYLESHEETS
+from epydoc.docwriter.latex_sty import STYLESHEETS as STY_STYLESHEETS
# This module is only available if Docutils are in the system
try:
@@ -117,6 +118,9 @@
'\n'.join([' %10s: %s' % (key, descr)
for (key, (sheet, descr))
in CSS_STYLESHEETS.items()])),
+ 'sty': textwrap.dedent(
+ 'The following built-in LaTeX style files are available:\n' +
+ ', '.join(STY_STYLESHEETS)),
#'checks': textwrap.dedent('''\
#
# '''),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|