summaryrefslogtreecommitdiff
path: root/src/pugixml.cpp
AgeCommit message (Expand)Author
2010-07-11Changed version in headersarseny.kapoulkine
2010-07-07remove_child and remove_attribute now return operation resultarseny.kapoulkine
2010-07-07Fixed strequalrange so that it matches the description (this also fixes first...arseny.kapoulkine
2010-07-07traverse() function is now foolproof against walkers that modify node handlesarseny.kapoulkine
2010-07-06Iterator fixes: added assertions, fixed past-the-end iterator behavior wrt to...arseny.kapoulkine
2010-07-06Minor traverse() refactoringarseny.kapoulkine
2010-07-01parse_wnorm_attribute is no longer deprecated (it's part of W3C recommendatio...arseny.kapoulkine
2010-06-27Renamed encoding_t to xml_encoding, renamed xpath_type_t to xpath_value_typearseny.kapoulkine
2010-06-27Renamed name parameter in load_file/save_file to patharseny.kapoulkine
2010-06-23Added null pointer assertions to as_utf8 and as_widearseny.kapoulkine
2010-06-20Spelling fixesarseny.kapoulkine
2010-06-19Fixed deprecation warnings for IntelCarseny.kapoulkine
2010-06-19Replaced _CRT_SECURE macros with #pragma to avoid warnings because of multipl...arseny.kapoulkine
2010-06-19Fixed SNC warningsarseny.kapoulkine
2010-06-16Automatically disable XPath when either PUGIXML_NO_STL or PUGIXML_NO_EXCEPTIO...arseny.kapoulkine
2010-06-13Fixed MSVC x64 warningarseny.kapoulkine
2010-06-13Internal XML parsing error handling is done via setjmp/longjmp, all allocatio...arseny.kapoulkine
2010-06-12Fixed IntelC warnings, removed unnecessary hack for BCCarseny.kapoulkine
2010-06-12Declaration nodes improvements (they now automatically get name "xml", they c...arseny.kapoulkine
2010-06-12Refactored PI/declaration parsing, now non top-level declarations result in p...arseny.kapoulkine
2010-06-11Rewritten numeric character reference parsing (fixed &#; and &#x; parsing), a...arseny.kapoulkine
2010-06-11Minor refactoring (moved unicode utilities to anonymous namespace, moved deco...arseny.kapoulkine
2010-06-06Replaced charN_t types with uintN_t (C++0x compatibility)arseny.kapoulkine
2010-06-04Optimized attribute parsing; behavior of parse_wconv changed, it now assumes ...arseny.kapoulkine
2010-06-03Minor strcpy_insitu optimization for large strings, removed now redundant imp...arseny.kapoulkine
2010-06-01Removed redundant functionarseny.kapoulkine
2010-06-01Constant deprecation is disabled only on old IntelC, removed deprecation warn...arseny.kapoulkine
2010-05-25Added support for Sun C++ compilerarseny.kapoulkine
2010-05-25Updated version, updated changelog, minor Doxygen fixesarseny.kapoulkine
2010-05-25Internal charN_t types now use fixed size uintN_t typesarseny.kapoulkine
2010-05-25Optimized utf8 decodingarseny.kapoulkine
2010-05-25Optimized utf8 -> wchar_t conversion, replaced assert with static assertarseny.kapoulkine
2010-05-25Changed memory management so that the document node lives inside document; th...arseny.kapoulkine
2010-05-21Nodes/attributes with empty names now are printed as :anonymousarseny.kapoulkine
2010-05-20Optimized debug mode parsing/saving by order of magnitudearseny.kapoulkine
2010-05-20as_* functions now all use strto*/wcsto* functions; this unifies the behavior...arseny.kapoulkine
2010-05-20Assume that all compilers (except Microsoft) have stdint.harseny.kapoulkine
2010-05-12Fixed GCC buildarseny.kapoulkine
2010-05-11Fixed incorrect allocator pointer in pages during parsingarseny.kapoulkine
2010-05-10Various test compilation fixesarseny.kapoulkine
2010-05-10Implemented better DOCTYPE parsing, added more DOCTYPE testsarseny.kapoulkine
2010-05-10Optimized memory consumption (removed last_child and last_attribute, sibling/...arseny.kapoulkine
2010-05-10Minor allocation refactoring and optimizationarseny.kapoulkine
2010-05-10Optimized xml_document::destroyarseny.kapoulkine
2010-05-10Reworked DOM memory allocation scheme (name/value allocations use the same pa...arseny.kapoulkine
2010-05-09Removed document order optimization (it helps on a tiny percentage of queries...arseny.kapoulkine
2010-05-09Added empty stream/buffer tests, fixed null buffer parsing in wchar_t modearseny.kapoulkine
2010-05-09Minor loading functions refactoring, fixed XPath append_node for MSVC10arseny.kapoulkine
2010-05-08Minor coverage improvementsarseny.kapoulkine
2010-05-08Don't use global no-deprecate switch for newer GCC/MinGW, fixed warnings beca...arseny.kapoulkine