test/spec/spectest3.xml
author ali <ali@juiblex.co.uk>
Wed Oct 10 22:58:21 2012 +0100 (2012-10-10)
changeset 0 bc8c9a11cbfc
permissions -rw-r--r--
Initial version
     1 <and>
     2   <expr>
     3     <define name="email" args="to body">
     4       <add>
     5 	<string>From user@localhost&#10;</string>
     6 	<string>To: </string>
     7 	<to/>
     8 	<string>&#10;</string>
     9 	<string>&#10;</string>
    10 	<body/>
    11 	<string>&#10;</string>
    12       </add>
    13     </define>
    14 
    15     <eq>
    16       <email to="authors@ebt.com">hello</email>
    17       <email>
    18 	<define name="to">authors@ebt.com</define>
    19 	hello
    20       </email>
    21     </eq>
    22   </expr>
    23 
    24   <print x="2"><define name="x">3</define><x/></print>
    25 </and>