1. 44ce793 Merge branch 'master' of https://github.com/leethomason/tinyxml2 by Lee Thomason · 12 years ago
  2. c3708cc implement a fix to floating point precision as proposed by schuellc. by Lee Thomason · 12 years ago
  3. ba4b328 Fixed issue 147 (XMLDocument::LoadFile() may crash on non-regular file) by Daniel Marjamäki · 12 years ago
  4. 690ba07 you have to check len before accsessing "p". by psi · 12 years ago
  5. 3b7927e formatting tweaks by Lee Thomason · 12 years ago
  6. ed52328 Insert() methods check for inserted XML to be in the same doc, and remove XML from old location if already inserted. by Michael Daumling · 12 years ago
  7. 2162688 Issue #134: Change 3 methods to not being inlined. They reference the StrPair class, which is not exported, thus creating linker problems with tinyxml2 in a DLL. by Michael Daumling · 12 years ago
  8. 1bfb954 Added depth as constructor argument to XMLPrinter. This way, XML files that are not written with XMLDocument can be properly indented. by PKEuS · 12 years ago
  9. 1c5f99e Fixed two cppcheck messages by PKEuS · 12 years ago
  10. 6189231 Initialize pointers to satisfy static code analyser. by Thomas Roß · 12 years ago
  11. d6bd736 fix floating point specifier and clean up a warning by Lee Thomason (grinliz) · 12 years ago
  12. 1470edc Fixed compiler warning for x64 builds. by Thomas Roß · 12 years ago
  13. d0a38c3 fix BOM preservation bugs. add new tests by Lee Thomason (grinliz) · 12 years ago
  14. 1cfafd0 Fixed: LoadFile() returns XML_NO_ERROR for empty documents. by Vasily Biryukov · 12 years ago
  15. 0fd8746 correct typos in comments / documentation by Andrew C. Martin · 12 years ago
  16. 61cea67 removing debug output by Lee Thomason (grinliz) · 13 years ago
  17. ac83b4e adjust the size of the memory pools by Lee Thomason (grinliz) · 13 years ago
  18. a9d42b0 Replace InitDocument() with Clear() and make it part of the API. by Martinsh Shaiters · 13 years ago
  19. c6d02f4 Implement new utility functions for testing validity of name and token characters. by Martinsh Shaiters · 13 years ago
  20. 4ee49f1 Eliminate warnings with GCC/MinGW by MortenMacFly · 13 years ago
  21. 242c3ea Reverting std lib is in std:: namespace and using .h versions instead by Jerome Martinez · 13 years ago
  22. 5b0a677 fix incorrect assert on unused memory by Lee Thomason · 13 years ago
  23. 685b895 trivial comment fix by Lee Thomason · 13 years ago
  24. 8950b37 Merge branch 'master' of https://github.com/leethomason/tinyxml2 by Lee Thomason · 13 years ago
  25. 2fa8172 type XMLError. fix some comments by Lee Thomason · 13 years ago
  26. 04c22d2 Enclose code in namespace instead of 'using namespace' to resolve conflict on Windows with MSXML. Fixes issue #37. by Kevin Wojniak · 13 years ago
  27. 7fbefab std lib is in std:: namespace only and array definition is not possible with an enum by Jerome Martinez · 13 years ago
  28. 1aa8fc4 fix up rename on windows by Lee Thomason · 13 years ago
  29. 624d43f finish switching to _ for member vars by Lee Thomason · 13 years ago
  30. 120b3a6 switch StrPair() over to _ for member vars by Lee Thomason · 13 years ago
  31. a9cf3f9 Switched to Artistic Style auto-formatting to allow integration of patches from other coding styles. by Lee Thomason · 13 years ago
  32. a5716b7 nothing but just remove compile warning by sniperbat · 13 years ago
  33. 3cd66ee fix a fopen bug: rb should be w by Lee Thomason · 13 years ago
  34. fc6320e experimented with print f vs. g. increased version by Lee Thomason (grinliz) · 13 years ago
  35. e2bcb32 accept a nBytes argument for Parse() by Lee Thomason (grinliz) · 13 years ago
  36. 2f1f624 remove trailing spaces by Lee Thomason (grinliz) · 13 years ago
  37. 6da5410 changes for martell to clean up fopen by Lee Thomason (grinliz) · 13 years ago
  38. 79869e7 changes for martell to clean up fopen by Lee Thomason (grinliz) · 13 years ago
  39. 62d1c5a fix merge by Lee Thomason (grinliz) · 13 years ago
  40. 5fbacbe fix name parsing to accept additional lead characters by Lee Thomason (grinliz) · 13 years ago
  41. 491d587 Merge branch 'master' into whitespace by Lee Thomason (grinliz) · 13 years ago
  42. 312a20f Add support to XMLDocument to save file in compact mode. by Robert Reif · 13 years ago
  43. 186476c Shut up visual studio by Martell · 13 years ago
  44. bc1bfb7 added whitespace=collapse support. tests work. code needs review by Lee Thomason (grinliz) · 13 years ago
  45. c28ba3a Fixed cppcheck warnings by PKEuS · 13 years ago
  46. 21be882 Moving string in/out into XMLUtil. Using that across the API. Supporting text queries of primitive types. by Lee Thomason · 13 years ago
  47. 78a773d Fix attribute parsing to correctly handle white space by Lee Thomason · 13 years ago
  48. 390e978 Fix infinite loop bug in ShallowEqual. Fix a warning with a re-interpret cast. Up version to 1.0.4 by Lee Thomason (grinliz) · 13 years ago
  49. a3efec0 clean up some warnings by Lee Thomason · 13 years ago
  50. 2590088 Add compact mode to XMLPrinter, for printing without '\n' and space. by sniperbat · 13 years ago
  51. ee87c62 possible missing header by Lee Thomason · 13 years ago
  52. 7d7a9a3 fixed VS2010 x64 compiler warnings about possible loss of data by Thomas Roß · 13 years ago
  53. f68c438 added new test for BOM, and added good defaults for NewDeclaration by Lee Thomason · 13 years ago
  54. 9708885 minor cleanup to the parsing loop by Lee Thomason · 13 years ago
  55. 5e3803c Better attribute system. Removes redundant list searching of LinkAttribute. Faster parsing on initial read. Added badly needed missing test cases. by Lee Thomason · 13 years ago
  56. 81da1fb Made SaveFile symmetrical with LoadFile by Ken Miller · 13 years ago
  57. a4a36ba remove random -1 in length by Lee Thomason (grinliz) · 13 years ago
  58. 598c13e fix the safe function behavior by Lee Thomason (grinliz) · 13 years ago
  59. 8a0975d minor warning fix by Lee Thomason (grinliz) · 13 years ago
  60. 9a6c6b8 Tackled more Clang analyzer warnings. by Guillermo A. Amaral · 13 years ago
  61. 8ba7f7d Added the improved attribute query by Lee Thomason · 13 years ago
  62. 7f7b162 Add warning for the working directory. Verify win64 fix. by Lee Thomason · 13 years ago
  63. 5ce8941 a few formatting changes by Lee Thomason · 13 years ago
  64. 2eb7003 Misc adjustments and enum rename by Guillermo A. Amaral · 13 years ago
  65. 4de9347 Apply a fix from DoDoEnt for 64 bit linux systems where var args would crash by Lee Thomason · 13 years ago
  66. 7ca5558 removed the pointer-diff by Lee Thomason (grinliz) · 13 years ago
  67. 6f381b7 Added performance test and option to leave entities by Lee Thomason · 13 years ago
  68. 7d00b9a Patching up incorrect boilerplate code. Added clone/equal methods. by Lee Thomason · 13 years ago
  69. 5ce4d97 fix deprecation function mess by Lee Thomason (grinliz) · 13 years ago
  70. 9b093cc Test on gcc. Fix warning. Fix uneeded params. Up VS debug to level 4 and fix warnings. by Lee Thomason (grinliz) · 13 years ago
  71. 2812986 a bunch of readme fixes by Lee Thomason (grinliz) · 13 years ago
  72. 9c38d13 license and readme by Lee Thomason (grinliz) · 13 years ago
  73. 2a1cd27 added a bunch of comments in by Lee Thomason (grinliz) · 13 years ago
  74. 784607f another round on the element parsing. Test case passes. by Lee Thomason (grinliz) · 13 years ago
  75. 7468f11 better end element parsing by Lee Thomason (grinliz) · 13 years ago
  76. 46a14cf new element loop by Lee Thomason (grinliz) · 13 years ago
  77. d627776 The rest of the test cases. Some bugs, but should be a complete set. by Lee Thomason · 13 years ago
  78. 68db57e UTF-8 tests passing. by Lee Thomason (grinliz) · 13 years ago
  79. bd0a8ac Dream test passing. by Lee Thomason (grinliz) · 13 years ago
  80. ae25a44 print to memory support by U-Stream\Lee · 13 years ago
  81. 09a11c5 test cases. Working out attribute interface. by U-Stream\Lee · 13 years ago
  82. 1a1d4a7 added attribute handling. StrPair can now new/delete memory. by Lee Thomason · 13 years ago
  83. 1ff38e0 working with attributes. adding missing methods by Lee Thomason · 13 years ago
  84. ec5a7b4 testing infrastructur by Lee Thomason · 13 years ago
  85. e9ecdab memory tracking by Lee Thomason · 13 years ago
  86. 50adb4c sync by Lee Thomason · 14 years ago
  87. 50f97b2 added missing node types by Lee Thomason · 14 years ago
  88. 751da52 adding a bunch of the api (which isn't yet hooked up.) by Lee Thomason · 14 years ago
  89. 56bdd02 improved the streamer interface so it doesn't require text parent. now possible to connect visitor and streamer. by Lee Thomason · 14 years ago
  90. 43f5930 integrated attributes into the placement new by Lee Thomason · 14 years ago
  91. 455c9d4 minor cleanup. by Lee Thomason · 14 years ago
  92. d198322 finally have the placement new working as desired. by Lee Thomason · 14 years ago
  93. 2c85a71 more refactoring. cleaning out container classes. by Lee Thomason · 14 years ago
  94. 1270ae5 cleaned up the memory by Lee Thomason · 14 years ago
  95. 7c913cd more cleaning up the interface. by Lee Thomason · 14 years ago
  96. 18d68bd removed the char allocator. Started cleaning up the document code. by Lee Thomason · 14 years ago
  97. 951d883 entity output by Lee Thomason · 14 years ago
  98. 857b868 WIP. syncing machines. by Lee Thomason · 14 years ago
  99. 8ee7989 added entity input support. by Lee Thomason · 14 years ago
  100. 24767b0 work on the streamer class. A little optimization to the string class. Formatting work. by Lee Thomason · 14 years ago