Update of /cvsroot/happydoc/HappyDoc/happydoclib/formatter
In directory usw-pr-cvs1:/tmp/cvs-serv32188
Modified Files:
formatter_DocBookX.py
Log Message:
- some api has been changed - fixed
- small language improvements
- typos
Index: formatter_DocBookX.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc/happydoclib/formatter/formatter_DocBookX.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** formatter_DocBookX.py 2002/02/03 21:50:45 1.4
--- formatter_DocBookX.py 2002/02/07 01:21:03 1.5
***************
*** 23,27 ****
Example:
! happydoc -T mstruct -F xmldocbook my_module formatter_encoding=utf-8
xsltproc --xinclude my_custom_docbook_to_html.xsl my_module/index.docb > my_module.html
--- 23,27 ----
Example:
! happydoc -T mstruct -F docbookx my_module formatter_encoding=utf-8
xsltproc --xinclude my_custom_docbook_to_html.xsl my_module/index.docb > my_module.html
***************
*** 129,134 ****
if stage==START:
self.tag('section', output, {'xmlns:xi': 'http://www.w3.org/2001/XInclude'})
! name=info.getFullyQualifiedName(self.getFilenamePrefix())
! name=string.replace(name, '/', '.')[:len(name)-3]
self.writeTaggedText('title', 'Module %s' % name, output)
elif stage==END:
--- 129,134 ----
if stage==START:
self.tag('section', output, {'xmlns:xi': 'http://www.w3.org/2001/XInclude'})
! name=info.getFullyQualifiedName()
! name=string.replace(name, '/', '.')[:-3]
self.writeTaggedText('title', 'Module %s' % name, output)
elif stage==END:
***************
*** 271,275 ****
pname=package_info.getName()
else:
! pname=package_info.getFileName()
name='%s/%s#%s' \
--- 271,275 ----
pname=package_info.getName()
else:
! pname=package_info.getFilename()
name='%s/%s#%s' \
|