- XML parser framework rewrite
[mir.git] / source / mir / generator / tal / TALTest.java
1 /*
2  * Copyright (C) 2001, 2002 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  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
23  * (or with modified versions of the above that use the same license as the above),
24  * and distribute linked combinations including the two.  You must obey the
25  * GNU General Public License in all respects for all of the code used other than
26  * the above mentioned libraries.  If you modify this file, you may extend this
27  * exception to your version of the file, but you are not obligated to do so.
28  * If you do not wish to do so, delete this exception statement from your version.
29  */
30
31 package mir.generator.tal;
32
33 import java.io.*;
34 import java.util.HashMap;
35 import java.util.*;
36 import mir.generator.tal.interfaces.*;
37 import mir.util.xml.html.*;
38
39 public class TALTest {
40   public static void main(String args[]) {
41     try {
42       TALTemplateParser parser = new TALTemplateParser();
43       MirExpressionParser expressionParser = new MirExpressionParser();
44       Map test = new HashMap();
45       test.put("name", "zapata");
46
47       HTMLParser parser2 = new HTMLParser();
48 /*
49       parser2.parse(new StringReader("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">  <div><b><a href=bla>blaat</div>"),
50           new HTMLParser.ParserReceiver() {
51
52         public void dtd(String aDTD) {
53           System.out.println(aDTD);
54         }
55
56         public void openTag(String aTag, Map anAttributes) {
57
58           System.out.print("<"+aTag);
59           Iterator i = anAttributes.entrySet().iterator();
60           while (i.hasNext()) {
61             Map.Entry entry = (Map.Entry) i.next();
62
63             System.out.print(" " + entry.getKey() + "=\"" + entry.getValue()+"\"");
64           }
65           System.out.print(">");
66         }
67
68         public void closeTag(String aTag) {
69           System.out.print("</"+aTag+">");
70         }
71
72         public void comment(String aData) {
73         }
74
75         public void cdata(String aData) {
76           System.out.print(aData);
77         }
78       }
79           );
80 */
81 String doc =
82 " <!DOCTYPE some doc type>" +
83 "  <head tal:on-error=\"exception.message\">"+
84 "    <title tal:content=\"lang('posting.htmltitle')\"/>"+
85 "    <meta name=\"description\" tal:attributes=\"content lang('posting.meta.description')\">"+
86 "    <meta name=\"author\" content=\"${lang(\"posting.meta.author\")}\">"+
87 "    <meta name=\"keywords\" content=\"${lang(\"posting.meta.keywords\")}\">"+
88 "    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=${config['Mir.DefaultHTMLCharset']}\">"+
89 "    <meta name=\"robots\" content=\"index\">"+
90 "    <meta name=\"robots\" content=\"follow\">"+
91 "    <link rel=stylesheet type=\"text/css\" href=\"${config['Producer.ProductionHost']}/style/formate.css\">"+
92 "  </head>"+
93 "  <body bgcolor=\"white\" text=\"black\" link=\"#006600\" vlink=\"#006600\" alink=\"Red\" tal:on-error='exception.message'>"+
94 "  </body>"+
95 "</html>";
96       System.out.println(doc);
97       TALTemplate template = parser.parse(doc, expressionParser);
98
99
100 //          <td tal:on-error='exception.message'><tal:test tal:content='name.bla'></tal:test><h1 tal:content=\"name\">test</h1></TD>", expressionParser);
101       PrintWriter o = new PrintWriter(System.out);
102       template.processTemplate(test, o, new TALLogger.TALSystemOutLogger());
103       o.close();
104
105     }
106     catch (Throwable t) {
107       System.out.println("Exception: " + t.toString());
108       t.printStackTrace(System.out);
109     }
110   }
111 }