mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-27 18:50:07 +03:00
fixed a serious problem when substituing entities using the Reader, the
* parser.c xmlreader.c include/libxml/parser.h: fixed a serious problem when substituing entities using the Reader, the entities content might be freed and if rereferenced would crash * Makefile.am test/* result/*: added a new test case and a new test operation for the reader with substitution of entities. Daniel
This commit is contained in:
parent
1b243b4fc9
commit
0df3bc3f28
@ -1,3 +1,11 @@
|
||||
Tue Jun 8 14:01:14 CEST 2004 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* parser.c xmlreader.c include/libxml/parser.h: fixed a serious
|
||||
problem when substituing entities using the Reader, the entities
|
||||
content might be freed and if rereferenced would crash
|
||||
* Makefile.am test/* result/*: added a new test case and a new
|
||||
test operation for the reader with substitution of entities.
|
||||
|
||||
Tue Jun 8 12:14:16 CEST 2004 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* globals.c xmlIO.c include/libxml/globals.h include/libxml/xmlIO.h:
|
||||
|
16
Makefile.am
16
Makefile.am
@ -642,6 +642,22 @@ Readertests : xmllint$(EXEEXT)
|
||||
if [ -n "$$log" ] ; then echo $$name result ; echo $$log ; fi ; \
|
||||
rm result.$$name ; \
|
||||
fi ; fi ; done)
|
||||
@echo "## Reader entities substitution regression tests"
|
||||
-@(for i in $(srcdir)/test/* ; do \
|
||||
name=`basename $$i`; \
|
||||
if [ ! -d $$i ] ; then \
|
||||
if [ ! -f $(srcdir)/result/$$name.rde ] ; then \
|
||||
echo New test file $$name ; \
|
||||
$(CHECKER) $(top_builddir)/xmllint --noent --nonet --debug --stream $$i > $(srcdir)/result/$$name.rde 2>/dev/null ; \
|
||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
|
||||
else \
|
||||
log=`$(CHECKER) $(top_builddir)/xmllint --noent --nonet --debug --stream $$i > result.$$name 2>/dev/null ; \
|
||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
|
||||
diff $(srcdir)/result/$$name.rde result.$$name` ; \
|
||||
if [ -n "$$log" ] ; then echo $$name result ; echo $$log ; fi ; \
|
||||
rm result.$$name ; \
|
||||
fi ; fi ; done)
|
||||
|
||||
SAXtests : testSAX$(EXEEXT)
|
||||
@(echo > .memdump)
|
||||
@echo "## SAX callbacks regression tests"
|
||||
|
@ -155,6 +155,20 @@ typedef enum {
|
||||
*/
|
||||
#define XML_SKIP_IDS 8
|
||||
|
||||
/**
|
||||
* xmlParserMode:
|
||||
*
|
||||
* A parser can operate in various modes
|
||||
*/
|
||||
typedef enum {
|
||||
XML_PARSE_UNKNOWN = 0,
|
||||
XML_PARSE_DOM = 1,
|
||||
XML_PARSE_SAX = 2,
|
||||
XML_PARSE_PUSH_DOM = 3,
|
||||
XML_PARSE_PUSH_SAX = 4,
|
||||
XML_PARSE_READER = 5
|
||||
} xmlParserMode;
|
||||
|
||||
/**
|
||||
* xmlParserCtxt:
|
||||
*
|
||||
@ -240,7 +254,7 @@ struct _xmlParserCtxt {
|
||||
|
||||
int loadsubset; /* should the external subset be loaded */
|
||||
int linenumbers; /* set line number in element content */
|
||||
void *catalogs; /* document's own catalog */
|
||||
void *catalogs; /* document's own catalog */
|
||||
int recovery; /* run in recovery mode */
|
||||
int progressive; /* is this a progressive parsing */
|
||||
xmlDictPtr dict; /* dictionnary for the parser */
|
||||
@ -282,6 +296,7 @@ struct _xmlParserCtxt {
|
||||
* the complete error informations for the last error.
|
||||
*/
|
||||
xmlError lastError;
|
||||
xmlParserMode parseMode; /* the parser mode */
|
||||
};
|
||||
|
||||
/**
|
||||
|
39
parser.c
39
parser.c
@ -5514,8 +5514,9 @@ xmlParseReference(xmlParserCtxtPtr ctxt) {
|
||||
* Prune it directly in the generated document
|
||||
* except for single text nodes.
|
||||
*/
|
||||
if ((list->type == XML_TEXT_NODE) &&
|
||||
(list->next == NULL)) {
|
||||
if (((list->type == XML_TEXT_NODE) &&
|
||||
(list->next == NULL)) ||
|
||||
(ctxt->parseMode == XML_PARSE_READER)) {
|
||||
list->parent = (xmlNodePtr) ent;
|
||||
list = NULL;
|
||||
ent->owner = 1;
|
||||
@ -5568,10 +5569,21 @@ xmlParseReference(xmlParserCtxtPtr ctxt) {
|
||||
/*
|
||||
* Seems we are generating the DOM content, do
|
||||
* a simple tree copy for all references except the first
|
||||
* In the first occurrence list contains the replacement
|
||||
* In the first occurrence list contains the replacement.
|
||||
* progressive == 2 means we are operating on the Reader
|
||||
* and since nodes are discarded we must copy all the time.
|
||||
*/
|
||||
if ((list == NULL) && (ent->owner == 0)) {
|
||||
if (((list == NULL) && (ent->owner == 0)) ||
|
||||
(ctxt->parseMode == XML_PARSE_READER)) {
|
||||
xmlNodePtr nw = NULL, cur, firstChild = NULL;
|
||||
|
||||
/*
|
||||
* when operating on a reader, the entities definitions
|
||||
* are always owning the entities subtree.
|
||||
if (ctxt->parseMode == XML_PARSE_READER)
|
||||
ent->owner = 1;
|
||||
*/
|
||||
|
||||
cur = ent->children;
|
||||
while (cur != NULL) {
|
||||
nw = xmlCopyNode(cur, 1);
|
||||
@ -5580,10 +5592,20 @@ xmlParseReference(xmlParserCtxtPtr ctxt) {
|
||||
if (firstChild == NULL){
|
||||
firstChild = nw;
|
||||
}
|
||||
xmlAddChild(ctxt->node, nw);
|
||||
nw = xmlAddChild(ctxt->node, nw);
|
||||
}
|
||||
if (cur == ent->last)
|
||||
if (cur == ent->last) {
|
||||
/*
|
||||
* needed to detect some strange empty
|
||||
* node cases in the reader tests
|
||||
*/
|
||||
if ((ctxt->parseMode == XML_PARSE_READER) &&
|
||||
(nw->type == XML_ELEMENT_NODE) &&
|
||||
(nw->children == NULL))
|
||||
nw->extra = 1;
|
||||
|
||||
break;
|
||||
}
|
||||
cur = cur->next;
|
||||
}
|
||||
#ifdef LIBXML_LEGACY_ENABLED
|
||||
@ -8790,7 +8812,7 @@ xmlParseGetLasts(xmlParserCtxtPtr ctxt, const xmlChar **lastlt,
|
||||
"Internal error: xmlParseGetLasts\n");
|
||||
return;
|
||||
}
|
||||
if ((ctxt->progressive == 1) && (ctxt->inputNr == 1)) {
|
||||
if ((ctxt->progressive != 0) && (ctxt->inputNr == 1)) {
|
||||
tmp = ctxt->input->end;
|
||||
tmp--;
|
||||
while ((tmp >= ctxt->input->base) && (*tmp != '<') &&
|
||||
@ -9437,7 +9459,8 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
||||
goto done;
|
||||
} else {
|
||||
ctxt->instate = XML_PARSER_START_TAG;
|
||||
ctxt->progressive = 1;
|
||||
if (ctxt->progressive == 0)
|
||||
ctxt->progressive = 1;
|
||||
xmlParseGetLasts(ctxt, &lastlt, &lastgt);
|
||||
#ifdef DEBUG_PUSH
|
||||
xmlGenericError(xmlGenericErrorContext,
|
||||
|
1
result/att1.rde
Normal file
1
result/att1.rde
Normal file
@ -0,0 +1 @@
|
||||
0 1 doc 1 0
|
1
result/att2.rde
Normal file
1
result/att2.rde
Normal file
@ -0,0 +1 @@
|
||||
0 1 doc 1 0
|
3
result/att3.rde
Normal file
3
result/att3.rde
Normal 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.rde
Normal file
27785
result/att4.rde
Normal file
File diff suppressed because it is too large
Load Diff
109
result/att5.rde
Normal file
109
result/att5.rde
Normal 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
|
15
result/att6.rde
Normal file
15
result/att6.rde
Normal file
@ -0,0 +1,15 @@
|
||||
0 1 Invoice 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 cat:ReferencedOrder 0 0
|
||||
2 14 #text 0 1
|
||||
|
||||
2 1 cat:SellersOrderID 0 0
|
||||
3 3 #text 0 1 pvalue->ReferencedOrder.SellersOrderID
|
||||
2 15 cat:SellersOrderID 0 0
|
||||
2 14 #text 0 1
|
||||
|
||||
1 15 cat:ReferencedOrder 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
0 15 Invoice 0 0
|
12
result/att7.rde
Normal file
12
result/att7.rde
Normal file
@ -0,0 +1,12 @@
|
||||
0 10 x 0 0
|
||||
0 1 x 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 test 1 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 test 0 0
|
||||
1 15 test 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
0 15 x 0 0
|
22
result/att8.rde
Normal file
22
result/att8.rde
Normal file
@ -0,0 +1,22 @@
|
||||
0 1 ino:response 0 0
|
||||
1 1 xql:query 0 0
|
||||
2 3 #text 0 1 /bsk:DocPart[@docId='20040308152601345236' and @docPartNo=1]
|
||||
1 15 xql:query 0 0
|
||||
1 1 ino:message 0 0
|
||||
2 1 ino:messageline 0 0
|
||||
3 3 #text 0 1 XQL Request processing
|
||||
2 15 ino:messageline 0 0
|
||||
1 15 ino:message 0 0
|
||||
1 1 xql:result 0 0
|
||||
2 1 bsk:DocPart 0 0
|
||||
3 1 bsk:File 0 0
|
||||
4 14 #text 0 1
|
||||
3 15 bsk:File 0 0
|
||||
2 15 bsk:DocPart 0 0
|
||||
1 15 xql:result 0 0
|
||||
1 1 ino:message 0 0
|
||||
2 1 ino:messageline 0 0
|
||||
3 3 #text 0 1 XQL Request processed
|
||||
2 15 ino:messageline 0 0
|
||||
1 15 ino:message 0 0
|
||||
0 15 ino:response 0 0
|
1
result/attrib.xml.rde
Normal file
1
result/attrib.xml.rde
Normal file
@ -0,0 +1 @@
|
||||
0 1 item 1 0
|
4
result/bigentname.xml.rde
Normal file
4
result/bigentname.xml.rde
Normal file
@ -0,0 +1,4 @@
|
||||
0 10 doc 0 0
|
||||
0 1 doc 0 0
|
||||
1 3 #text 0 1 He said "Yes"
|
||||
0 15 doc 0 0
|
1
result/bigname.xml.rde
Normal file
1
result/bigname.xml.rde
Normal file
File diff suppressed because one or more lines are too long
1
result/bigname2.xml.rde
Normal file
1
result/bigname2.xml.rde
Normal file
File diff suppressed because one or more lines are too long
7
result/cdata.rde
Normal file
7
result/cdata.rde
Normal 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/cdata2.rde
Normal file
13
result/cdata2.rde
Normal file
@ -0,0 +1,13 @@
|
||||
0 1 collection 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 test 0 0
|
||||
2 4 #cdata-section 0 1
|
||||
<![CDATA[abc]
|
||||
2 3 #text 0 1 ]>
|
||||
2 4 #cdata-section 0 1
|
||||
|
||||
1 15 test 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
0 15 collection 0 0
|
13
result/comment.xml.rde
Normal file
13
result/comment.xml.rde
Normal 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.rde
Normal file
9
result/comment2.xml.rde
Normal 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.rde
Normal file
78
result/dav1.rde
Normal 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.rde
Normal file
9
result/dav10.rde
Normal 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.rde
Normal file
60
result/dav11.rde
Normal 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.rde
Normal file
3
result/dav12.rde
Normal 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.rde
Normal file
45
result/dav13.rde
Normal 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.rde
Normal file
73
result/dav15.rde
Normal 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.rde
Normal file
13
result/dav16.rde
Normal 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.rde
Normal file
75
result/dav17.rde
Normal 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.rde
Normal file
13
result/dav18.rde
Normal 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.rde
Normal file
59
result/dav19.rde
Normal 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.rde
Normal file
81
result/dav2.rde
Normal 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.rde
Normal file
57
result/dav3.rde
Normal 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.rde
Normal file
47
result/dav4.rde
Normal 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.rde
Normal file
50
result/dav5.rde
Normal 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.rde
Normal file
63
result/dav6.rde
Normal 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.rde
Normal file
57
result/dav7.rde
Normal 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.rde
Normal file
51
result/dav8.rde
Normal 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.rde
Normal file
67
result/dav9.rde
Normal 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.rde
Normal file
2
result/defattr.xml.rde
Normal file
@ -0,0 +1,2 @@
|
||||
0 10 doc 0 0
|
||||
0 1 doc 1 0
|
2
result/defattr2.xml.rde
Normal file
2
result/defattr2.xml.rde
Normal file
@ -0,0 +1,2 @@
|
||||
0 10 doc 0 0
|
||||
0 1 doc 1 0
|
292
result/dia1.rde
Normal file
292
result/dia1.rde
Normal 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.rde
Normal file
292
result/dia2.rde
Normal 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.rde
Normal file
5
result/dtd1.rde
Normal 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.rde
Normal file
12
result/dtd10.rde
Normal 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
|
2
result/dtd11.rde
Normal file
2
result/dtd11.rde
Normal file
@ -0,0 +1,2 @@
|
||||
0 10 doc 0 0
|
||||
0 1 doc 1 0
|
4
result/dtd12.rde
Normal file
4
result/dtd12.rde
Normal file
@ -0,0 +1,4 @@
|
||||
0 10 doc 0 0
|
||||
0 1 doc 0 0
|
||||
1 3 #text 0 1 He said "Yes"
|
||||
0 15 doc 0 0
|
4
result/dtd13.rde
Normal file
4
result/dtd13.rde
Normal 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.rde
Normal file
4
result/dtd2.rde
Normal 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.rde
Normal file
4
result/dtd3.rde
Normal 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.rde
Normal file
2
result/dtd4.rde
Normal file
@ -0,0 +1,2 @@
|
||||
0 10 doc 0 0
|
||||
0 1 doc 1 0
|
11
result/dtd5.rde
Normal file
11
result/dtd5.rde
Normal 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.rde
Normal file
12
result/dtd6.rde
Normal 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.rde
Normal file
9
result/dtd7.rde
Normal 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.rde
Normal file
9
result/dtd8.rde
Normal 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.rde
Normal file
9
result/dtd9.rde
Normal 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
|
6
result/ent1.rde
Normal file
6
result/ent1.rde
Normal file
@ -0,0 +1,6 @@
|
||||
0 10 EXAMPLE 0 0
|
||||
0 1 EXAMPLE 0 0
|
||||
1 3 #text 0 1
|
||||
Extensible Markup Language
|
||||
|
||||
0 15 EXAMPLE 0 0
|
15
result/ent2.rde
Normal file
15
result/ent2.rde
Normal file
@ -0,0 +1,15 @@
|
||||
0 10 EXAMPLE 0 0
|
||||
0 1 EXAMPLE 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
|
||||
1 1 title 0 0
|
||||
2 3 #text 0 1 my title
|
||||
1 15 title 0 0
|
||||
1 3 #text 0 1
|
||||
|
||||
This text is about XML, the Extensible Markup Language and this is an embedded
|
||||
1 1 IMG 1 0
|
||||
1 14 #text 0 1
|
||||
|
||||
0 15 EXAMPLE 0 0
|
6
result/ent3.rde
Normal file
6
result/ent3.rde
Normal 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.rde
Normal file
6
result/ent4.rde
Normal file
@ -0,0 +1,6 @@
|
||||
0 10 EXAMPLE 0 0
|
||||
0 1 EXAMPLE 0 0
|
||||
1 3 #text 0 1
|
||||
Test of & behaviour a&b .
|
||||
|
||||
0 15 EXAMPLE 0 0
|
6
result/ent5.rde
Normal file
6
result/ent5.rde
Normal 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
|
2
result/ent6.rde
Normal file
2
result/ent6.rde
Normal file
@ -0,0 +1,2 @@
|
||||
0 10 doc 0 0
|
||||
0 1 doc 1 0
|
6
result/ent7.rde
Normal file
6
result/ent7.rde
Normal file
@ -0,0 +1,6 @@
|
||||
0 10 item 0 0
|
||||
0 1 item 0 0
|
||||
1 1 para 0 0
|
||||
2 3 #text 0 1 'they called me the hyacinth girl'
|
||||
1 15 para 0 0
|
||||
0 15 item 0 0
|
20
result/ent8.rde
Normal file
20
result/ent8.rde
Normal file
@ -0,0 +1,20 @@
|
||||
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 3 #text 0 1 test 1test 2
|
||||
1 15 Content 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
0 15 doc 0 0
|
61
result/ent9
Normal file
61
result/ent9
Normal file
@ -0,0 +1,61 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE doc [
|
||||
<!ENTITY test1 "<a/>,<b/>,<c/>,<d/>">
|
||||
]>
|
||||
<doc>
|
||||
<ent>&test1;</ent>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<ent>&test1;</ent>
|
||||
</doc>
|
300
result/ent9.rde
Normal file
300
result/ent9.rde
Normal file
@ -0,0 +1,300 @@
|
||||
0 10 doc 0 0
|
||||
0 1 doc 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 ent 0 0
|
||||
2 1 a 0 0
|
||||
2 15 a 0 0
|
||||
2 3 #text 0 1 ,
|
||||
2 1 b 0 0
|
||||
2 15 b 0 0
|
||||
2 3 #text 0 1 ,
|
||||
2 1 c 0 0
|
||||
2 15 c 0 0
|
||||
2 3 #text 0 1 ,
|
||||
2 1 d 0 0
|
||||
2 15 d 0 0
|
||||
1 15 ent 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 ent 0 0
|
||||
2 1 a 0 0
|
||||
2 15 a 0 0
|
||||
2 3 #text 0 1 ,
|
||||
2 1 b 0 0
|
||||
2 15 b 0 0
|
||||
2 3 #text 0 1 ,
|
||||
2 1 c 0 0
|
||||
2 15 c 0 0
|
||||
2 3 #text 0 1 ,
|
||||
2 1 d 0 0
|
||||
2 15 d 0 0
|
||||
1 15 ent 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
0 15 doc 0 0
|
280
result/ent9.rdr
Normal file
280
result/ent9.rdr
Normal file
@ -0,0 +1,280 @@
|
||||
0 10 doc 0 0
|
||||
0 1 doc 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 ent 0 0
|
||||
2 5 test1 0 0
|
||||
1 15 ent 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 WE need lot of garbage now to trigger the problem
|
||||
1 15 p 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 ent 0 0
|
||||
2 5 test1 0 0
|
||||
1 15 ent 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
0 15 doc 0 0
|
310
result/ent9.sax
Normal file
310
result/ent9.sax
Normal file
@ -0,0 +1,310 @@
|
||||
SAX.setDocumentLocator()
|
||||
SAX.startDocument()
|
||||
SAX.internalSubset(doc, , )
|
||||
SAX.entityDecl(test1, 1, (null), (null), <a/>,<b/>,<c/>,<d/>)
|
||||
SAX.getEntity(test1)
|
||||
SAX.externalSubset(doc, , )
|
||||
SAX.startElement(doc)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(ent)
|
||||
SAX.getEntity(test1)
|
||||
SAX.startElement(a)
|
||||
SAX.endElement(a)
|
||||
SAX.characters(,, 1)
|
||||
SAX.startElement(b)
|
||||
SAX.endElement(b)
|
||||
SAX.characters(,, 1)
|
||||
SAX.startElement(c)
|
||||
SAX.endElement(c)
|
||||
SAX.characters(,, 1)
|
||||
SAX.startElement(d)
|
||||
SAX.endElement(d)
|
||||
SAX.reference(test1)
|
||||
SAX.endElement(ent)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(p)
|
||||
SAX.characters( WE need lot of garbage now to, 50)
|
||||
SAX.endElement(p)
|
||||
SAX.characters(
|
||||
, 4)
|
||||
SAX.startElement(ent)
|
||||
SAX.getEntity(test1)
|
||||
SAX.startElement(a)
|
||||
SAX.endElement(a)
|
||||
SAX.characters(,, 1)
|
||||
SAX.startElement(b)
|
||||
SAX.endElement(b)
|
||||
SAX.characters(,, 1)
|
||||
SAX.startElement(c)
|
||||
SAX.endElement(c)
|
||||
SAX.characters(,, 1)
|
||||
SAX.startElement(d)
|
||||
SAX.endElement(d)
|
||||
SAX.reference(test1)
|
||||
SAX.endElement(ent)
|
||||
SAX.characters(
|
||||
, 1)
|
||||
SAX.endElement(doc)
|
||||
SAX.endDocument()
|
5
result/eve.xml.rde
Normal file
5
result/eve.xml.rde
Normal 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
|
2
result/intsubset.xml.rde
Normal file
2
result/intsubset.xml.rde
Normal file
@ -0,0 +1,2 @@
|
||||
0 10 root 0 0
|
||||
0 1 root 1 0
|
3
result/isolat1.rde
Normal file
3
result/isolat1.rde
Normal 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.rde
Normal file
108
result/isolat2.rde
Normal 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.rde
Normal file
23
result/isolat3.rde
Normal 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 "Éditions Gallimard" >
|
||||
<!ENTITY rights "All rights reserved" >
|
||||
<!ENTITY book "La Peste: Albert Camus,
|
||||
© 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
|
61
result/noent/ent9
Normal file
61
result/noent/ent9
Normal file
@ -0,0 +1,61 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE doc [
|
||||
<!ENTITY test1 "<a/>,<b/>,<c/>,<d/>">
|
||||
]>
|
||||
<doc>
|
||||
<ent><a/>,<b/>,<c/>,<d/></ent>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<p> WE need lot of garbage now to trigger the problem</p>
|
||||
<ent><a/>,<b/>,<c/>,<d/></ent>
|
||||
</doc>
|
7
result/ns.rde
Normal file
7
result/ns.rde
Normal 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.rde
Normal file
1
result/ns2.rde
Normal file
@ -0,0 +1 @@
|
||||
0 1 dia:diagram 1 0
|
1
result/ns3.rde
Normal file
1
result/ns3.rde
Normal file
@ -0,0 +1 @@
|
||||
0 1 dia:diagram 1 0
|
1
result/ns4.rde
Normal file
1
result/ns4.rde
Normal file
@ -0,0 +1 @@
|
||||
0 1 diagram 1 0
|
55
result/p3p.rde
Normal file
55
result/p3p.rde
Normal 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.rde
Normal file
13
result/pi.xml.rde
Normal 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.rde
Normal file
9
result/pi2.xml.rde
Normal 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.rde
Normal file
214
result/rdf1.rde
Normal 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.rde
Normal file
2008
result/rdf2.rde
Normal file
File diff suppressed because it is too large
Load Diff
218
result/slashdot.rdf.rde
Normal file
218
result/slashdot.rdf.rde
Normal 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.rde
Normal file
514
result/slashdot.xml.rde
Normal 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.rde
Normal file
718
result/slashdot16.xml.rde
Normal 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.rde
Normal file
477
result/svg1.rde
Normal 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.rde
Normal file
178
result/svg2.rde
Normal 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.rde
Normal file
2164
result/svg3.rde
Normal file
File diff suppressed because it is too large
Load Diff
3
result/title.xml.rde
Normal file
3
result/title.xml.rde
Normal 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.rde
Normal file
3
result/tstblanks.xml.rde
Normal file
@ -0,0 +1,3 @@
|
||||
0 1 a 0 0
|
||||
1 3 #text 0 1 content
|
||||
0 15 a 0 0
|
4
result/utf16bebom.xml.rde
Normal file
4
result/utf16bebom.xml.rde
Normal file
@ -0,0 +1,4 @@
|
||||
0 8 #comment 0 1 This file is encoded in UTF-16BE
|
||||
0 1 repository 0 0
|
||||
1 1 namespace 1 0
|
||||
0 15 repository 0 0
|
3
result/utf16bom.xml.rde
Normal file
3
result/utf16bom.xml.rde
Normal file
@ -0,0 +1,3 @@
|
||||
0 1 repository 0 0
|
||||
1 1 namespace 1 0
|
||||
0 15 repository 0 0
|
4
result/utf16lebom.xml.rde
Normal file
4
result/utf16lebom.xml.rde
Normal file
@ -0,0 +1,4 @@
|
||||
0 8 #comment 0 1 This file is encoded in UTF-16LE
|
||||
0 1 repository 0 0
|
||||
1 1 namespace 1 0
|
||||
0 15 repository 0 0
|
1
result/utf8bom.xml.rde
Normal file
1
result/utf8bom.xml.rde
Normal file
@ -0,0 +1 @@
|
||||
0 1 foo 1 0
|
70
result/wap.xml.rde
Normal file
70
result/wap.xml.rde
Normal 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.rde
Normal file
24
result/wml.xml.rde
Normal 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.rde
Normal file
95
result/xhtml1.rde
Normal 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
|
19
result/xhtmlcomp.rde
Normal file
19
result/xhtmlcomp.rde
Normal file
@ -0,0 +1,19 @@
|
||||
0 10 html 0 0
|
||||
0 1 html 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
1 1 body 0 0
|
||||
2 14 #text 0 1
|
||||
|
||||
2 1 h1 0 0
|
||||
3 1 abbr 0 0
|
||||
4 3 #text 0 1 a
|
||||
3 15 abbr 0 0
|
||||
3 3 #text 0 1 b
|
||||
2 15 h1 0 0
|
||||
2 14 #text 0 1
|
||||
|
||||
1 15 body 0 0
|
||||
1 14 #text 0 1
|
||||
|
||||
0 15 html 0 0
|
8
result/xml1.rde
Normal file
8
result/xml1.rde
Normal file
@ -0,0 +1,8 @@
|
||||
0 10 test 0 0
|
||||
0 1 test 0 0
|
||||
1 1 p 0 0
|
||||
2 3 #text 0 1 An ampersand (&) may be escaped
|
||||
numerically (&) or with a general entity
|
||||
(&).
|
||||
1 15 p 0 0
|
||||
0 15 test 0 0
|
4
result/xml2.rde
Normal file
4
result/xml2.rde
Normal file
@ -0,0 +1,4 @@
|
||||
0 10 test 0 0
|
||||
0 1 test 0 0
|
||||
1 3 #text 0 1 This sample shows a error-prone method.
|
||||
0 15 test 0 0
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user