Changeset 31

Show
Ignore:
Timestamp:
02/02/06 01:00:05
Author:
johnny
Message:

Changed namespace to use the johnnydebris.net host name, and removed the
version from it (tip from 'oefe', trac ticket #10).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/INSTALL.txt

    r9 r31  
    2727============================ 
    2828 
    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 view 
    31 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 the 
     29The Templess project pages (Trac) can be found at  
     30http://templess.johnnydebris.net. You can report bugs and view the Subversion  
     31repository there. If you have questions, you can send them to  
     32johnny@johnnydebris.net (until I have a mailinglist set up, please check the 
    3333project pages to see if a mailinglist is available before sending me emails). 
  • trunk/README.txt

    r4 r31  
    9898 
    9999    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"> 
    101101                  <foo t:content="foodata" /> 
    102102                </doc> 
     
    129129 
    130130    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"> 
    132132                  <foo t:content="foodata" /> 
    133133                </doc> 
     
    160160 
    161161    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"> 
    163163                  <foo t:content="foodata" /> 
    164164                </doc> 
     
    194194 
    195195    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"> 
    197197                  <foo t:content="foodata"><bar t:content="bardata" /></foo> 
    198198                </doc> 
     
    220220 
    221221    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"> 
    223223                  <foo t:cond="foodata" /> 
    224224                  <bar t:cond="bardata" /> 
     
    244244 
    245245    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"> 
    247247                  <foo t:attr="bar bardata; baz bazdata" /> 
    248248                </doc> 
  • trunk/templates/cgierror.html

    r4 r31  
    11<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"> 
    33  <head> 
    44    <title>Templess exception</title> 
  • trunk/templates/cgitest.html

    r22 r31  
    11<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"> 
    33  <head> 
    44    <title>Templess example</title> 
  • trunk/templates/simple.html

    r20 r31  
    11<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"> 
    33  <head> 
    44    <title t:content="title"></title> 
  • trunk/templates/testtemplate.html

    r21 r31  
    11<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"> 
    33  <head> 
    44    <title>Test for Templess</title> 
  • trunk/templates/testtemplate_include.html

    r21 r31  
    11<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
    33        t:content="data" /> 
  • trunk/templess.py

    r30 r31  
    33 This software is distributed under the terms of the Templess 
    44 License. See LICENSE.txt for license text. 
    5  E-mail: johnny@debris.demon.nl 
     5 E-mail: johnny@johnnydebris.net 
    66 
    77 A very compact, XML based templating system. It has only 4 different  
     
    2323__appname__ = 'templess' 
    2424__version__ = '0.1' 
    25 __author__ = 'Guido Wesdorp <johnny@debris.demon.nl>' 
     25__author__ = 'Guido Wesdorp <johnny@johnnydebris.nt>' 
    2626__last_modified_date__ = \ 
    2727    '$Date$' 
     
    3030__footer__ = '%s v%s, (c) %s 2005' % (__appname__, __version__, __author__) 
    3131 
    32 XMLNS = 'http://debris.demon.nl/xmlns/templess/%s' % __version__ 
     32XMLNS = 'http://johnnydebris.net/xmlns/templess' 
    3333 
    3434def is_iterable_not_string(v): 
  • trunk/templess.rng

    r4 r31  
    11<?xml version="1.0" ?> 
    22<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"> 
    44 
    55  <include href="xhtml.rng" />