blob: 06a030376562f7f05a120c0a68b627344ede2a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
package org.madore.damlengine;
import java.io.OutputStreamWriter;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.DocumentBuilder;
import org.w3c.dom.Document;
import org.xml.sax.EntityResolver;
import org.apache.xerces.jaxp.DocumentBuilderFactoryImpl;
public final class DamlEngine {
public static final String XML_NS = "http://www.w3.org/XML/1998/namespace";
public static final String XHTML_NS = "http://www.w3.org/1999/xhtml";
public static final String DAML_NS = "http://www.madore.org/~david/NS/daml/";
private DamlEngine() { // Forbid instantiation
throw new AssertionError("DamlEngine cannot be instantiated");
}
public static class RootTodo extends TodoItem {
public RootTodo(Context ctx) {
super(ctx, null);
}
public void handle() {
TodoItem it
= TodoElement.getTodoElement(ctx.doc.getDocumentElement(),
ctx, this);
this.ownerDeque.registerAtEnd(it);
}
}
public static void processDocument(Document doc) {
TodoDeque todoDeque = new TodoDeque();
Context ctx = new Context(doc);
todoDeque.registerAtEnd(new RootTodo(ctx));
todoDeque.dispatchLoop();
}
public static void main(String[] args)
throws Exception {
final Resolver resolver = new Resolver();
final DocumentBuilderFactory dbf = new DocumentBuilderFactoryImpl();
dbf.setNamespaceAware(true);
dbf.setValidating(false);
final DocumentBuilder db = dbf.newDocumentBuilder();
db.setEntityResolver(resolver);
if ( args.length == 0 ) {
System.err.println("expecting filename as argument");
}
for (String fname : args) {
Document doc = db.parse(fname);
processDocument(doc);
doc.normalizeDocument();
Unparser unparser
= new Unparser(doc, new OutputStreamWriter(System.out,
"UTF-8"),
"html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"");
unparser.unparse();
}
}
}
|