Changeset 31
- Timestamp:
- 02/02/06 01:00:05
- Files:
-
- trunk/INSTALL.txt (modified) (1 diff)
- trunk/README.txt (modified) (6 diffs)
- trunk/templates/cgierror.html (modified) (1 diff)
- trunk/templates/cgitest.html (modified) (1 diff)
- trunk/templates/simple.html (modified) (1 diff)
- trunk/templates/testtemplate.html (modified) (1 diff)
- trunk/templates/testtemplate_include.html (modified) (1 diff)
- trunk/templess.py (modified) (3 diffs)
- trunk/templess.rng (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/INSTALL.txt
r9 r31 27 27 ============================ 28 28 29 The Templess project pages (Trac) can be found at 30 http:// debris.demon.nl:8080/cgi-bin/templess.cgi. You can report bugs and view31 the Subversion repository there. If you have questions, you can send them to 32 johnny@ debris.demon.nl(until I have a mailinglist set up, please check the29 The Templess project pages (Trac) can be found at 30 http://templess.johnnydebris.net. You can report bugs and view the Subversion 31 repository there. If you have questions, you can send them to 32 johnny@johnnydebris.net (until I have a mailinglist set up, please check the 33 33 project pages to see if a mailinglist is available before sending me emails). trunk/README.txt
r4 r31 98 98 99 99 xml = """<?xml version="1.0" ?> 100 <doc xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">100 <doc xmlns:t="http://johnnydebris.net/xmlns/templess"> 101 101 <foo t:content="foodata" /> 102 102 </doc> … … 129 129 130 130 xml = """<?xml version="1.0" ?> 131 <doc xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">131 <doc xmlns:t="http://johnnydebris.net/xmlns/templess"> 132 132 <foo t:content="foodata" /> 133 133 </doc> … … 160 160 161 161 xml = """<?xml version="1.0" ?> 162 <doc xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">162 <doc xmlns:t="http://johnnydebris.net/xmlns/templess"> 163 163 <foo t:content="foodata" /> 164 164 </doc> … … 194 194 195 195 xml = """<?xml version="1.0" ?> 196 <doc xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">196 <doc xmlns:t="http://johnnydebris.net/xmlns/templess"> 197 197 <foo t:content="foodata"><bar t:content="bardata" /></foo> 198 198 </doc> … … 220 220 221 221 xml = """<?xml version="1.0" ?> 222 <doc xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">222 <doc xmlns:t="http://johnnydebris.net/xmlns/templess"> 223 223 <foo t:cond="foodata" /> 224 224 <bar t:cond="bardata" /> … … 244 244 245 245 xml = """<?xml version="1.0" ?> 246 <doc xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">246 <doc xmlns:t="http://johnnydebris.net/xmlns/templess"> 247 247 <foo t:attr="bar bardata; baz bazdata" /> 248 248 </doc> trunk/templates/cgierror.html
r4 r31 1 1 <html xmlns="http://www.w3.org/1999/xhtml" 2 xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">2 xmlns:t="http://johnnydebris.net/xmlns/templess"> 3 3 <head> 4 4 <title>Templess exception</title> trunk/templates/cgitest.html
r22 r31 1 1 <html xmlns="http://www.w3.org/1999/xhtml" 2 xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">2 xmlns:t="http://johnnydebris.net/xmlns/templess"> 3 3 <head> 4 4 <title>Templess example</title> trunk/templates/simple.html
r20 r31 1 1 <html xmlns="http://www.w3.org/1999/xhtml" 2 xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">2 xmlns:t="http://johnnydebris.net/xmlns/templess"> 3 3 <head> 4 4 <title t:content="title"></title> trunk/templates/testtemplate.html
r21 r31 1 1 <html xmlns="http://www.w3.org/1999/xhtml" 2 xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">2 xmlns:t="http://johnnydebris.net/xmlns/templess"> 3 3 <head> 4 4 <title>Test for Templess</title> trunk/templates/testtemplate_include.html
r21 r31 1 1 <div xmlns="http://www.w3.org/1999/xhtml" 2 xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1"2 xmlns:t="http://johnnydebris.net/xmlns/templess" 3 3 t:content="data" /> trunk/templess.py
r30 r31 3 3 This software is distributed under the terms of the Templess 4 4 License. See LICENSE.txt for license text. 5 E-mail: johnny@ debris.demon.nl5 E-mail: johnny@johnnydebris.net 6 6 7 7 A very compact, XML based templating system. It has only 4 different … … 23 23 __appname__ = 'templess' 24 24 __version__ = '0.1' 25 __author__ = 'Guido Wesdorp <johnny@ debris.demon.nl>'25 __author__ = 'Guido Wesdorp <johnny@johnnydebris.nt>' 26 26 __last_modified_date__ = \ 27 27 '$Date$' … … 30 30 __footer__ = '%s v%s, (c) %s 2005' % (__appname__, __version__, __author__) 31 31 32 XMLNS = 'http:// debris.demon.nl/xmlns/templess/%s' % __version__32 XMLNS = 'http://johnnydebris.net/xmlns/templess' 33 33 34 34 def is_iterable_not_string(v): trunk/templess.rng
r4 r31 1 1 <?xml version="1.0" ?> 2 2 <grammar xmlns="http://relaxng.org/ns/structure/1.0" 3 xmlns:t="http:// debris.demon.nl/xmlns/templess/0.1">3 xmlns:t="http://johnnydebris.net/xmlns/templess"> 4 4 5 5 <include href="xhtml.rng" />
