4c2ec48b8a32792911fb2939c60eb2e239bf46cc
[mir.git] / source / mir / generator / tal / TALTest.java
1 /*
2  * Copyright (C) 2005 The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with  any library licensed under the Apache Software License.
22  * You must obey the GNU General Public License in all respects for all of the code used
23  * other than the above mentioned libraries.  If you modify this file, you may extend this
24  * exception to your version of the file, but you are not obligated to do so.
25  * If you do not wish to do so, delete this exception statement from your version.
26  */
27 package mir.generator.tal;
28
29 import java.io.File;
30 import java.io.PrintWriter;
31 import java.util.HashMap;
32 import java.util.Map;
33
34 import mir.generator.tal.interfaces.TALLogger;
35 import mir.generator.tal.template.CoreTemplateNodeLibrary;
36 import mir.generator.tal.template.MacroTemplateNodeLibrary;
37 import mir.generator.tal.template.Template;
38 import mir.generator.tal.template.TemplateLibrary;
39 import mir.generator.tal.template.TemplateProcessingException;
40
41 public class TALTest {
42   public static void main(String args[]) {
43     try {
44       final SimpleTemplateNodeLibraryRegistry registry = new SimpleTemplateNodeLibraryRegistry();
45
46       registry.registerTemplateNodeLibrary("tal", "http://xml.zope.org/namespaces/tal",
47           new CoreTemplateNodeLibrary("tal", "http://xml.zope.org/namespaces/tal"));
48       registry.registerTemplateNodeLibrary("metal", "http://xml.zope.org/namespaces/metal",
49           new MacroTemplateNodeLibrary("metal", "http://xml.zope.org/namespaces/metal"));
50
51       TemplateLibrary library = new TemplateLibrary() {
52         public Template lookupTemplate(String aTemplateName) throws TemplateProcessingException {
53           try {
54             TALTemplateParser parser = new TALTemplateParser(registry);
55
56             if (aTemplateName.equals("a")) {
57               return parser.parse("<test tal:on-error='${exception.message}'><bkla><font tal:content='${sdf'></bkla><td><b><font>bla</font></b></td></font>" +
58                   "<test2 metal:use-macro=\"b#testmacro\"></test2><test3 a='b' tal:attributes='c a:${tagattributes.a}'> </test3> " +
59                   "<test4 tal:content='the content was ${tagcontent}'>bla <b>die</b> bla ></test4><a width='100%'/>" +
60                   "<test5 tal:bla=a><tal:bla/></test5>   </test>", new MirExpressionParser());
61             }
62             else {
63               return parser.parse("<test3><test4 metal:define-macro=\"testmacro\">hoi</test4><test3>", new MirExpressionParser());
64             }
65           }
66           catch (Throwable t) {
67             t.printStackTrace();
68             System.out.println(t.toString());
69             return null;
70           }
71         }
72       };
73
74       Map test = new HashMap();
75
76       Template template = library.lookupTemplate("a");
77
78       PrintWriter p = new PrintWriter(System.out);
79
80       template.process(new HashMap(), p, new TALLogger.TALSystemOutLogger(), library);
81
82       p.close();
83
84     }
85     catch (Throwable t) {
86       System.out.println("Exception: " + t.toString());
87       t.printStackTrace(System.out);
88     }
89   }
90   public static void main2(String args[]) {
91     try {
92       TALTemplateEngine engine = new TALTemplateEngine(
93           new MirExpressionParser(), new File("m:/romania/mir/etc/producer/"));
94
95       Map test = new HashMap();
96       test.put("name", "zapata");
97
98       Template template = engine.loadTemplate("indy-ro-txt.html");
99
100       PrintWriter p = new PrintWriter(System.out);
101
102       template.process(new Object(), p, new TALLogger.TALSystemOutLogger(), engine);
103
104       p.close();
105
106     }
107     catch (Throwable t) {
108       System.out.println("Exception: " + t.toString());
109       t.printStackTrace(System.out);
110     }
111   }
112 }