mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
tree: Deprecate xmlSetCompressMode
This commit is contained in:
parent
05654cfe00
commit
88169bfda6
@ -1288,8 +1288,10 @@ XMLPUBFUN int
|
||||
XMLPUBFUN void
|
||||
xmlSetDocCompressMode (xmlDocPtr doc,
|
||||
int mode);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN int
|
||||
xmlGetCompressMode (void);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN void
|
||||
xmlSetCompressMode (int mode);
|
||||
|
||||
|
@ -308,6 +308,7 @@ deprecated_funcs = {
|
||||
'xmlDictCleanup': True,
|
||||
'xmlEncodeEntities': True,
|
||||
'xmlFileMatch': True,
|
||||
'xmlGetCompressMode': True,
|
||||
'xmlHandleEntity': True,
|
||||
'xmlInitCharEncodingHandlers': True,
|
||||
'xmlInitGlobals': True,
|
||||
@ -378,6 +379,7 @@ deprecated_funcs = {
|
||||
'xmlScanName': True,
|
||||
'xmlSchemaCleanupTypes': True,
|
||||
'xmlSchemaInitTypes': True,
|
||||
'xmlSetCompressMode': True,
|
||||
'xmlSetupParserForBuffer': True,
|
||||
'xmlSkipBlankChars': True,
|
||||
'xmlStringDecodeEntities': True,
|
||||
|
4
tree.c
4
tree.c
@ -7673,6 +7673,8 @@ xmlSetDocCompressMode (xmlDocPtr doc, int mode) {
|
||||
/**
|
||||
* xmlGetCompressMode:
|
||||
*
|
||||
* DEPRECATED: Use xmlGetDocCompressMode
|
||||
*
|
||||
* get the default compression mode used, ZLIB based.
|
||||
* Returns 0 (uncompressed) to 9 (max compression)
|
||||
*/
|
||||
@ -7686,6 +7688,8 @@ xmlGetCompressMode(void)
|
||||
* xmlSetCompressMode:
|
||||
* @mode: the compression ratio
|
||||
*
|
||||
* DEPRECATED: Use xmlSetDocCompressMode
|
||||
*
|
||||
* set the default compression mode used, ZLIB based
|
||||
* Correct values: 0 (uncompressed) to 9 (max compression)
|
||||
*/
|
||||
|
@ -2521,6 +2521,9 @@ static void parseAndPrintFile(char *filename, xmlParserCtxtPtr rectxt) {
|
||||
if (noout == 0) {
|
||||
int ret;
|
||||
|
||||
if (compress)
|
||||
xmlSetDocCompressMode(doc, 9);
|
||||
|
||||
/*
|
||||
* print it.
|
||||
*/
|
||||
@ -3359,7 +3362,6 @@ main(int argc, char **argv) {
|
||||
else if ((!strcmp(argv[i], "-compress")) ||
|
||||
(!strcmp(argv[i], "--compress"))) {
|
||||
compress++;
|
||||
xmlSetCompressMode(9);
|
||||
}
|
||||
#endif
|
||||
#endif /* LIBXML_OUTPUT_ENABLED */
|
||||
|
Loading…
x
Reference in New Issue
Block a user