Changeset 139
- Timestamp:
- 04/09/10 12:00:42
- Files:
-
- trunk/templess.py (modified) (1 diff)
- trunk/test/test_templess_functional.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/templess.py
r138 r139 38 38 """ 39 39 40 import nanosax41 42 # this here for backward compatibility - will be removed some day...43 from util import xmlstring, objectcontext44 45 40 __appname__ = 'templess' 46 41 __version__ = '1.0 unreleased' trunk/test/test_templess_functional.py
r138 r139 7 7 try: 8 8 from templess import templess 9 from templess import util 9 10 except ImportError: 11 import util 10 12 import templess 11 from StringIO import StringIO12 import re13 13 14 14 from xml.dom.minidom import parseString 15 15 16 includeel = templess.xmlstring(u'<div>foo</div>')16 includeel = util.xmlstring(u'<div>foo</div>') 17 17 includeel2 = templess.template( 18 18 here.join('templates/testtemplate_include.html').open()
