Nick Wellnhofer
8696ebe182
parser: Fix ignorableWhitespace callback
...
If ignorableWhitespace differs from the "characters" callback, we have
to check for blanks as well.
Regressed with 1f5b537.
2025-03-11 16:34:30 +01:00
Nick Wellnhofer
d83ff954af
xmllint: Make sure that parser options are used
2025-03-11 16:34:30 +01:00
Nick Wellnhofer
25490528af
parser: Fix spurious error in SAX mode
...
Short-lived regression from 5f0b1378.
2025-03-11 16:34:30 +01:00
Nick Wellnhofer
ef44c240f5
encoding: Fix memory leak in xmlCharEncNewCustomHandler
...
Short-lived regression.
2025-03-10 14:16:14 +01:00
Nick Wellnhofer
87c9e000e5
encoding: Rework custom encoding implementation API
2025-03-09 22:37:13 +01:00
Nick Wellnhofer
ba9148d8a5
parser: Undeprecate input->consumed
...
Should be deprecated after fixing #762 .
2025-03-09 20:30:49 +01:00
Nick Wellnhofer
a0dbf030ee
parser: Undeprecate ctxt->loadsubset
...
Should be deprecated after fixing #873 .
2025-03-09 20:24:06 +01:00
Nick Wellnhofer
8873a49846
html: Fix areBlanks check
...
Short-lived regression from 71122421.
2025-03-09 16:21:13 +01:00
Nick Wellnhofer
98776424a8
gitlab-ci: Use forked branch for XML::LibXML
2025-03-09 15:14:50 +01:00
Nick Wellnhofer
bde22ce8a8
Update NEWS
2025-03-09 13:53:18 +01:00
Nick Wellnhofer
9f8484602f
malloc-fail: Fix type confusion in xmlSchemaCheckAGPropsCorrect
...
Attribute groups must be marked as containing references also if an OOM
error occurred. Otherwise, references won't be resolved, leading to type
confusion in xmlSchemaCheckAGPropsCorrect later in the fixup phase.
I'm not sure why xmlSchemaFixupComponents is called at all if an error
occurred. This has lead to similar issues in the past. On the other
hand, continuing in the presence of errors helps when fuzzing.
See #344 .
2025-03-09 13:53:13 +01:00
Nick Wellnhofer
d96911f100
doc: Documentation fixes
2025-03-08 23:03:26 +01:00
Nick Wellnhofer
5f0b1378d7
parser: Add more parser context accessors
...
Fixes #763 .
2025-03-08 22:36:06 +01:00
Nick Wellnhofer
5237d90fae
html: Process data before switching encoding
...
This reduces the amount of data to convert and avoids issues with EOF
detection.
Also reset EOF flag after switching encoding as a precaution.
2025-03-07 21:19:16 +01:00
Nick Wellnhofer
38f475072a
encoding: Make conversion callbacks more type-safe
2025-03-05 22:25:14 +01:00
Nick Wellnhofer
a846d96468
encoding: Remove compatibility struct members
2025-03-05 16:49:42 +01:00
Nick Wellnhofer
94d8a3e231
parser: Convert xmlParserMaxDepth to macro
2025-03-05 14:56:46 +01:00
Nick Wellnhofer
5b56ed9b81
gitlab-ci: Reenable cmake:mingw
...
For some reason, it's working again.
2025-03-05 12:24:38 +01:00
Nick Wellnhofer
2af05f76fe
globals: Fix Windows build
2025-03-05 12:24:38 +01:00
Nick Wellnhofer
696572248f
globals: Remove unused globals
...
- xmlBufferAllocScheme
- xmlDefaultBufferSize
- xmlParserDebugEntities
2025-03-05 12:24:38 +01:00
Nick Wellnhofer
92d7b0cd90
xpath: Rename valuePush and valuePop
2025-03-05 12:24:38 +01:00
Nick Wellnhofer
03be993ce5
Use memcpy to avoid pointer cast warnings
2025-03-05 12:24:38 +01:00
Nick Wellnhofer
d9ea76505d
build: Restrict binary compatibility to 2.14
...
On ELF systems, this bumps the soname from libxml2.so.2 to
libxml2.so.16. For historic reasons, the last component is the sum of
major and minor version.
2025-03-04 18:00:24 +01:00
Nick Wellnhofer
f502e9b2f6
include: Add more deprecation warnings
2025-03-04 17:38:10 +01:00
Nick Wellnhofer
576411135f
cmake: Add WITH_LEGACY dependencies
2025-03-04 17:38:10 +01:00
Nick Wellnhofer
85bd58ef56
globals: Remove functions related to global state handling
...
- xmlGetGlobalState
- xmlInitializeGlobalState
- xmlGetThreadId
- xmlIsMainThread
2025-03-04 17:38:10 +01:00
Nick Wellnhofer
03a8d5f93d
unicode: Make Unicode functions private
2025-03-04 17:31:11 +01:00
Nick Wellnhofer
3d37ff84c3
globals: Also use global state struct if threads are disabled
2025-03-04 16:54:41 +01:00
Nick Wellnhofer
a15ad9b268
parser: Remove compatibility symbols
2025-03-04 16:54:41 +01:00
Nick Wellnhofer
8e871162a6
parser: Remove oldXMLWDcompatibility
2025-03-04 16:54:41 +01:00
Nick Wellnhofer
eed1a07d05
build: Remove version script
2025-03-04 16:54:41 +01:00
Nick Wellnhofer
cdc5cfed0b
legacy: Remove legacy symbols
2025-03-04 16:54:05 +01:00
Nick Wellnhofer
3250a01dc2
error: Convert initGenericErrorDefaultFunc to macro
2025-03-04 16:53:59 +01:00
Nick Wellnhofer
c42b32277d
parser: Convert inputPush and inputPop to macros
2025-03-04 16:53:28 +01:00
Nick Wellnhofer
361f7bff92
parser: Make nodePush, nodePop, namePush, namePop private
2025-03-04 16:47:14 +01:00
Nick Wellnhofer
0b27097a92
encoding: Rename unprefixed public functions
2025-03-04 16:46:53 +01:00
Nick Wellnhofer
66fdf94c55
cmake: Fix WITH_RELAXNG option
...
Dependent options must come after dependencies.
2025-03-03 10:12:18 +01:00
Nick Wellnhofer
a0f156fffb
io: Fix compressed
flag for uncompressed stdin
...
This could cause xmlstarlet to generate compressed output unexpectedly.
Regressed with a78843be. Should fix #869 .
2025-03-02 13:22:56 +01:00
Nick Wellnhofer
05bd1720ce
parser: Fix parsing of DTD content
...
Regressed in 2.11. Fixes #868 .
2025-03-01 15:18:20 +01:00
Nick Wellnhofer
552864f109
Remove os400 port
...
This is based on an ancient version and completely outdated.
2025-03-01 15:18:20 +01:00
Nick Wellnhofer
e60f0712ea
Update NEWS
2025-03-01 15:18:20 +01:00
Nick Wellnhofer
e50d314a27
build: Add separate configuration option for RELAX NG
...
Support for RELAX NG used to be enabled together with XML Schema support
(--with-schemas). Now there's a separate option and a new feature macro
LIBXML_RELAXNG_ENABLED.
2025-03-01 15:18:20 +01:00
Nick Wellnhofer
ce1b704e33
doc: Regenerate libxml2-api.xml
2025-02-25 20:09:36 +01:00
Nick Wellnhofer
6ab430ca2e
Remove unnecessary #includes
2025-02-22 21:55:58 +01:00
Nick Wellnhofer
7ae8e8ac7d
schemas: Make xmlSchemaDump depend on DEBUG_ENABLED
2025-02-22 21:06:34 +01:00
Nick Wellnhofer
6fc260760a
regexp: Hide debugging code behind DEBUG_REGEXP
...
xmlRegexpPrint is now a deprecated no-op.
2025-02-22 20:55:06 +01:00
Florin Haja
4649f28f77
xmlregexp: add support for compact form of automata in xmlRegexpPrint
2025-02-22 19:29:07 +00:00
Nick Wellnhofer
c82270a9a7
regexp: Avoid dangling start/stop pointers in atom
...
States could be eliminated later, so set start/stop pointers to NULL
after they're used in xmlFAGenerateTransitions.
2025-02-22 18:55:43 +01:00
Nick Wellnhofer
5ed4eafd8a
html: Don't invoke SAX callbacks if parser was stopped
2025-02-22 14:52:47 +01:00
Nick Wellnhofer
6dfa68ac7f
SAX2: Fix ctxt->nodemem check
...
In some error cases and maybe other situations, nodemem can have a
value of -1.
2025-02-22 14:52:47 +01:00