Mercurial > p > roundup > code
comparison roundup/cgi/TAL/XMLParser.py @ 2348:8c2402a78bb0
beginning getting ZPT up to date: TAL first
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 21 May 2004 05:36:30 +0000 |
| parents | fc52d57c6c3e |
| children | 88dbacd11cd1 |
comparison
equal
deleted
inserted
replaced
| 2347:fbbda3b1816d | 2348:8c2402a78bb0 |
|---|---|
| 1 ############################################################################## | 1 ############################################################################## |
| 2 # | 2 # |
| 3 # Copyright (c) 2001, 2002 Zope Corporation and Contributors. | 3 # Copyright (c) 2001, 2002 Zope Corporation and Contributors. |
| 4 # All Rights Reserved. | 4 # All Rights Reserved. |
| 5 # | 5 # |
| 6 # This software is subject to the provisions of the Zope Public License, | 6 # This software is subject to the provisions of the Zope Public License, |
| 7 # Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution. | 7 # Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution. |
| 8 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED | 8 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED |
| 9 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 9 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 10 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | 10 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS |
| 11 # FOR A PARTICULAR PURPOSE | 11 # FOR A PARTICULAR PURPOSE |
| 12 # | 12 # |
| 13 ############################################################################## | 13 ############################################################################## |
| 14 """Generic expat-based XML parser base class. | 14 # Modifications for Roundup: |
| 15 # 1. commented out zLOG references | |
| 16 """ | |
| 17 Generic expat-based XML parser base class. | |
| 18 """ | |
| 15 | 19 |
| 16 Modified for Roundup 0.5 release: | 20 #import zLOG |
| 17 | |
| 18 - removed dependency on zLOG | |
| 19 | |
| 20 """ | |
| 21 __docformat__ = 'restructuredtext' | |
| 22 | 21 |
| 23 class XMLParser: | 22 class XMLParser: |
| 24 | 23 |
| 25 ordered_attributes = 0 | 24 ordered_attributes = 0 |
| 26 | 25 |
