[Happydoc-checkins] CVS: HappyDoc3/happydoclib/docset base.py,1.4,1.5
Brought to you by:
doughellmann,
krlosaqp
|
From: Doug H. <dou...@us...> - 2002-12-07 15:34:36
|
Update of /cvsroot/happydoc/HappyDoc3/happydoclib/docset
In directory sc8-pr-cvs1:/tmp/cvs-serv32473/happydoclib/docset
Modified Files:
base.py
Log Message:
Add writeFileHeader and writeFileFooter methods to base class.
Index: base.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc3/happydoclib/docset/base.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** base.py 7 Dec 2002 15:33:27 -0000 1.4
--- base.py 7 Dec 2002 15:34:32 -0000 1.5
***************
*** 339,342 ****
--- 339,348 ----
return
+ def writeFileHeader(self, output, title=None, subtitle=None):
+ raise NotImplemented('writeFileHeader')
+
+ def writeFileFooter(self, output):
+ raise NotImplemented('writeFileFooter')
+
def openOutput(self, name, title=None, subtitle=None):
f = open(name, 'wt')
|