Update of /cvsroot/happydoc/HappyDoc/happydoclib/docset
In directory usw-pr-cvs1:/tmp/cvs-serv31264
Modified Files:
docset_mstruct.py
Log Message:
- some api has been changed - fix it
Index: docset_mstruct.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc/happydoclib/docset/docset_mstruct.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** docset_mstruct.py 2002/02/07 01:05:54 1.2
--- docset_mstruct.py 2002/02/07 01:17:56 1.3
***************
*** 173,177 ****
output_name=self._formatter.getFullOutputNameForObject(module)
! output=self.openOutput(output_name, 'Module: %s' % module_name, module.getFileName(), MODULE_FILE)
# start the module tag
--- 173,177 ----
output_name=self._formatter.getFullOutputNameForObject(module)
! output=self.openOutput(output_name, 'Module: %s' % module_name, module.getFilename(), MODULE_FILE)
# start the module tag
***************
*** 206,210 ****
class_output_name=formatter.getFullOutputNameForObject(c)
class_output=self.openOutput(class_output_name, 'Class: %s' % class_name, \
! module.getFileName(), CLASS_FILE)
self._writeClass(module, class_name, class_output)
self.closeOutput(class_output, CLASS_FILE)
--- 206,210 ----
class_output_name=formatter.getFullOutputNameForObject(c)
class_output=self.openOutput(class_output_name, 'Class: %s' % class_name, \
! module.getFilename(), CLASS_FILE)
self._writeClass(module, class_name, class_output)
self.closeOutput(class_output, CLASS_FILE)
|