mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
5004f42ff4
commit
d536f7012d
@ -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
|
||||
|
16
xmllint.c
16
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user