mirror of
https://github.com/GNOME/libxml2.git
synced 2025-03-31 19:10:28 +08:00
Fixed the output of empty attributes, Daniel.
This commit is contained in:
parent
19b858c4e8
commit
726c7e3c8d
@ -1,3 +1,9 @@
|
||||
Mon Feb 8 16:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
|
||||
|
||||
* tree.c: patched an error outputting empty attribute values.
|
||||
* Makefile.am and doc/makefile.am: have been updated during the
|
||||
week-end. Sorry for an empty CVS log, I got a shell problem.
|
||||
|
||||
Mon Feb 1 12:10:13 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
|
||||
|
||||
* tree.h: cleaned up using enums instead of defines
|
||||
|
4
tester.c
4
tester.c
@ -38,8 +38,7 @@ static int recovery = 0;
|
||||
* Note: there is a couple of errors introduced on purpose.
|
||||
*/
|
||||
static CHAR buffer[] =
|
||||
"\n\
|
||||
<?xml version=\"1.0\"?>\n\
|
||||
"<?xml version=\"1.0\"?>\n\
|
||||
<?xml:namespace ns = \"http://www.ietf.org/standards/dav/\" prefix = \"D\"?>\n\
|
||||
<?xml:namespace ns = \"http://www.w3.com/standards/z39.50/\" prefix = \"Z\"?>\n\
|
||||
<D:propertyupdate>\n\
|
||||
@ -75,6 +74,7 @@ int treeTest(void) {
|
||||
doc->root = xmlNewDocNode(doc, NULL, "EXAMPLE", NULL);
|
||||
xmlSetProp(doc->root, "prop1", "gnome is great");
|
||||
xmlSetProp(doc->root, "prop2", "&linux; too");
|
||||
xmlSetProp(doc->root, "emptyprop", "");
|
||||
tree = xmlNewChild(doc->root, NULL, "head", NULL);
|
||||
subtree = xmlNewChild(tree, NULL, "title", "Welcome to Gnome");
|
||||
tree = xmlNewChild(doc->root, NULL, "chapter", NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user