xmltwig icon indicating copy to clipboard operation
xmltwig copied to clipboard

XML, the Perl way

Results 22 xmltwig issues
Sort by recently updated
recently updated
newest added

Those files are only for the user environment. They are generated by Makefile.PL during the configure phase. There is no point in distributing or archiving them.

Hi, Perl 5.22 complains on braces unescaped on substitutions. This fixes that. Simple but useful fix, I hope. Best ambs

With Perl 5.25.1, unescaped literal left braces in regular expressions become an error. This is part of a deprecation that was begun in 5.22. This issue turned up in the...

The rationale behind this change is explained in the RT tickets https://rt.cpan.org/Public/Bug/Display.html?id=86633 and https://rt.cpan.org/Public/Bug/Display.html?id=86773 No existing test appears to break. Best wishes

Here's a little script that dies: ``` use XML::Twig::XPath; XML::Twig::XPath->new()-> parse('')-> findnodes('//namespace::*'); ``` The error printed is: ``` axis axis_namespace not implemented [Can't locate object method "getNamespaces" via package "XML::Twig::XPath::Elt"...

Twig generates a segfault due to a stack overflow when it deallocates an XML tree that includes an element with a large number of children (>>10000). Here's a script that...

I'm getting a segmentation fault when parsing a relatively large XML file (289M). I'm not sure if the problem is in XML::Twig, Expat or Perl. Here's a stack trace: `...

It would useful if XML::Twig could handle XPath variables using the support contained in XML::XPath. I'll be attaching a pull request for very basic support of this (including a test,...