Activity for RapidXml

  • Ryan Henderson Ryan Henderson created ticket #10

    Minor default initialization to keep linting tools happy.

  • andry81 andry81 posted a comment on ticket #3

    I've a fork with patched implementation to explicitly declare a self-closed tag: https://sourceforge.net/p/tacklelib/3dparty--rapidxml/HEAD/tree/branches/ Example: for (rapidxml::xml_node<> * node = ...; node; node = node->next_sibling()) { node->flags(node->flags() & ~rapidxml::node_self_closed_tag); }

  • andry81 andry81 created ticket #3

    Function to check if a node is a self-closed tag

  • Mauricio RAmirez Mauricio RAmirez posted a comment on discussion Help

    I'm trying to parse through an XML document. When I put the document into an online validator it says it's valid XML. As I work my way through the nodes, I eventually get to my "detail" element and the first_node() method fails. I the the following message: Parse error was: unexpected end of data I'm attaching the response xml in the hopes someone can help.

  • Rex Jolliff Rex Jolliff posted a comment on discussion Open Discussion

    Looks like Microsoft has changed its implementation of two phase lookup, and the forward references in the print_node function are now flagged as errors. If you have this problem, you can change the Conformance flag from /permissive- to /permissive (in the UI, under properties -> c/c++ -> language -> Conformance mode = No). Setting the /permissive flag will probably cause other template issues.

  • Florian Reiser Florian Reiser posted a comment on discussion Open Discussion

    I've found a bug in RapidXml-1.13, file rapidxml_print.hpp:403. The line print(std::ostream_iterator<Ch>(out), node, flags); causes compiler errors, if you compile it with Unicode support on VS2015. If you change it to print(std::ostream_iterator<Ch, Ch>(out), node, flags); anything is fine. Patch: --- rapidxml_print.hpp 2017-11-16 11:48:45.568522300 +0100 +++ rapidxml_print_patch.hpp 2017-11-16 11:39:44.170322300 +0100 @@ -400,7 +400,7 @@ template<class Ch> inline std::basic_ostream<Ch> &print(std::basic_ostream<Ch>...

  • Anonymous modified a comment on ticket #16

    Same problem with newer gcc (gcc (GCC) 4.7.0 20120324 (prerelease)) on archlinux the patch works error is : rapidxml-1.13/rapidxml_print.hpp: In instantiation of ‘OutIt rapidxml::internal::print_node(OutIt, const rapidxml::xml_node<Ch>*, int, int) [with OutIt = std::ostream_iterator<char, char, std::char_traits<char> >; Ch = char]’: rapidxml-1.13/rapidxml_print.hpp:390:57: required from ‘OutIt rapidxml::print(OutIt, const rapidxml::xml_node<Ch>&, int) [with OutIt = std::ostream_iterator<char, char,...

  • Anonymous modified a comment on ticket #16

    Same problem with newer gcc (gcc (GCC) 4.7.0 20120324 (prerelease)) on archlinux the patch works error is : rapidxml-1.13/rapidxml_print.hpp: In instantiation of ‘OutIt rapidxml::internal::print_node(OutIt, const rapidxml::xml_node<Ch>*, int, int) [with OutIt = std::ostream_iterator<char, char, std::char_traits<char> >; Ch = char]’: rapidxml-1.13/rapidxml_print.hpp:390:57: required from ‘OutIt rapidxml::print(OutIt, const rapidxml::xml_node<Ch>&, int) [with OutIt = std::ostream_iterator<char, char,...

  • Anonymous modified a comment on ticket #16

    Same problem with newer gcc (gcc (GCC) 4.7.0 20120324 (prerelease)) on archlinux the patch works error is : rapidxml-1.13/rapidxml_print.hpp: In instantiation of ‘OutIt rapidxml::internal::print_node(OutIt, const rapidxml::xml_node<Ch>*, int, int) [with OutIt = std::ostream_iterator<char, char, std::char_traits<char> >; Ch = char]’: rapidxml-1.13/rapidxml_print.hpp:390:57: required from ‘OutIt rapidxml::print(OutIt, const rapidxml::xml_node<Ch>&, int) [with OutIt = std::ostream_iterator<char, char,...

  • Fabian W Fabian W posted a comment on ticket #23

    Works fine! Thanks a lot dude :D

  • pedro quide pedro quide posted a comment on ticket #5

    What patch format is this? I can't manage to apply it! Here is another go on the...

  • Anders Skoglund Anders Skoglund created ticket #25

    Compiler warnings

  • Anonymous modified a comment on ticket #16

    Same problem with newer gcc (gcc (GCC) 4.7.0 20120324 (prerelease)) on archlinux...

  • Anonymous modified a comment on ticket #16

    Same problem with newer gcc (gcc (GCC) 4.7.0 20120324 (prerelease)) on archlinux...

  • Anonymous modified a comment on ticket #16

    Same problem with newer gcc (gcc (GCC) 4.7.0 20120324 (prerelease)) on archlinux...

  • Manuel Schmitz Manuel Schmitz modified a comment on ticket #18

    I ran into the same problem with gcc 4.9.3 on Cygwin. My own version of the fix is...

  • Manuel Schmitz Manuel Schmitz posted a comment on ticket #18

    I ran into the same problem with gcc 4.9.3 on Cygwin. My own version the fix is attached...

  • Kent C. Johnson Kent C. Johnson posted a comment on ticket #6

    I ran into this as well, and found a similar fix here: http://stackoverflow.com/questions/14113923/rapidxml-print-header-has-undefined-methods...

  • 鈴見咲君高 鈴見咲君高 modified a comment on ticket #23

    [fixed] I posted "...Sorry, the patch seems somethnig wrong" 10 minutes ago here,...

  • 鈴見咲君高 鈴見咲君高 posted a comment on ticket #23

    ...Sorry, the patch seems somethnig wrong.

  • 鈴見咲君高 鈴見咲君高 posted a comment on ticket #23

    This patch may help you.

  • Kent C. Johnson Kent C. Johnson created ticket #9

    rapidxml_iterators.hpp improvements

  • gfarrand gfarrand created ticket #24

    Multiple Compile Failures on g++ 4.8.2 with -Weffc++ and -Werror

  • Daniel Perry Daniel Perry created ticket #23

    xml_document<wchar_t>::parse broken for code points 256+

  • Seth Call Seth Call posted a comment on ticket #22

    Should have caught that myself. Thanks!

  • Bernd Bernd created ticket #2

    Flag to skip namespaces.

  • Bernd Bernd posted a comment on ticket #19

    1846: Please read the documentation in the header for RAPIDXML_PARSE_ERROR. RAPIDXML_PARSE_ERROR...

  • Bernd Bernd posted a comment on ticket #20

    VC 2008 know placements new. Also STL is using it and a lot of other contrainer-frameworks....

  • Weber Weber posted a comment on ticket #21

    Casting away the warning is not enough here, because proper error handling for tellg()...

  • Bernd Bernd posted a comment on ticket #22

    Perhaps you should NOT use "fprintf" if you simply want to print the content of a...

  • Seth Call Seth Call posted a comment on ticket #22

    Here's a complete sample program: #include <stdio.h> #include <string> #include "rapidxml/rapidxml.hpp"...

  • Seth Call Seth Call created ticket #22

    Percent symbol replaced with the word "Success" in cdata

  • Constantin Constantin created ticket #21

    compiler warning: std::streamoff is not size_t

  • Anonymous modified a comment on ticket #16

    Same problem with newer gcc (gcc (GCC) 4.7.0 20120324 (prerelease)) on archlinux...

  • Tom Plunket Tom Plunket posted a comment on ticket #1

    See https://sourceforge.net/p/rapidxml/patches/8/ for a version which avoids adding...

  • Tom Plunket Tom Plunket created ticket #8

    wchar_t filename support

1
MongoDB Logo MongoDB