diff --git a/ChangeLog b/ChangeLog index 04f92192..ddff9a35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Nov 8 18:31:40 CET 2001 Daniel Veillard + + * xmllint.c: Morus Walter patch to allow --format and --encode + Thu Nov 8 14:52:18 CET 2001 Daniel Veillard * debugXML.c: Stefan Kost provided an help command for the shell diff --git a/xmllint.c b/xmllint.c index 9958d0a4..52553563 100644 --- a/xmllint.c +++ b/xmllint.c @@ -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