summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 669594f)
raw | patch | inline | side by side (parent: 669594f)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 6 May 2002 23:38:07 +0000 (23:38 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 6 May 2002 23:38:07 +0000 (23:38 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@720 57a73879-2fb5-44c3-a270-3262357dd7e2
doc/build_html.py | patch | blob | history |
diff --git a/doc/build_html.py b/doc/build_html.py
index f73ab1a04d29dd607b48036629432630267da9d4..eb4a3f9fcc2682a378e0e5391eeb59def47fbce0 100755 (executable)
--- a/doc/build_html.py
+++ b/doc/build_html.py
"""
:Author: David Goodger
:Contact: goodger@users.sourceforge.net
-:Revision: $Revision: 1.1 $
-:Date: $Date: 2002-03-08 23:41:46 $
+:Revision: $Revision: 1.2 $
+:Date: $Date: 2002-05-06 23:38:07 $
:Copyright: This module has been placed in the public domain.
A minimal front-end to the Docutils Publisher.
"""
import sys, os.path
-from dps.core import publish
-from dps import utils
+from docutils.core import publish
+from docutils import utils
if len(sys.argv) < 2:
print >>sys.stderr, 'I need at least one filename'
name, ext = os.path.splitext(file)
dest = '%s.html'%name
print >>sys.stderr, '%s -> %s'%(file, dest)
- publish(writername='html', source=file, destination=dest,
+ publish(writer_name='html', source=file, destination=dest,
reporter=reporter)