Morus Walter patch to allow --format and --encode Daniel

* xmllint.c: Morus Walter patch to allow --format and --encode
Daniel
This commit is contained in:
Daniel Veillard 2001-11-08 17:32:47 +00:00
parent 5004f42ff4
commit d536f7012d
2 changed files with 17 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Thu Nov 8 18:31:40 CET 2001 Daniel Veillard <daniel@veillard.com>
* xmllint.c: Morus Walter patch to allow --format and --encode
Thu Nov 8 14:52:18 CET 2001 Daniel Veillard <daniel@veillard.com>
* debugXML.c: Stefan Kost provided an help command for the shell

View File

@ -672,7 +672,11 @@ static void parseAndPrintFile(char *filename) {
int len;
if (encoding != NULL) {
xmlDocDumpMemoryEnc(doc, &result, &len, encoding);
if ( format ) {
xmlDocDumpFormatMemoryEnc(doc, &result, &len, encoding, 1);
} else {
xmlDocDumpMemoryEnc(doc, &result, &len, encoding);
}
} else {
if (format)
xmlDocDumpFormatMemory(doc, &result, &len, 1);
@ -689,8 +693,14 @@ static void parseAndPrintFile(char *filename) {
#endif /* HAVE_SYS_MMAN_H */
if (compress)
xmlSaveFile("-", doc);
else if (encoding != NULL)
xmlSaveFileEnc("-", doc, encoding);
else if (encoding != NULL) {
if ( format ) {
xmlSaveFormatFileEnc("-", doc, encoding, 1);
}
else {
xmlSaveFileEnc("-", doc, encoding);
}
}
else if (format)
xmlSaveFormatFile("-", doc, 1);
else