mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
implemented bugfix from Massimo Morara for DTD dumping problem. added
* valid.c: implemented bugfix from Massimo Morara for DTD dumping problem. * test/valid/t10.xml, result/valid/t10.*: added regression for above * configure.in: small change for my profile settings
This commit is contained in:
parent
b7fe104779
commit
4119d1c61d
@ -1,3 +1,11 @@
|
||||
Thu Jun 24 10:17:31 HKT 2004 William Brack <wbrack@mmm.com.hk>
|
||||
|
||||
* valid.c: implemented bugfix from Massimo Morara for DTD
|
||||
dumping problem.
|
||||
* test/valid/t10.xml, result/valid/t10.*: added regression
|
||||
for above
|
||||
* configure.in: small change for my profile settings
|
||||
|
||||
Wed Jun 23 20:18:19 MDT 2004 John Fleck <jfleck@inkstain.net>
|
||||
|
||||
* doc/xmlcatalog_man.xml, xmlcatalog.1
|
||||
|
@ -422,7 +422,7 @@ dnl (-Wunreachable-code)
|
||||
dnl
|
||||
if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ]] || \
|
||||
[[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xmltest" ]] || \
|
||||
[[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xmlnew" ]]
|
||||
[[ "${LOGNAME}" = "wbrack" -a "`pwd`" = "/Users/wbrack/gnomecvs/xmltest" ]]
|
||||
then
|
||||
if test "$with_minimum" != "yes"
|
||||
then
|
||||
|
12
result/valid/t10.xml
Normal file
12
result/valid/t10.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<!DOCTYPE root [
|
||||
<!ELEMENT root (cont1 , (cont1 , cont2?)+)>
|
||||
<!ELEMENT cont1 EMPTY>
|
||||
<!ELEMENT cont2 EMPTY>
|
||||
]>
|
||||
<root>
|
||||
<cont1/>
|
||||
<cont1/>
|
||||
<cont1/>
|
||||
<cont1/>
|
||||
</root>
|
0
result/valid/t10.xml.err
Normal file
0
result/valid/t10.xml.err
Normal file
12
test/valid/t10.xml
Normal file
12
test/valid/t10.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<!DOCTYPE root [
|
||||
<!ELEMENT root (cont1, (cont1, cont2?)+)>
|
||||
<!ELEMENT cont1 EMPTY>
|
||||
<!ELEMENT cont2 EMPTY>
|
||||
]>
|
||||
<root>
|
||||
<cont1/>
|
||||
<cont1/>
|
||||
<cont1/>
|
||||
<cont1/>
|
||||
</root>
|
8
valid.c
8
valid.c
@ -1012,7 +1012,9 @@ xmlDumpElementContent(xmlBufferPtr buf, xmlElementContentPtr content, int glob)
|
||||
else
|
||||
xmlDumpElementContent(buf, content->c1, 0);
|
||||
xmlBufferWriteChar(buf, " , ");
|
||||
if (content->c2->type == XML_ELEMENT_CONTENT_OR)
|
||||
if ((content->c2->type == XML_ELEMENT_CONTENT_OR) ||
|
||||
((content->c2->type == XML_ELEMENT_CONTENT_SEQ) &&
|
||||
(content->c2->ocur != XML_ELEMENT_CONTENT_ONCE)))
|
||||
xmlDumpElementContent(buf, content->c2, 1);
|
||||
else
|
||||
xmlDumpElementContent(buf, content->c2, 0);
|
||||
@ -1024,7 +1026,9 @@ xmlDumpElementContent(xmlBufferPtr buf, xmlElementContentPtr content, int glob)
|
||||
else
|
||||
xmlDumpElementContent(buf, content->c1, 0);
|
||||
xmlBufferWriteChar(buf, " | ");
|
||||
if (content->c2->type == XML_ELEMENT_CONTENT_SEQ)
|
||||
if ((content->c2->type == XML_ELEMENT_CONTENT_SEQ) ||
|
||||
((content->c2->type == XML_ELEMENT_CONTENT_OR) &&
|
||||
(content->c2->ocur != XML_ELEMENT_CONTENT_ONCE)))
|
||||
xmlDumpElementContent(buf, content->c2, 1);
|
||||
else
|
||||
xmlDumpElementContent(buf, content->c2, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user