1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 03:55:04 +03:00

starting work on reusing the parser dictionary for the element and

* SAX2.c include/libxml/parser.h: starting work on reusing the
  parser dictionary for the element and attribute tag names.
  Add pools for Element and Attributes in the parser context,
  which should help speeding up the reader.
* Makefile.am result/*.rdr : adding non-python reader regression
  tests.
Daniel
This commit is contained in:
Daniel Veillard 2003-09-15 14:50:06 +00:00
parent 62998c0ec7
commit 8a44e59d67
87 changed files with 36625 additions and 26 deletions

View File

@ -1,3 +1,12 @@
Mon Sep 15 16:46:28 CEST 2003 Daniel Veillard <daniel@veillard.com>
* SAX2.c include/libxml/parser.h: starting work on reusing the
parser dictionary for the element and attribute tag names.
Add pools for Element and Attributes in the parser context,
which should help speeding up the reader.
* Makefile.am result/*.rdr : adding non-python reader regression
tests.
Mon Sep 15 14:54:42 CEST 2003 Daniel Veillard <daniel@veillard.com>
* SAX2.c parser.c valid.c: starting to cleanup some of the

View File

@ -120,7 +120,7 @@ check-local: tests
testall : tests SVGtests SAXtests
tests: XMLtests XMLenttests NStests SAXtests HTMLtests Validtests URItests XPathtests XPtrtests XIncludetests C14Ntests Scripttests Catatests @TEST_REGEXPS@ @TEST_SCHEMAS@ @TEST_THREADS@
tests: XMLtests XMLenttests NStests Readertests SAXtests HTMLtests Validtests URItests XPathtests XPtrtests XIncludetests C14Ntests Scripttests Catatests @TEST_REGEXPS@ @TEST_SCHEMAS@ @TEST_THREADS@
@(if [ "@PYTHON_SUBDIR@" != "" ] ; then cd python ; $(MAKE) tests ; fi)
valgrind:
@ -569,6 +569,27 @@ Threadtests : testThreads$(EXEEXT)
-@($(CHECKER) $(top_builddir)/testThreads ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";)
Readertests : testReader$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## Reader regression tests"
@echo "##"
-@(for i in $(srcdir)/test/* ; do \
name=`basename $$i`; \
if [ ! -d $$i ] ; then \
if [ ! -f $(srcdir)/result/$$name.rdr ] ; then \
echo New test file $$name ; \
$(CHECKER) $(top_builddir)/xmllint --nonet --debug --stream $$i > $(srcdir)/result/$$name.rdr 2>/dev/null ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
else \
echo Testing $$name ; \
$(CHECKER) $(top_builddir)/xmllint --nonet --debug --stream $$i > result.$$name 2>/dev/null ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
diff $(srcdir)/result/$$name.rdr result.$$name ; \
rm result.$$name ; \
fi ; fi ; done)
SAXtests : testSAX$(EXEEXT)
@(echo > .memdump)
@echo "##"

103
SAX2.c
View File

@ -1624,30 +1624,60 @@ xmlSAX2AttributeNs(xmlParserCtxtPtr ctxt,
if (prefix != NULL)
namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, prefix);
ret = xmlNewNsProp(ctxt->node, namespace, localname, NULL);
/*
* allocate the node
*/
if (ctxt->freeAttrs != NULL) {
ret = ctxt->freeAttrs;
ctxt->freeAttrs = ret->next;
memset(ret, 0, sizeof(xmlAttr));
ret->type = XML_ATTRIBUTE_NODE;
if (ret != NULL) {
if ((ctxt->replaceEntities == 0) && (!ctxt->html)) {
xmlNodePtr tmp;
ret->parent = ctxt->node;
ret->doc = ctxt->myDoc;
ret->ns = namespace;
ret->children = xmlStringLenGetNodeList(ctxt->myDoc, value,
valueend - value);
tmp = ret->children;
while (tmp != NULL) {
tmp->parent = (xmlNodePtr) ret;
if (tmp->next == NULL)
ret->last = tmp;
tmp = tmp->next;
}
} else if (value != NULL) {
ret->children = xmlNewDocTextLen(ctxt->myDoc, value,
valueend - value);
ret->last = ret->children;
if (ret->children != NULL)
ret->children->parent = (xmlNodePtr) ret;
if (ctxt->dictNames)
ret->name = localname;
else
ret->name = xmlStrdup(localname);
if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
xmlRegisterNodeDefaultValue((xmlNodePtr)ret);
} else {
if (ctxt->dictNames)
ret = xmlNewNsPropEatName(ctxt->node, namespace,
(xmlChar *) localname, NULL);
else
ret = xmlNewNsProp(ctxt->node, namespace, localname, NULL);
if (ret == NULL) {
ctxt->errNo = XML_ERR_NO_MEMORY;
ctxt->instate = XML_PARSER_EOF;
ctxt->disableSAX = 1;
return;
}
}
if ((ctxt->replaceEntities == 0) && (!ctxt->html)) {
xmlNodePtr tmp;
ret->children = xmlStringLenGetNodeList(ctxt->myDoc, value,
valueend - value);
tmp = ret->children;
while (tmp != NULL) {
tmp->parent = (xmlNodePtr) ret;
if (tmp->next == NULL)
ret->last = tmp;
tmp = tmp->next;
}
} else if (value != NULL) {
ret->children = xmlNewDocTextLen(ctxt->myDoc, value,
valueend - value);
ret->last = ret->children;
if (ret->children != NULL)
ret->children->parent = (xmlNodePtr) ret;
}
if ((!ctxt->html) && ctxt->validate && ctxt->wellFormed &&
ctxt->myDoc && ctxt->myDoc->intSubset) {
/*
@ -1790,13 +1820,36 @@ xmlSAX2StartElementNs(void *ctx,
ctxt->errNo = XML_ERR_NO_DTD;
}
ret = xmlNewDocNode(ctxt->myDoc, NULL, localname, NULL);
if (ret == NULL) {
ctxt->errNo = XML_ERR_NO_MEMORY;
ctxt->instate = XML_PARSER_EOF;
ctxt->disableSAX = 1;
return;
/*
* allocate the node
*/
if (ctxt->freeElems != NULL) {
ret = ctxt->freeElems;
ctxt->freeElems = ret->next;
memset(ret, 0, sizeof(xmlNode));
ret->type = XML_ELEMENT_NODE;
if (ctxt->dictNames)
ret->name = localname;
else
ret->name = xmlStrdup(localname);
if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
xmlRegisterNodeDefaultValue(ret);
} else {
if (ctxt->dictNames)
ret = xmlNewDocNodeEatName(ctxt->myDoc, NULL,
(xmlChar *) localname, NULL);
else
ret = xmlNewDocNode(ctxt->myDoc, NULL, localname, NULL);
if (ret == NULL) {
ctxt->errNo = XML_ERR_NO_MEMORY;
ctxt->instate = XML_PARSER_EOF;
ctxt->disableSAX = 1;
return;
}
}
if (ctxt->myDoc->children == NULL) {
xmlAddChild((xmlNodePtr) ctxt->myDoc, (xmlNodePtr) ret);
} else if (parent == NULL) {

View File

@ -262,6 +262,13 @@ struct _xmlParserCtxt {
xmlHashTablePtr attsDefault; /* defaulted attributes if any */
xmlHashTablePtr attsSpecial; /* non-CDATA attributes if any */
int nsWellFormed; /* is the document XML Nanespace okay */
/*
* Those fields are needed only for treaming parsing so far
*/
int dictNames; /* Use dictionary names for the tree */
xmlNodePtr freeElems; /* List of freed element nodes */
xmlAttrPtr freeAttrs; /* List of freed attributes nodes */
};
/**

1
result/att1.rdr Normal file
View File

@ -0,0 +1 @@
0 1 doc 1 0

1
result/att2.rdr Normal file
View File

@ -0,0 +1 @@
0 1 doc 1 0

3
result/att3.rdr Normal file
View File

@ -0,0 +1,3 @@
0 1 select 0 0
1 3 #text 0 1 f oo
0 15 select 0 0

27785
result/att4.rdr Normal file

File diff suppressed because it is too large Load Diff

109
result/att5.rdr Normal file
View File

@ -0,0 +1,109 @@
0 10 doc 0 0
0 1 doc 0 0
1 14 #text 0 1
1 8 #comment 0 1 no normalization
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 1 norm 1 0
1 14 #text 0 1
1 8 #comment 0 1 normalization
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 1 normId 1 0
1 14 #text 0 1
1 8 #comment 0 1 PBM serializing back
1 14 #text 0 1
0 15 doc 0 0

1
result/attrib.xml.rdr Normal file
View File

@ -0,0 +1 @@
0 1 item 1 0

View File

@ -0,0 +1,4 @@
0 10 doc 0 0
0 1 doc 0 0
1 5 WhatHeSaid 0 0
0 15 doc 0 0

1
result/bigname.xml.rdr Normal file
View File

@ -0,0 +1 @@
./test/bigname.xml : failed to parse

1
result/bigname2.xml.rdr Normal file
View File

@ -0,0 +1 @@
./test/bigname2.xml : failed to parse

7
result/cdata.rdr Normal file
View File

@ -0,0 +1,7 @@
0 1 doc 0 0
1 14 #text 0 1
1 4 #cdata-section 0 1 <greeting>Hello, world!</greeting>
1 14 #text 0 1
0 15 doc 0 0

13
result/comment.xml.rdr Normal file
View File

@ -0,0 +1,13 @@
0 1 doc 0 0
1 14 #text 0 1
1 8 #comment 0 1 document start
1 14 #text 0 1
1 1 empty 1 0
1 14 #text 0 1
1 8 #comment 0 1 document end
1 14 #text 0 1
0 15 doc 0 0

9
result/comment2.xml.rdr Normal file
View File

@ -0,0 +1,9 @@
0 8 #comment 0 1 document start
0 1 doc 0 0
1 14 #text 0 1
1 1 empty 1 0
1 14 #text 0 1
0 15 doc 0 0
0 8 #comment 0 1 document end

78
result/dav1.rdr Normal file
View File

@ -0,0 +1,78 @@
0 1 D:multistatus 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 R:bigbox 0 0
4 14 #text 0 1
4 1 R:BoxType 0 0
5 3 #text 0 1 Box type A
4 15 R:BoxType 0 0
4 14 #text 0 1
3 15 R:bigbox 0 0
3 14 #text 0 1
3 1 R:author 0 0
4 14 #text 0 1
4 1 R:Name 0 0
5 3 #text 0 1 J.J. Dingleheimerschmidt
4 15 R:Name 0 0
4 14 #text 0 1
3 15 R:author 0 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP/1.1 200 OK
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 R:DingALing 1 0
3 14 #text 0 1
3 1 R:Random 1 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP/1.1 403 Forbidden
2 15 D:status 0 0
2 14 #text 0 1
2 1 D:responsedescription 0 0
3 3 #text 0 1 The user does not have access to the DingALing property.
2 15 D:responsedescription 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
1 1 D:responsedescription 0 0
2 3 #text 0 1 There has been an access violation error.
1 15 D:responsedescription 0 0
1 14 #text 0 1
0 15 D:multistatus 0 0

9
result/dav10.rdr Normal file
View File

@ -0,0 +1,9 @@
0 1 D:owner 0 0
1 14 #text 0 1
1 1 D:href 0 0
2 3 #text 0 1 http://www.ics.uci.edu/~ejw/contact.html
1 15 D:href 0 0
1 14 #text 0 1
0 15 D:owner 0 0

60
result/dav11.rdr Normal file
View File

@ -0,0 +1,60 @@
0 1 D:prop 0 0
1 14 #text 0 1
1 1 D:lockdiscovery 0 0
2 14 #text 0 1
2 1 D:activelock 0 0
3 14 #text 0 1
3 1 D:locktype 0 0
4 3 #text 0 1 write
3 15 D:locktype 0 0
3 14 #text 0 1
3 1 D:lockscope 0 0
4 3 #text 0 1 exclusive
3 15 D:lockscope 0 0
3 14 #text 0 1
3 1 D:addlocks 1 0
3 14 #text 0 1
3 1 D:owner 0 0
4 14 #text 0 1
4 1 D:href 0 0
5 3 #text 0 1
http://www.ics.uci.edu/~ejw/contact.html
4 15 D:href 0 0
4 14 #text 0 1
3 15 D:owner 0 0
3 14 #text 0 1
3 1 D:timeout 0 0
4 3 #text 0 1 Second-604800
3 15 D:timeout 0 0
3 14 #text 0 1
3 1 D:locktoken 0 0
4 14 #text 0 1
4 1 D:href 0 0
5 3 #text 0 1
opaquelocktoken:xyz122393481230912asdfa09s8df09s7df
4 15 D:href 0 0
4 14 #text 0 1
3 15 D:locktoken 0 0
3 14 #text 0 1
2 15 D:activelock 0 0
2 14 #text 0 1
1 15 D:lockdiscovery 0 0
1 14 #text 0 1
0 15 D:prop 0 0

3
result/dav12.rdr Normal file
View File

@ -0,0 +1,3 @@
0 1 D:href 0 0
1 3 #text 0 1 http://www.ics.uci.edu/~ejw/contact.html
0 15 D:href 0 0

45
result/dav13.rdr Normal file
View File

@ -0,0 +1,45 @@
0 1 D:multistatus 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:href 0 0
3 3 #text 0 1
http://webdav.sb.aol.com/workspace/webdav/proposal.doc
2 15 D:href 0 0
2 14 #text 0 1
2 1 D:href 0 0
3 3 #text 0 1
http://webdav.sb.aol.com/workspace/webdav/
2 15 D:href 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP/1.1 202 Accepted
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:href 0 0
3 3 #text 0 1 http://foo.bar/blah
2 15 D:href 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP/1.1 403 Forbidden
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
0 15 D:multistatus 0 0

73
result/dav15.rdr Normal file
View File

@ -0,0 +1,73 @@
0 1 D:prop 0 0
1 14 #text 0 1
1 1 D:Source 0 0
2 14 #text 0 1
2 1 D:link 0 0
3 14 #text 0 1
3 1 F:projfiles 0 0
4 3 #text 0 1 Source
3 15 F:projfiles 0 0
3 14 #text 0 1
3 1 D:src 0 0
4 3 #text 0 1 http://foo.bar/program
3 15 D:src 0 0
3 14 #text 0 1
3 1 D:dst 0 0
4 3 #text 0 1 http://foo.bar/src/main.c
3 15 D:dst 0 0
3 14 #text 0 1
2 15 D:link 0 0
2 14 #text 0 1
2 1 D:link 0 0
3 14 #text 0 1
3 1 F:projfiles 0 0
4 3 #text 0 1 Library
3 15 F:projfiles 0 0
3 14 #text 0 1
3 1 D:src 0 0
4 3 #text 0 1 http://foo.bar/program
3 15 D:src 0 0
3 14 #text 0 1
3 1 D:dst 0 0
4 3 #text 0 1 http://foo.bar/src/main.lib
3 15 D:dst 0 0
3 14 #text 0 1
2 15 D:link 0 0
2 14 #text 0 1
2 1 D:link 0 0
3 14 #text 0 1
3 1 F:projfiles 0 0
4 3 #text 0 1 Makefile
3 15 F:projfiles 0 0
3 14 #text 0 1
3 1 D:src 0 0
4 3 #text 0 1 http://foo.bar/program
3 15 D:src 0 0
3 14 #text 0 1
3 1 D:dst 0 0
4 3 #text 0 1 http://foo.bar/src/makefile
3 15 D:dst 0 0
3 14 #text 0 1
2 15 D:link 0 0
2 14 #text 0 1
1 15 D:Source 0 0
1 14 #text 0 1
0 15 D:prop 0 0

13
result/dav16.rdr Normal file
View File

@ -0,0 +1,13 @@
0 1 D:propfind 0 0
1 14 #text 0 1
1 1 D:prop 0 0
2 14 #text 0 1
2 1 lockdiscovery 1 0
2 14 #text 0 1
1 15 D:prop 0 0
1 14 #text 0 1
0 15 D:propfind 0 0

75
result/dav17.rdr Normal file
View File

@ -0,0 +1,75 @@
0 1 D:multistatus 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 D:lockdiscovery 0 0
4 14 #text 0 1
4 1 D:activelock 0 0
5 14 #text 0 1
5 1 D:locktype 0 0
6 3 #text 0 1 write
5 15 D:locktype 0 0
5 14 #text 0 1
5 1 D:lockscope 0 0
6 3 #text 0 1 exclusive
5 15 D:lockscope 0 0
5 14 #text 0 1
5 1 D:addlocks 0 0
6 14 #text 0 1
6 1 D:href 0 0
7 3 #text 0 1 http://foo.com/doc/
6 15 D:href 0 0
6 14 #text 0 1
5 15 D:addlocks 0 0
5 14 #text 0 1
5 1 D:owner 0 0
6 3 #text 0 1 Jane Smith
5 15 D:owner 0 0
5 14 #text 0 1
5 1 D:timeout 0 0
6 3 #text 0 1 Infinite
5 15 D:timeout 0 0
5 14 #text 0 1
5 1 D:locktoken 0 0
6 14 #text 0 1
6 1 D:href 0 0
7 3 #text 0 1 iamuri:unique!!!!!
6 15 D:href 0 0
6 14 #text 0 1
5 15 D:locktoken 0 0
5 14 #text 0 1
4 15 D:activelock 0 0
4 14 #text 0 1
3 15 D:lockdiscovery 0 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP/1.1 200 OK
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
0 15 D:multistatus 0 0

13
result/dav18.rdr Normal file
View File

@ -0,0 +1,13 @@
0 1 D:propfind 0 0
1 14 #text 0 1
1 1 D:prop 0 0
2 14 #text 0 1
2 1 supportedlock 1 0
2 14 #text 0 1
1 15 D:prop 0 0
1 14 #text 0 1
0 15 D:propfind 0 0

59
result/dav19.rdr Normal file
View File

@ -0,0 +1,59 @@
0 1 D:multistatus 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 D:supportedlock 0 0
4 14 #text 0 1
4 1 D:LockEntry 0 0
5 14 #text 0 1
5 1 D:locktype 0 0
6 3 #text 0 1 Write
5 15 D:locktype 0 0
5 14 #text 0 1
5 1 D:lockscope 0 0
6 3 #text 0 1 Exclusive
5 15 D:lockscope 0 0
5 14 #text 0 1
4 15 D:LockEntry 0 0
4 14 #text 0 1
4 1 D:LockEntry 0 0
5 14 #text 0 1
5 1 D:locktype 0 0
6 3 #text 0 1 Write
5 15 D:locktype 0 0
5 14 #text 0 1
5 1 D:lockscope 0 0
6 3 #text 0 1 Shared
5 15 D:lockscope 0 0
5 14 #text 0 1
4 15 D:LockEntry 0 0
4 14 #text 0 1
3 15 D:supportedlock 0 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP/1.1 200 OK
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
0 15 D:multistatus 0 0

81
result/dav2.rdr Normal file
View File

@ -0,0 +1,81 @@
0 1 S:multistatus 0 0
1 14 #text 0 1
1 1 S:response 0 0
2 14 #text 0 1
2 1 S:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/
2 15 S:href 0 0
2 14 #text 0 1
2 1 S:prop 0 0
3 14 #text 0 1
3 1 R:bigbox 0 0
4 14 #text 0 1
4 1 R:BoxType 0 0
5 3 #text 0 1 Box type A
4 15 R:BoxType 0 0
4 14 #text 0 1
3 15 R:bigbox 0 0
3 14 #text 0 1
3 1 R:author 0 0
4 14 #text 0 1
4 1 R:Name 0 0
5 3 #text 0 1 Hadrian
4 15 R:Name 0 0
4 14 #text 0 1
3 15 R:author 0 0
3 14 #text 0 1
2 15 S:prop 0 0
2 14 #text 0 1
2 1 S:status 0 0
3 3 #text 0 1 HTTP 1.1 200 OK
2 15 S:status 0 0
2 14 #text 0 1
1 15 S:response 0 0
1 14 #text 0 1
1 1 S:response 0 0
2 14 #text 0 1
2 1 S:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/index.html
2 15 S:href 0 0
2 14 #text 0 1
2 1 S:prop 0 0
3 14 #text 0 1
3 1 R:bigbox 0 0
4 14 #text 0 1
4 1 R:BoxType 0 0
5 3 #text 0 1 Box type B
4 15 R:BoxType 0 0
4 14 #text 0 1
3 15 R:bigbox 0 0
3 14 #text 0 1
2 15 S:prop 0 0
2 14 #text 0 1
2 1 S:status 0 0
3 3 #text 0 1 HTTP 1.1 200 OK
2 15 S:status 0 0
2 14 #text 0 1
1 15 S:response 0 0
1 14 #text 0 1
0 15 S:multistatus 0 0

57
result/dav3.rdr Normal file
View File

@ -0,0 +1,57 @@
0 1 D:multistatus 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/
2 15 D:href 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 R:bigbox 1 0
3 14 #text 0 1
3 1 R:author 1 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP 1.1 200 OK
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/index.html
2 15 D:href 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 R:bigbox 1 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP 1.1 200 OK
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
0 15 D:multistatus 0 0

47
result/dav4.rdr Normal file
View File

@ -0,0 +1,47 @@
0 1 D:propertyupdate 0 0
1 14 #text 0 1
1 1 D:set 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 Z:authors 0 0
4 14 #text 0 1
4 1 Z:Author 0 0
5 3 #text 0 1 Jim Whitehead
4 15 Z:Author 0 0
4 14 #text 0 1
4 1 Z:Author 0 0
5 3 #text 0 1 Roy Fielding
4 15 Z:Author 0 0
4 14 #text 0 1
3 15 Z:authors 0 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
1 15 D:set 0 0
1 14 #text 0 1
1 1 D:remove 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 Z:Copyright-Owner 1 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
1 15 D:remove 0 0
1 14 #text 0 1
0 15 D:propertyupdate 0 0

50
result/dav5.rdr Normal file
View File

@ -0,0 +1,50 @@
0 1 D:multistatus 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 Z:Authors 1 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP/1.1 420 Method Failure
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 Z:Copyright-Owner 1 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP/1.1 409 Conflict
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
1 1 D:responsedescription 0 0
2 3 #text 0 1 Copyright Owner can not be deleted or
altered.
1 15 D:responsedescription 0 0
1 14 #text 0 1
0 15 D:multistatus 0 0

63
result/dav6.rdr Normal file
View File

@ -0,0 +1,63 @@
0 1 D:multistatus 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:href 0 0
3 3 #text 0 1 http://www.microsoft.com/user/yarong/dav_drafts/
2 15 D:href 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 D:resourcetype 0 0
4 14 #text 0 1
4 1 D:collection 1 0
4 14 #text 0 1
3 15 D:resourcetype 0 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP 1.1 200 OK
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
1 1 D:response 0 0
2 14 #text 0 1
2 1 D:href 0 0
3 3 #text 0 1
http://www.microsoft.com/user/yarong/dav_drafts/base
2 15 D:href 0 0
2 14 #text 0 1
2 1 D:prop 0 0
3 14 #text 0 1
3 1 D:resourcetype 1 0
3 14 #text 0 1
2 15 D:prop 0 0
2 14 #text 0 1
2 1 D:status 0 0
3 3 #text 0 1 HTTP 1.1 200 OK
2 15 D:status 0 0
2 14 #text 0 1
1 15 D:response 0 0
1 14 #text 0 1
0 15 D:multistatus 0 0

57
result/dav7.rdr Normal file
View File

@ -0,0 +1,57 @@
0 1 d:multistatus 0 0
1 14 #text 0 1
1 1 d:response 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/resource1
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/resource2
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:status 0 0
3 3 #text 0 1 HTTP/1.1 200 OK
2 15 d:status 0 0
2 14 #text 0 1
1 15 d:response 0 0
1 14 #text 0 1
1 1 d:response 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:status 0 0
3 3 #text 0 1 HTTP/1.1 420 Method Failure
2 15 d:status 0 0
2 14 #text 0 1
1 15 d:response 0 0
1 14 #text 0 1
1 1 d:response 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/resource3
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:status 0 0
3 3 #text 0 1 HTTP/1.1 412 Precondition Failed
2 15 d:status 0 0
2 14 #text 0 1
1 15 d:response 0 0
1 14 #text 0 1
0 15 d:multistatus 0 0

51
result/dav8.rdr Normal file
View File

@ -0,0 +1,51 @@
0 1 d:multistatus 0 0
1 14 #text 0 1
1 1 d:response 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/othercontainer/resource1
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/othercontainer/resource2
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/othercontainer/
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/othercontainer/R2/D2
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:status 0 0
3 3 #text 0 1 HTTP/1.1 201 Created
2 15 d:status 0 0
2 14 #text 0 1
1 15 d:response 0 0
1 14 #text 0 1
1 1 d:response 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/othercontainer/R2/
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:status 0 0
3 3 #text 0 1 HTTP/1.1 412 Precondition Failed
2 15 d:status 0 0
2 14 #text 0 1
1 15 d:response 0 0
1 14 #text 0 1
0 15 d:multistatus 0 0

67
result/dav9.rdr Normal file
View File

@ -0,0 +1,67 @@
0 1 d:multistatus 0 0
1 14 #text 0 1
1 1 d:response 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/resource1
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/resource2
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/C2/R2
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:status 0 0
3 3 #text 0 1 HTTP/1.1 201 Created
2 15 d:status 0 0
2 14 #text 0 1
1 15 d:response 0 0
1 14 #text 0 1
1 1 d:response 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/container/C2
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:status 0 0
3 3 #text 0 1 HTTP/1.1 420 Method Failure
2 15 d:status 0 0
2 14 #text 0 1
1 15 d:response 0 0
1 14 #text 0 1
1 1 d:response 0 0
2 14 #text 0 1
2 1 d:href 0 0
3 3 #text 0 1 http://www.foo.bar/othercontainer/C2
2 15 d:href 0 0
2 14 #text 0 1
2 1 d:status 0 0
3 3 #text 0 1 HTTP/1.1 409 Conflict
2 15 d:status 0 0
2 14 #text 0 1
1 15 d:response 0 0
1 14 #text 0 1
0 15 d:multistatus 0 0

2
result/defattr.xml.rdr Normal file
View File

@ -0,0 +1,2 @@
0 10 doc 0 0
0 1 doc 1 0

2
result/defattr2.xml.rdr Normal file
View File

@ -0,0 +1,2 @@
0 10 doc 0 0
0 1 doc 1 0

292
result/dia1.rdr Normal file
View File

@ -0,0 +1,292 @@
0 1 dia:diagram 0 0
1 14 #text 0 1
1 1 dia:diagramdata 0 0
2 14 #text 0 1
2 1 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:color 1 0
3 14 #text 0 1
2 15 dia:attribute 0 0
2 14 #text 0 1
1 15 dia:diagramdata 0 0
1 14 #text 0 1
1 1 dia:layer 0 0
2 14 #text 0 1
2 1 dia:object 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:rectangle 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:color 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:real 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:enum 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:enum 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:enum 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:connections 0 0
4 14 #text 0 1
4 1 dia:connection 1 0
4 14 #text 0 1
3 15 dia:connections 0 0
3 14 #text 0 1
2 15 dia:object 0 0
2 14 #text 0 1
2 1 dia:object 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:rectangle 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:composite 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:string 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:font 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:real 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:point 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:color 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:enum 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
4 15 dia:composite 0 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
2 15 dia:object 0 0
2 14 #text 0 1
2 1 dia:object 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:rectangle 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:real 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:real 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:real 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:color 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:color 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:enum 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
2 15 dia:object 0 0
2 14 #text 0 1
1 15 dia:layer 0 0
1 14 #text 0 1
0 15 dia:diagram 0 0

292
result/dia2.rdr Normal file
View File

@ -0,0 +1,292 @@
0 1 dia:diagram 0 0
1 14 #text 0 1
1 1 dia:diagramdata 0 0
2 14 #text 0 1
2 1 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:color 1 0
3 14 #text 0 1
2 15 dia:attribute 0 0
2 14 #text 0 1
1 15 dia:diagramdata 0 0
1 14 #text 0 1
1 1 dia:layer 0 0
2 14 #text 0 1
2 1 dia:object 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:rectangle 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:color 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:real 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:enum 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:enum 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:enum 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:connections 0 0
4 14 #text 0 1
4 1 dia:connection 1 0
4 14 #text 0 1
3 15 dia:connections 0 0
3 14 #text 0 1
2 15 dia:object 0 0
2 14 #text 0 1
2 1 dia:object 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:rectangle 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:composite 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:string 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:font 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:real 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:point 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:color 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
5 1 dia:attribute 0 0
6 14 #text 0 1
6 1 dia:enum 1 0
6 14 #text 0 1
5 15 dia:attribute 0 0
5 14 #text 0 1
4 15 dia:composite 0 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
2 15 dia:object 0 0
2 14 #text 0 1
2 1 dia:object 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:rectangle 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:point 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:real 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:real 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:real 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:color 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:color 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
3 1 dia:attribute 0 0
4 14 #text 0 1
4 1 dia:enum 1 0
4 14 #text 0 1
3 15 dia:attribute 0 0
3 14 #text 0 1
2 15 dia:object 0 0
2 14 #text 0 1
1 15 dia:layer 0 0
1 14 #text 0 1
0 15 dia:diagram 0 0

5
result/dtd1.rdr Normal file
View File

@ -0,0 +1,5 @@
0 10 MEMO 0 0
0 1 MEMO 0 0
1 14 #text 0 1
0 15 MEMO 0 0

12
result/dtd10.rdr Normal file
View File

@ -0,0 +1,12 @@
0 10 doc 0 0
0 1 doc 0 0
1 1 b 0 0
2 3 #text 0 1 This
1 15 b 0 0
1 1 c 0 0
2 3 #text 0 1 is a
1 15 c 0 0
1 1 d 0 0
2 3 #text 0 1 valid document
1 15 d 0 0
0 15 doc 0 0

3
result/dtd11.rdr Normal file
View File

@ -0,0 +1,3 @@
0 10 doc 0 0
0 1 doc 0 0
0 15 doc 0 0

4
result/dtd12.rdr Normal file
View File

@ -0,0 +1,4 @@
0 10 doc 0 0
0 1 doc 0 0
1 5 WhatHeSaid 0 0
0 15 doc 0 0

4
result/dtd13.rdr Normal file
View File

@ -0,0 +1,4 @@
0 8 #comment 0 1 comment before the DTD
0 10 doc 0 0
0 8 #comment 0 1 comment after the DTD
0 1 doc 1 0

4
result/dtd2.rdr Normal file
View File

@ -0,0 +1,4 @@
0 10 doc 0 0
0 1 doc 0 0
1 3 #text 0 1 This is a valid document !
0 15 doc 0 0

4
result/dtd3.rdr Normal file
View File

@ -0,0 +1,4 @@
0 10 doc 0 0
0 1 doc 0 0
1 3 #text 0 1 This is a valid document !
0 15 doc 0 0

2
result/dtd4.rdr Normal file
View File

@ -0,0 +1,2 @@
0 10 doc 0 0
0 1 doc 1 0

11
result/dtd5.rdr Normal file
View File

@ -0,0 +1,11 @@
0 10 doc 0 0
0 1 doc 0 0
1 1 a 0 0
2 3 #text 0 1 This
1 15 a 0 0
1 3 #text 0 1 is a
1 1 b 0 0
2 3 #text 0 1 valid
1 15 b 0 0
1 3 #text 0 1 document
0 15 doc 0 0

12
result/dtd6.rdr Normal file
View File

@ -0,0 +1,12 @@
0 10 doc 0 0
0 1 doc 0 0
1 1 a 0 0
2 3 #text 0 1 This
1 15 a 0 0
1 1 b 0 0
2 3 #text 0 1 is a valid
1 15 b 0 0
1 1 a 0 0
2 3 #text 0 1 document
1 15 a 0 0
0 15 doc 0 0

9
result/dtd7.rdr Normal file
View File

@ -0,0 +1,9 @@
0 10 doc 0 0
0 1 doc 0 0
1 1 a 0 0
2 3 #text 0 1 This
1 15 a 0 0
1 1 b 0 0
2 3 #text 0 1 is a valid document
1 15 b 0 0
0 15 doc 0 0

9
result/dtd8.rdr Normal file
View File

@ -0,0 +1,9 @@
0 10 doc 0 0
0 1 doc 0 0
1 1 b 0 0
2 3 #text 0 1 This
1 15 b 0 0
1 1 c 0 0
2 3 #text 0 1 is a valid document
1 15 c 0 0
0 15 doc 0 0

9
result/dtd9.rdr Normal file
View File

@ -0,0 +1,9 @@
0 10 doc 0 0
0 1 doc 0 0
1 1 b 0 0
2 3 #text 0 1 This
1 15 b 0 0
1 1 d 0 0
2 3 #text 0 1 is a valid document
1 15 d 0 0
0 15 doc 0 0

8
result/ent1.rdr Normal file
View File

@ -0,0 +1,8 @@
0 10 EXAMPLE 0 0
0 1 EXAMPLE 0 0
1 14 #text 0 1
1 5 xml 0 0
1 14 #text 0 1
0 15 EXAMPLE 0 0

13
result/ent2.rdr Normal file
View File

@ -0,0 +1,13 @@
0 10 EXAMPLE 0 0
0 1 EXAMPLE 0 0
1 14 #text 0 1
1 5 title 0 0
1 3 #text 0 1
This text is about XML, the
1 5 xml 0 0
1 3 #text 0 1 and this is an embedded
1 1 IMG 1 0
1 14 #text 0 1
0 15 EXAMPLE 0 0

6
result/ent3.rdr Normal file
View File

@ -0,0 +1,6 @@
0 10 EXAMPLE 0 0
0 1 EXAMPLE 0 0
1 3 #text 0 1
Test of entities in attributes.
0 15 EXAMPLE 0 0

6
result/ent4.rdr Normal file
View File

@ -0,0 +1,6 @@
0 10 EXAMPLE 0 0
0 1 EXAMPLE 0 0
1 3 #text 0 1
Test of &amp; behaviour a&b .
0 15 EXAMPLE 0 0

6
result/ent5.rdr Normal file
View File

@ -0,0 +1,6 @@
0 1 EXAMPLE 0 0
1 3 #text 0 1
This is an inverted exclamation sign ¡
This is a space
0 15 EXAMPLE 0 0

3
result/ent6.rdr Normal file
View File

@ -0,0 +1,3 @@
0 10 doc 0 0
0 1 doc 0 0
0 15 doc 0 0

8
result/ent7.rdr Normal file
View File

@ -0,0 +1,8 @@
0 10 item 0 0
0 1 item 0 0
1 1 para 0 0
2 3 #text 0 1 'they called me
2 5 sampleEnt 0 0
2 3 #text 0 1 '
1 15 para 0 0
0 15 item 0 0

21
result/ent8.rdr Normal file
View File

@ -0,0 +1,21 @@
0 10 doc 0 0
0 1 doc 0 0
1 14 #text 0 1
1 1 Content 0 0
2 3 #text 0 1 Retenção
1 15 Content 0 0
1 14 #text 0 1
1 1 Content 0 0
2 3 #text 0 1 <>
1 15 Content 0 0
1 14 #text 0 1
1 1 Content 0 0
2 5 test1 0 0
2 5 test2 0 0
1 15 Content 0 0
1 14 #text 0 1
0 15 doc 0 0

5
result/eve.xml.rdr Normal file
View File

@ -0,0 +1,5 @@
0 10 spec 0 0
0 1 spec 0 0
1 14 #text 0 1
0 15 spec 0 0

3
result/isolat1.rdr Normal file
View File

@ -0,0 +1,3 @@
0 1 très 0 0
1 3 #text 0 1 là
0 15 très 0 0

108
result/isolat2.rdr Normal file
View File

@ -0,0 +1,108 @@
0 1 tst 0 0
1 3 #text 0 1
The following table displays the characters in ISO 8859
Latin-1, which are printable and unlisted in the ascii
manual page.
Oct Dec Hex Char Description
--------------------------------------------------------------------
240 160 A0 NO-BREAK SPACE
241 161 A1 ¡ INVERTED EXCLAMATION MARK
242 162 A2 ¢ CENT SIGN
243 163 A3 £ POUND SIGN
244 164 A4 ¤ CURRENCY SIGN
245 165 A5 ¥ YEN SIGN
246 166 A6 ¦ BROKEN BAR
247 167 A7 § SECTION SIGN
250 168 A8 ¨ DIAERESIS
251 169 A9 © COPYRIGHT SIGN
252 170 AA ª FEMININE ORDINAL INDICATOR
253 171 AB « LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
254 172 AC ¬ NOT SIGN
255 173 AD ­ SOFT HYPHEN
256 174 AE ® REGISTERED SIGN
257 175 AF ¯ MACRON
260 176 B0 ° DEGREE SIGN
261 177 B1 ± PLUS-MINUS SIGN
262 178 B2 ² SUPERSCRIPT TWO
263 179 B3 ³ SUPERSCRIPT THREE
264 180 B4 ´ ACUTE ACCENT
265 181 B5 µ MICRO SIGN
266 182 B6 ¶ PILCROW SIGN
267 183 B7 · MIDDLE DOT
270 184 B8 ¸ CEDILLA
271 185 B9 ¹ SUPERSCRIPT ONE
272 186 BA º MASCULINE ORDINAL INDICATOR
273 187 BB » RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
274 188 BC ¼ VULGAR FRACTION ONE QUARTER
275 189 BD ½ VULGAR FRACTION ONE HALF
276 190 BE ¾ VULGAR FRACTION THREE QUARTERS
277 191 BF ¿ INVERTED QUESTION MARK
300 192 C0 À LATIN CAPITAL LETTER A WITH GRAVE
301 193 C1 Á LATIN CAPITAL LETTER A WITH ACUTE
302 194 C2 Â LATIN CAPITAL LETTER A WITH CIRCUMFLEX
303 195 C3 Ã LATIN CAPITAL LETTER A WITH TILDE
304 196 C4 Ä LATIN CAPITAL LETTER A WITH DIAERESIS
305 197 C5 Å LATIN CAPITAL LETTER A WITH RING ABOVE
306 198 C6 Æ LATIN CAPITAL LETTER AE
307 199 C7 Ç LATIN CAPITAL LETTER C WITH CEDILLA
310 200 C8 È LATIN CAPITAL LETTER E WITH GRAVE
311 201 C9 É LATIN CAPITAL LETTER E WITH ACUTE
312 202 CA Ê LATIN CAPITAL LETTER E WITH CIRCUMFLEX
313 203 CB Ë LATIN CAPITAL LETTER E WITH DIAERESIS
314 204 CC Ì LATIN CAPITAL LETTER I WITH GRAVE
315 205 CD Í LATIN CAPITAL LETTER I WITH ACUTE
316 206 CE Î LATIN CAPITAL LETTER I WITH CIRCUMFLEX
317 207 CF Ï LATIN CAPITAL LETTER I WITH DIAERESIS
320 208 D0 Ð LATIN CAPITAL LETTER ETH
321 209 D1 Ñ LATIN CAPITAL LETTER N WITH TILDE
322 210 D2 Ò LATIN CAPITAL LETTER O WITH GRAVE
323 211 D3 Ó LATIN CAPITAL LETTER O WITH ACUTE
324 212 D4 Ô LATIN CAPITAL LETTER O WITH CIRCUMFLEX
325 213 D5 Õ LATIN CAPITAL LETTER O WITH TILDE
326 214 D6 Ö LATIN CAPITAL LETTER O WITH DIAERESIS
327 215 D7 × MULTIPLICATION SIGN
330 216 D8 Ø LATIN CAPITAL LETTER O WITH STROKE
331 217 D9 Ù LATIN CAPITAL LETTER U WITH GRAVE
332 218 DA Ú LATIN CAPITAL LETTER U WITH ACUTE
333 219 DB Û LATIN CAPITAL LETTER U WITH CIRCUMFLEX
334 220 DC Ü LATIN CAPITAL LETTER U WITH DIAERESIS
335 221 DD Ý LATIN CAPITAL LETTER Y WITH ACUTE
336 222 DE Þ LATIN CAPITAL LETTER THORN
337 223 DF ß LATIN SMALL LETTER SHARP S
340 224 E0 à LATIN SMALL LETTER A WITH GRAVE
341 225 E1 á LATIN SMALL LETTER A WITH ACUTE
342 226 E2 â LATIN SMALL LETTER A WITH CIRCUMFLEX
343 227 E3 ã LATIN SMALL LETTER A WITH TILDE
344 228 E4 ä LATIN SMALL LETTER A WITH DIAERESIS
345 229 E5 å LATIN SMALL LETTER A WITH RING ABOVE
346 230 E6 æ LATIN SMALL LETTER AE
347 231 E7 ç LATIN SMALL LETTER C WITH CEDILLA
350 232 E8 è LATIN SMALL LETTER E WITH GRAVE
351 233 E9 é LATIN SMALL LETTER E WITH ACUTE
352 234 EA ê LATIN SMALL LETTER E WITH CIRCUMFLEX
353 235 EB ë LATIN SMALL LETTER E WITH DIAERESIS
354 236 EC ì LATIN SMALL LETTER I WITH GRAVE
355 237 ED í LATIN SMALL LETTER I WITH ACUTE
356 238 EE î LATIN SMALL LETTER I WITH CIRCUMFLEX
357 239 EF ï LATIN SMALL LETTER I WITH DIAERESIS
360 240 F0 ð LATIN SMALL LETTER ETH
361 241 F1 ñ LATIN SMALL LETTER N WITH TILDE
362 242 F2 ò LATIN SMALL LETTER O WITH GRAVE
363 243 F3 ó LATIN SMALL LETTER O WITH ACUTE
364 244 F4 ô LATIN SMALL LETTER O WITH CIRCUMFLEX
365 245 F5 õ LATIN SMALL LETTER O WITH TILDE
366 246 F6 ö LATIN SMALL LETTER O WITH DIAERESIS
367 247 F7 ÷ DIVISION SIGN
370 248 F8 ø LATIN SMALL LETTER O WITH STROKE
371 249 F9 ù LATIN SMALL LETTER U WITH GRAVE
372 250 FA ú LATIN SMALL LETTER U WITH ACUTE
373 251 FB û LATIN SMALL LETTER U WITH CIRCUMFLEX
374 252 FC ü LATIN SMALL LETTER U WITH DIAERESIS
375 253 FD ý LATIN SMALL LETTER Y WITH ACUTE
376 254 FE þ LATIN SMALL LETTER THORN
377 255 FF ÿ LATIN SMALL LETTER Y WITH DIAERESIS
0 15 tst 0 0

23
result/isolat3.rdr Normal file
View File

@ -0,0 +1,23 @@
0 1 rec 0 0
1 14 #text 0 1
1 1 eg 0 0
2 4 #cdata-section 0 1 <!ENTITY % pub "&#xc9;ditions Gallimard" >
<!ENTITY rights "All rights reserved" >
<!ENTITY book "La Peste: Albert Camus,
&#xA9; 1947 %pub;. &rights;" >
1 15 eg 0 0
1 3 #text 0 1
then the replacement text for the entity "
1 1 code 0 0
2 3 #text 0 1 book
1 15 code 0 0
1 3 #text 0 1 " is:
1 1 eg 0 0
2 3 #text 0 1 La Peste: Albert Camus,
© 1947 Éditions Gallimard. &rights;
1 15 eg 0 0
1 14 #text 0 1
0 15 rec 0 0

7
result/ns.rdr Normal file
View File

@ -0,0 +1,7 @@
0 1 dia:diagram 0 0
1 14 #text 0 1
1 1 dia:diagramdata 1 0
1 14 #text 0 1
0 15 dia:diagram 0 0

1
result/ns2.rdr Normal file
View File

@ -0,0 +1 @@
0 1 dia:diagram 1 0

1
result/ns3.rdr Normal file
View File

@ -0,0 +1 @@
0 1 dia:diagram 1 0

1
result/ns4.rdr Normal file
View File

@ -0,0 +1 @@
0 1 diagram 1 0

55
result/p3p.rdr Normal file
View File

@ -0,0 +1,55 @@
0 1 RDF:RDF 0 0
1 14 #text 0 1
1 1 PROP 0 0
2 14 #text 0 1
2 1 USES 0 0
3 14 #text 0 1
3 1 STATEMENT 0 0
4 14 #text 0 1
4 1 WITH 0 0
5 1 PREFIX 0 0
6 14 #text 0 1
6 1 REF 1 0
6 14 #text 0 1
6 1 REF 1 0
6 14 #text 0 1
6 1 REF 1 0
6 14 #text 0 1
5 15 PREFIX 0 0
4 15 WITH 0 0
4 14 #text 0 1
3 15 STATEMENT 0 0
3 14 #text 0 1
2 15 USES 0 0
2 14 #text 0 1
2 1 USES 0 0
3 14 #text 0 1
3 1 STATEMENT 0 0
4 14 #text 0 1
4 1 REF 1 0
4 14 #text 0 1
3 15 STATEMENT 0 0
3 14 #text 0 1
2 15 USES 0 0
2 14 #text 0 1
2 1 DISCLOSURE 1 0
2 14 #text 0 1
1 15 PROP 0 0
0 15 RDF:RDF 0 0

13
result/pi.xml.rdr Normal file
View File

@ -0,0 +1,13 @@
0 1 doc 0 0
1 14 #text 0 1
1 7 document-start 0 1 doc
1 14 #text 0 1
1 1 empty 1 0
1 14 #text 0 1
1 7 document-end 0 1 doc
1 14 #text 0 1
0 15 doc 0 0

9
result/pi2.xml.rdr Normal file
View File

@ -0,0 +1,9 @@
0 7 document-start 0 1 doc
0 1 doc 0 0
1 14 #text 0 1
1 1 empty 1 0
1 14 #text 0 1
0 15 doc 0 0
0 7 document-end 0 1 doc

214
result/rdf1.rdr Normal file
View File

@ -0,0 +1,214 @@
0 1 RDF:RDF 0 0
1 14 #text 0 1
1 1 RDF:Description 0 0
2 14 #text 0 1
2 1 RPM:Name 0 0
3 3 #text 0 1 rpm
2 15 RPM:Name 0 0
2 14 #text 0 1
2 1 RPM:Version 0 0
3 3 #text 0 1 2.5
2 15 RPM:Version 0 0
2 14 #text 0 1
2 1 RPM:Release 0 0
3 3 #text 0 1 2
2 15 RPM:Release 0 0
2 14 #text 0 1
2 1 RPM:Arch 0 0
3 3 #text 0 1 i386
2 15 RPM:Arch 0 0
2 14 #text 0 1
2 1 RPM:Os 0 0
3 3 #text 0 1 Linux
2 15 RPM:Os 0 0
2 14 #text 0 1
2 1 RPM:Distribution 0 0
3 3 #text 0 1 Manhattan
2 15 RPM:Distribution 0 0
2 14 #text 0 1
2 1 RPM:Vendor 0 0
3 3 #text 0 1 Red Hat Software
2 15 RPM:Vendor 0 0
2 14 #text 0 1
2 1 RPM:Packager 0 0
3 3 #text 0 1 Red Hat Software <bugs@redhat.com>
2 15 RPM:Packager 0 0
2 14 #text 0 1
2 1 RPM:Group 0 0
3 3 #text 0 1 Utilities/System
2 15 RPM:Group 0 0
2 14 #text 0 1
2 1 RPM:Summary 0 0
3 3 #text 0 1 Red Hat Package Manager
2 15 RPM:Summary 0 0
2 14 #text 0 1
2 1 RPM:Description 0 0
3 3 #text 0 1 RPM is a powerful package manager, which can be used to build, install,
query, verify, update, and uninstall individual software packages. A
package consists of an archive of files, and package information, including
name, version, and description.
2 15 RPM:Description 0 0
2 14 #text 0 1
2 1 RPM:Copyright 0 0
3 3 #text 0 1 GPL
2 15 RPM:Copyright 0 0
2 14 #text 0 1
2 1 RPM:Changelog 0 0
3 3 #text 0 1 * Sun May 10 1998 Prospector System <bugs@redhat.com>
- translations modified for de, fr, tr
2 15 RPM:Changelog 0 0
2 14 #text 0 1
2 1 RPM:Sources 0 0
3 3 #text 0 1 rpm-2.5-2.src.rpm
2 15 RPM:Sources 0 0
2 14 #text 0 1
2 1 RPM:SourcesFtp 0 0
3 3 #text 0 1 ftp://ftp.redhat.com/pub/redhat/redhat-5.1/SRPMS
2 15 RPM:SourcesFtp 0 0
2 14 #text 0 1
2 1 RPM:BuildDate 0 0
3 3 #text 0 1 Sun May 10 14:52:32 1998
2 15 RPM:BuildDate 0 0
2 14 #text 0 1
2 1 RPM:Date 0 0
3 3 #text 0 1 894826352
2 15 RPM:Date 0 0
2 14 #text 0 1
2 1 RPM:Size 0 0
3 3 #text 0 1 850599
2 15 RPM:Size 0 0
2 14 #text 0 1
2 1 RPM:BuildHost 0 0
3 3 #text 0 1 porky.redhat.com
2 15 RPM:BuildHost 0 0
2 14 #text 0 1
2 1 RPM:Provides 0 0
3 14 #text 0 1
3 1 RDF:Bag 0 0
4 14 #text 0 1
4 1 RPM:Resource 0 0
5 3 #text 0 1 rpm
4 15 RPM:Resource 0 0
4 14 #text 0 1
3 15 RDF:Bag 0 0
3 14 #text 0 1
2 15 RPM:Provides 0 0
2 14 #text 0 1
2 1 RPM:Requires 0 0
3 14 #text 0 1
3 1 RDF:Bag 0 0
4 14 #text 0 1
4 1 RPM:Resource 0 0
5 3 #text 0 1 /bin/sh
4 15 RPM:Resource 0 0
4 14 #text 0 1
4 1 RPM:Resource 0 0
5 3 #text 0 1 ld-linux.so.2
4 15 RPM:Resource 0 0
4 14 #text 0 1
4 1 RPM:Resource 0 0
5 3 #text 0 1 libc.so.6
4 15 RPM:Resource 0 0
4 14 #text 0 1
4 1 RPM:Resource 0 0
5 3 #text 0 1 libdb.so.2
4 15 RPM:Resource 0 0
4 14 #text 0 1
4 1 RPM:Resource 0 0
5 3 #text 0 1 libz.so.1
4 15 RPM:Resource 0 0
4 14 #text 0 1
4 1 RPM:Resource 0 0
5 3 #text 0 1 /bin/bash
4 15 RPM:Resource 0 0
4 14 #text 0 1
4 1 RPM:Resource 0 0
5 3 #text 0 1 /bin/sh
4 15 RPM:Resource 0 0
4 14 #text 0 1
3 15 RDF:Bag 0 0
3 14 #text 0 1
2 15 RPM:Requires 0 0
2 14 #text 0 1
2 1 RPM:Files 0 0
3 3 #text 0 1 /bin/rpm
/usr/bin/find-provides
/usr/bin/find-requires
/usr/bin/gendiff
/usr/bin/rpm2cpio
/usr/doc/rpm-2.5
/usr/doc/rpm-2.5/CHANGES
/usr/doc/rpm-2.5/RPM-PGP-KEY
/usr/doc/rpm-2.5/buildroot
/usr/doc/rpm-2.5/dependencies
/usr/doc/rpm-2.5/format
/usr/doc/rpm-2.5/groups
/usr/doc/rpm-2.5/macros
/usr/doc/rpm-2.5/queryformat
/usr/doc/rpm-2.5/relocatable
/usr/doc/rpm-2.5/signatures
/usr/doc/rpm-2.5/spec
/usr/doc/rpm-2.5/triggers
/usr/lib/rpmpopt
/usr/lib/rpmrc
/usr/man/man8/rpm.8
/usr/man/man8/rpm2cpio.8
/usr/share/locale/de/LC_MESSAGES/rpm.mo
/usr/share/locale/fr/LC_MESSAGES/rpm.mo
/usr/share/locale/pt-br/LC_MESSAGES/rpm.mo
/usr/share/locale/sv/LC_MESSAGES/rpm.mo
/usr/share/locale/tr/LC_MESSAGES/rpm.mo
/usr/src/redhat
/usr/src/redhat/BUILD
/usr/src/redhat/RPMS
/usr/src/redhat/RPMS/i386
/usr/src/redhat/RPMS/noarch
/usr/src/redhat/SOURCES
/usr/src/redhat/SPECS
/usr/src/redhat/SRPMS
2 15 RPM:Files 0 0
2 14 #text 0 1
1 15 RDF:Description 0 0
1 14 #text 0 1
0 15 RDF:RDF 0 0

2008
result/rdf2.rdr Normal file

File diff suppressed because it is too large Load Diff

218
result/slashdot.rdf.rdr Normal file
View File

@ -0,0 +1,218 @@
0 1 rdf:RDF 0 0
1 14 #text 0 1
1 1 channel 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Slashdot:News for Nerds. Stuff that Matters.
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/
2 15 link 0 0
2 14 #text 0 1
2 1 description 0 0
3 3 #text 0 1 News for Nerds. Stuff that Matters
2 15 description 0 0
2 14 #text 0 1
1 15 channel 0 0
1 14 #text 0 1
1 1 image 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Slashdot
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/images/slashdotlg.gif
2 15 url 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org
2 15 link 0 0
2 14 #text 0 1
1 15 image 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 100 Mbit/s on Fibre to the home
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1440211.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Gimp 1.2 Preview
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1438246.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Sony's AIBO robot Sold Out
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1432256.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Ask Slashdot: Another Word for "Hacker"?
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/askslashdot/99/06/05/1815225.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Corel Linux FAQ
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/05/1842218.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Upside downsides MP3.COM.
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/05/1558210.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 2 Terabits of Bandwidth
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/05/1554258.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Suppression of cold fusion research?
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/04/2313200.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 California Gov. Halts Wage Info Sale
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/04/235256.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
1 1 item 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Red Hat Announces IPO
2 15 title 0 0
2 14 #text 0 1
2 1 link 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/04/0849207.shtml
2 15 link 0 0
2 14 #text 0 1
1 15 item 0 0
1 14 #text 0 1
0 15 rdf:RDF 0 0

514
result/slashdot.xml.rdr Normal file
View File

@ -0,0 +1,514 @@
0 1 ultramode 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 100 Mbit/s on Fibre to the home
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1440211.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-06 14:39:59
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 wouldn't-it-be-nice
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 internet
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 20
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicinternet.jpg
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Gimp 1.2 Preview
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1438246.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-06 14:38:40
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-read
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 gimp
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 12
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicgimp.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Sony's AIBO robot Sold Out
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1432256.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-06 14:32:51
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-see
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 tech
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 10
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topictech2.jpg
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Ask Slashdot: Another Word for "Hacker"?
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/askslashdot/99/06/05/1815225.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-05 20:00:00
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 Cliff
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 hacker-vs-cracker
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 news
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 385
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 askslashdot
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicnews.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Corel Linux FAQ
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/05/1842218.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-05 18:42:06
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-read
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 corel
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 164
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topiccorel.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Upside downsides MP3.COM.
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/05/1558210.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-05 15:56:45
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-think-about
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 music
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 48
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicmusic.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 2 Terabits of Bandwidth
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/05/1554258.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-05 15:53:43
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 faster-porn
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 internet
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 66
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicinternet.jpg
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Suppression of cold fusion research?
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/04/2313200.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-04 23:12:29
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 Hemos
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 possibly-probably
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 science
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 217
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicscience.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 California Gov. Halts Wage Info Sale
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/04/235256.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-04 23:05:34
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 Hemos
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 woo-hoo!
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 usa
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 16
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicus.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Red Hat Announces IPO
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/04/0849207.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-04 19:30:18
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 Justin
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 details-sketchy
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 redhat
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 155
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicredhat.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
0 15 ultramode 0 0

718
result/slashdot16.xml.rdr Normal file
View File

@ -0,0 +1,718 @@
0 1 ultramode 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 100 Mbit/s on Fibre to the home
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1440211.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-06 14:39:59
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 wouldn't-it-be-nice
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 internet
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 20
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicinternet.jpg
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Gimp 1.2 Preview
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1438246.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-06 14:38:40
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-read
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 gimp
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 12
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicgimp.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Sony's AIBO robot Sold Out
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1432256.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-06 14:32:51
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-see
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 tech
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 10
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topictech2.jpg
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Ask Slashdot: Another Word for "Hacker"?
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/askslashdot/99/06/05/1815225.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-05 20:00:00
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 Cliff
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 hacker-vs-cracker
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 news
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 385
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 askslashdot
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicnews.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 100 Mbit/s on Fibre to the home
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1440211.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-06 14:39:59
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 wouldn't-it-be-nice
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 internet
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 20
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicinternet.jpg
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Gimp 1.2 Preview
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1438246.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-06 14:38:40
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-read
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 gimp
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 12
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicgimp.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Sony's AIBO robot Sold Out
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/06/1432256.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-06 14:32:51
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-see
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 tech
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 10
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topictech2.jpg
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Ask Slashdot: Another Word for "Hacker"?
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/askslashdot/99/06/05/1815225.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-05 20:00:00
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 Cliff
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 hacker-vs-cracker
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 news
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 385
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 askslashdot
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicnews.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Corel Linux FAQ
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/05/1842218.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-05 18:42:06
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-read
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 corel
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 164
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topiccorel.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Upside downsides MP3.COM.
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/05/1558210.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-05 15:56:45
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 stuff-to-think-about
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 music
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 48
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicmusic.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 2 Terabits of Bandwidth
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/05/1554258.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-05 15:53:43
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 CmdrTaco
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 faster-porn
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 internet
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 66
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicinternet.jpg
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Suppression of cold fusion research?
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/04/2313200.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-04 23:12:29
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 Hemos
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 possibly-probably
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 science
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 217
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicscience.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 California Gov. Halts Wage Info Sale
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/04/235256.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-04 23:05:34
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 Hemos
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 woo-hoo!
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 usa
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 16
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicus.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
1 1 story 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Red Hat Announces IPO
2 15 title 0 0
2 14 #text 0 1
2 1 url 0 0
3 3 #text 0 1 http://slashdot.org/articles/99/06/04/0849207.shtml
2 15 url 0 0
2 14 #text 0 1
2 1 time 0 0
3 3 #text 0 1 1999-06-04 19:30:18
2 15 time 0 0
2 14 #text 0 1
2 1 author 0 0
3 3 #text 0 1 Justin
2 15 author 0 0
2 14 #text 0 1
2 1 department 0 0
3 3 #text 0 1 details-sketchy
2 15 department 0 0
2 14 #text 0 1
2 1 topic 0 0
3 3 #text 0 1 redhat
2 15 topic 0 0
2 14 #text 0 1
2 1 comments 0 0
3 3 #text 0 1 155
2 15 comments 0 0
2 14 #text 0 1
2 1 section 0 0
3 3 #text 0 1 articles
2 15 section 0 0
2 14 #text 0 1
2 1 image 0 0
3 3 #text 0 1 topicredhat.gif
2 15 image 0 0
2 14 #text 0 1
1 15 story 0 0
1 14 #text 0 1
0 15 ultramode 0 0

477
result/svg1.rdr Normal file
View File

@ -0,0 +1,477 @@
0 10 svg 0 0
0 1 svg 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
0 15 svg 0 0

178
result/svg2.rdr Normal file
View File

@ -0,0 +1,178 @@
0 10 svg 0 0
0 1 svg 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 path 1 0
2 14 #text 0 1
2 1 path 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 rect 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 ellipse 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 polyline 1 0
2 14 #text 0 1
2 1 g 0 0
3 14 #text 0 1
3 1 desc 0 0
4 3 #text 0 1 Java Font definition:Dialog 0
3 15 desc 0 0
3 14 #text 0 1
2 15 g 0 0
2 14 #text 0 1
2 1 g 0 0
3 14 #text 0 1
3 1 desc 0 0
4 3 #text 0 1 Java Font definition:Helvetica 0
3 15 desc 0 0
3 14 #text 0 1
2 15 g 0 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 text 0 0
3 3 #text 0 1 this is text
2 15 text 0 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 g 0 0
3 14 #text 0 1
3 1 desc 0 0
4 3 #text 0 1 Java Font definition:Dialog 0
3 15 desc 0 0
3 14 #text 0 1
2 15 g 0 0
2 14 #text 0 1
2 1 g 0 0
3 14 #text 0 1
3 1 desc 0 0
4 3 #text 0 1 Java Font definition:Helvetica 700
3 15 desc 0 0
3 14 #text 0 1
2 15 g 0 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 text 0 0
3 3 #text 0 1 sadfsadfsad
2 15 text 0 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 ellipse 1 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
1 15 g 0 0
1 14 #text 0 1
1 1 g 0 0
2 14 #text 0 1
2 1 g 0 0
3 14 #text 0 1
3 1 desc 0 0
4 3 #text 0 1 Java Font definition:Dialog 700
3 15 desc 0 0
3 14 #text 0 1
2 15 g 0 0
2 14 #text 0 1
2 1 g 0 0
3 14 #text 0 1
3 1 desc 0 0
4 3 #text 0 1 Java Font definition:Dialog 700
3 15 desc 0 0
3 14 #text 0 1
2 15 g 0 0
2 14 #text 0 1
1 15 g 0 0
0 15 svg 0 0

2164
result/svg3.rdr Normal file

File diff suppressed because it is too large Load Diff

3
result/title.xml.rdr Normal file
View File

@ -0,0 +1,3 @@
0 1 title 0 0
1 3 #text 0 1 my title
0 15 title 0 0

3
result/tstblanks.xml.rdr Normal file
View File

@ -0,0 +1,3 @@
0 1 a 0 0
1 3 #text 0 1 content
0 15 a 0 0

3
result/utf16bom.xml.rdr Normal file
View File

@ -0,0 +1,3 @@
0 1 repository 0 0
1 1 namespace 1 0
0 15 repository 0 0

1
result/utf8bom.xml.rdr Normal file
View File

@ -0,0 +1 @@
0 1 foo 1 0

70
result/wap.xml.rdr Normal file
View File

@ -0,0 +1,70 @@
0 10 wml 0 0
0 8 #comment 0 1 (C) 1999, 2000 WAP Forum Ltd. All rights reserved
0 1 wml 0 0
1 14 #text 0 1
1 1 card 0 0
2 14 #text 0 1
2 1 onevent 0 0
3 14 #text 0 1
3 1 go 0 0
4 14 #text 0 1
4 1 postfield 1 0
4 14 #text 0 1
4 1 postfield 1 0
4 14 #text 0 1
4 1 postfield 1 0
4 14 #text 0 1
4 1 postfield 1 0
4 14 #text 0 1
4 1 postfield 1 0
4 14 #text 0 1
4 1 postfield 1 0
4 14 #text 0 1
3 15 go 0 0
3 14 #text 0 1
2 15 onevent 0 0
2 14 #text 0 1
2 1 p 0 0
3 3 #text 0 1 If automatic testing failed, select
3 1 anchor 0 0
4 3 #text 0 1 Failed
4 1 go 0 0
5 14 #text 0 1
5 1 postfield 1 0
5 1 postfield 1 0
5 14 #text 0 1
5 1 postfield 1 0
5 14 #text 0 1
5 1 postfield 1 0
5 14 #text 0 1
5 1 postfield 1 0
5 14 #text 0 1
5 1 postfield 1 0
4 15 go 0 0
3 15 anchor 0 0
3 3 #text 0 1 .
2 15 p 0 0
2 14 #text 0 1
1 15 card 0 0
1 14 #text 0 1
0 15 wml 0 0

24
result/wml.xml.rdr Normal file
View File

@ -0,0 +1,24 @@
0 10 wml 0 0
0 1 wml 0 0
1 14 #text 0 1
1 1 card 0 0
2 14 #text 0 1
2 1 p 0 0
3 14 #text 0 1
3 1 a 0 0
4 3 #text 0 1 Cinéma
3 15 a 0 0
3 1 br 1 0
3 14 #text 0 1
2 15 p 0 0
2 14 #text 0 1
1 15 card 0 0
1 14 #text 0 1
0 15 wml 0 0

95
result/xhtml1.rdr Normal file
View File

@ -0,0 +1,95 @@
0 10 html 0 0
0 8 #comment 0 1 3.1.1 3/
0 1 html 0 0
1 14 #text 0 1
1 1 head 0 0
2 14 #text 0 1
2 1 title 0 0
3 3 #text 0 1 Virtual Library
2 15 title 0 0
2 14 #text 0 1
1 15 head 0 0
1 14 #text 0 1
1 8 #comment 0 1 4.8
1 14 #text 0 1
1 1 script 0 0
2 3 #text 0 1
... unescaped script content ...
1 15 script 0 0
1 14 #text 0 1
1 1 body 0 0
2 14 #text 0 1
2 1 p 0 0
3 3 #text 0 1 Moved to
3 1 a 0 0
4 3 #text 0 1 example.org
3 15 a 0 0
3 3 #text 0 1 .
2 15 p 0 0
2 14 #text 0 1
1 15 body 0 0
1 14 #text 0 1
1 8 #comment 0 1 C2
1 14 #text 0 1
1 1 img 1 0
1 14 #text 0 1
1 8 #comment 0 1 C3
1 14 #text 0 1
1 1 p 1 0
1 14 #text 0 1
1 8 #comment 0 1 C7
1 14 #text 0 1
1 1 p 0 0
2 3 #text 0 1 coucou
1 15 p 0 0
1 14 #text 0 1
1 1 p 0 0
2 3 #text 0 1 salut
1 15 p 0 0
1 14 #text 0 1
1 8 #comment 0 1 C8
1 14 #text 0 1
1 1 p 0 0
2 3 #text 0 1 test
1 15 p 0 0
1 14 #text 0 1
1 8 #comment 0 1 4.5
1 14 #text 0 1
1 1 dl 0 0
2 14 #text 0 1
2 1 dt 0 0
3 3 #text 0 1 Internet Engineering Task Force
2 15 dt 0 0
2 14 #text 0 1
2 1 dd 0 0
3 3 #text 0 1 An organization which establishes technical standards for the Internet
2 15 dd 0 0
2 14 #text 0 1
1 15 dl 0 0
1 14 #text 0 1
0 15 html 0 0

4
result/xml1.rdr Normal file
View File

@ -0,0 +1,4 @@
0 10 test 0 0
0 1 test 0 0
1 5 example 0 0
0 15 test 0 0

6
result/xml2.rdr Normal file
View File

@ -0,0 +1,6 @@
0 10 test 0 0
0 1 test 0 0
1 3 #text 0 1 This sample shows a
1 5 tricky 0 0
1 3 #text 0 1 method.
0 15 test 0 0