[PythonReports-checkins] PythonReports/PythonReports template.py, 1.4, 1.5
Brought to you by:
a1s
From: alexander s. <a1...@us...> - 2006-12-15 08:30:23
|
Update of /cvsroot/pythonreports/PythonReports/PythonReports In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27135 Modified Files: template.py Log Message: group header an footer renamed to title and summary Index: template.py =================================================================== RCS file: /cvsroot/pythonreports/PythonReports/PythonReports/template.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** template.py 7 Dec 2006 13:08:40 -0000 1.4 --- template.py 15 Dec 2006 08:30:22 -0000 1.5 *************** *** 1,4 **** """PythonReports Template (PRT) structures""" ! """History: 07-dec-2006 [als] added Rectangle.opaque 07-dec-2006 [als] removed "transparent" attribute of the "box" element --- 1,5 ---- """PythonReports Template (PRT) structures""" ! """History (most recent first): ! 15-dec-2006 [als] group header an footer renamed to title and summary 07-dec-2006 [als] added Rectangle.opaque 07-dec-2006 [als] removed "transparent" attribute of the "box" element *************** *** 228,236 **** Header = Validator(tag="header", children=_section_children, ! doc="Page, column or group header section" ) Footer = Validator(tag="footer", children=_section_children, ! doc="Page, column or group footer section" ) --- 229,237 ---- Header = Validator(tag="header", children=_section_children, ! doc="Page or column header section" ) Footer = Validator(tag="footer", children=_section_children, ! doc="Page or column footer section" ) *************** *** 238,242 **** attributes={ "swapheader": (Boolean, False), ! }, doc="A summary section printed before report data" ) --- 239,243 ---- attributes={ "swapheader": (Boolean, False), ! }, doc="A summary section printed before data" ) *************** *** 244,248 **** attributes={ "swapfooter": (Boolean, False), ! }, doc="A summary section printed after report data" ) --- 245,249 ---- attributes={ "swapfooter": (Boolean, False), ! }, doc="A summary section printed after data" ) *************** *** 284,289 **** }, children=[ (Style, Validator.UNRESTRICTED), ! (Header, Validator.ZERO_OR_ONE), ! (Footer, Validator.ZERO_OR_ONE), (Columns, Validator.ZERO_OR_ONE), (Detail, Validator.ZERO_OR_ONE), --- 285,290 ---- }, children=[ (Style, Validator.UNRESTRICTED), ! (Title, Validator.ZERO_OR_ONE), ! (Summary, Validator.ZERO_OR_ONE), (Columns, Validator.ZERO_OR_ONE), (Detail, Validator.ZERO_OR_ONE), |