Renan Rodrigo
Renan Rodrigo
Runnin on EL7, packages such as `squashfs-tools` and `xorriso` are not installed by default. This is generating OSErrors like the one described in #146 .
Currently we use a for loop to initialize the tag pool. We need a better way to do that.
According to feedback from @viniciusarcanjo, packing/unpacking of those messages must be reviewed. Message sizes may not be correct, default values are not set.
# Bug report On some very particular cases™, running on Azure, I found cloud-init on a `done degraded` state, and it messed up with the Pro Client CI. Those cases...
This is adapting the sanitize function to remove commented XML tags from the resulting markdown. Fixes: #263
### Version(s) affected 5.1.1 (but potentially earlier too) ### Description When PHP is built with the recently(ish) released libxml2 version 2.14, it uses HTML5 standards when running `loadHTML` and similar...
The xml_set_object call needs to happen before the xml_set_element_handler call, so it knows the methods in the class and is able to bind the handlers properly Fixes: #413
The initXMLParser function breaks when building with php8.4 and libxml2 v14+ ``` PHP Fatal error: Uncaught ValueError: xml_set_element_handler(): Argument #2 ($start_handler) an object must be set via xml_set_object() to be...
When php is compiled with libxml2 > 2.14, the loadHTML functionality will use HTML5 standards, which cause the tags in the tests not to be created. Passing the as input...
The new libxml2.14 uses the HTML5 standards when converting inputs. Before HTML5, any text should be inside a tag to be valid, so the parser was inserting that tag. Now...