readme.txt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. pugixml 1.12 - an XML processing library
  2. Copyright (C) 2006-2022, by Arseny Kapoulkine ([email protected])
  3. Report bugs and download new versions at https://pugixml.org/
  4. This is the distribution of pugixml, which is a C++ XML processing library,
  5. which consists of a DOM-like interface with rich traversal/modification
  6. capabilities, an extremely fast XML parser which constructs the DOM tree from
  7. an XML file/buffer, and an XPath 1.0 implementation for complex data-driven
  8. tree queries. Full Unicode support is also available, with Unicode interface
  9. variants and conversions between different Unicode encodings (which happen
  10. automatically during parsing/saving).
  11. The distribution contains the following folders:
  12. docs/ - documentation
  13. docs/samples - pugixml usage examples
  14. docs/quickstart.html - quick start guide
  15. docs/manual.html - complete manual
  16. scripts/ - project files for IDE/build systems
  17. src/ - header and source files
  18. readme.txt - this file.
  19. This library is distributed under the MIT License:
  20. Copyright (c) 2006-2022 Arseny Kapoulkine
  21. Permission is hereby granted, free of charge, to any person
  22. obtaining a copy of this software and associated documentation
  23. files (the "Software"), to deal in the Software without
  24. restriction, including without limitation the rights to use,
  25. copy, modify, merge, publish, distribute, sublicense, and/or sell
  26. copies of the Software, and to permit persons to whom the
  27. Software is furnished to do so, subject to the following
  28. conditions:
  29. The above copyright notice and this permission notice shall be
  30. included in all copies or substantial portions of the Software.
  31. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  32. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  33. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  34. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  35. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  36. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  37. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  38. OTHER DEALINGS IN THE SOFTWARE.