
tseaver at palladion
Dec 20, 2006, 6:39 AM
Post #1 of 1
(3919 views)
Permalink
|
|
CVS: Products/FSDump - CHANGES.txt:1.20 Dumper.py:1.20
|
|
Update of /cvs-repository/Products/FSDump In directory cvs.zope.org:/tmp/cvs-serv5903 Modified Files: CHANGES.txt Dumper.py Log Message: - Applied patch from Damine Baty, fixing the output of dumping ZSQLMethods to match the format used by CMF's FSZSQLMethods. === Products/FSDump/CHANGES.txt 1.19 => 1.20 === --- Products/FSDump/CHANGES.txt:1.19 Wed Feb 15 12:11:26 2006 +++ Products/FSDump/CHANGES.txt Wed Dec 20 09:39:37 2006 @@ -2,6 +2,9 @@ After FSDump 0.9.2 + - Applied patch from Damine Baty, fixing the output of dumping ZSQLMethods + to match the format used by CMF's FSZSQLMethods. + - Applied patch from Alejo Roda, adding a handler for Formulator forms. - Applied patch from Willi Langenburger, adding a handler for ZWikiPage === Products/FSDump/Dumper.py 1.19 => 1.20 === --- Products/FSDump/Dumper.py:1.19 Wed Feb 15 12:11:26 2006 +++ Products/FSDump/Dumper.py Wed Dec 20 09:39:37 2006 @@ -416,11 +416,11 @@ file.write( 'arguments: %s\n' % ' '.join(obj.arguments_src.splitlines() ) ) file.write( 'connection_id:%s\n' % obj.connection_id ) - file.write( 'max_rows_:%s\n' % obj.max_rows_ ) - file.write( 'max_cache_:%s\n' % obj.max_cache_ ) - file.write( 'cache_time_:%s\n' % obj.cache_time_ ) - file.write( 'class_name_:%s\n' % obj.class_name_ ) - file.write( 'class_file_:%s\n' % obj.class_file_ ) + file.write( 'max_rows:%s\n' % obj.max_rows_ ) + file.write( 'max_cache:%s\n' % obj.max_cache_ ) + file.write( 'cache_time:%s\n' % obj.cache_time_ ) + file.write( 'class_name:%s\n' % obj.class_name_ ) + file.write( 'class_file:%s\n' % obj.class_file_ ) file.write( '</dtml-comment>\n') if text[-1] != '\n': text = '%s\n' % text _______________________________________________ Zope-CVS maillist - Zope-CVS [at] zope http://mail.zope.org/mailman/listinfo/zope-cvs Zope CVS instructions: http://dev.zope.org/CVS
|