summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-06 20:54:02 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-06 20:54:02 +0000
commit18819327e9aff5c34a4e800bf31a894a8390a8a8 (patch)
tree8552e3e9a81afe5cdf48348ea98f1bd6569e35d2
parentd2175179753d8333d283747ab1472a0f6bfb1a60 (diff)
Updated copyright year, updated changelog in documentation
git-svn-id: http://pugixml.googlecode.com/svn/trunk@385 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r--docs/index.html30
-rw-r--r--src/pugiconfig.hpp4
-rw-r--r--src/pugixml.cpp4
-rw-r--r--src/pugixml.hpp4
-rw-r--r--src/pugixpath.cpp4
5 files changed, 35 insertions, 11 deletions
diff --git a/docs/index.html b/docs/index.html
index 25c275e..f31c957 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -722,6 +722,30 @@ were attributes, i.e. doc.child("xml").attribute("version").as_float()); corresp
</ul>
</dd>
</dt>
+<dt>7.05.2010 - v0.6
+<dd>Changes: <ul>
+<li>Bug fixes:<ul>
+<li>Fixed document corruption on failed parsing bug
+<li>XPath string <-> number conversion improvements (increased precision, fixed crash for huge numbers)
+</ul>
+<li>Major Unicode improvements:<ul>
+<li>Introduced encoding support (automatic/manual encoding detection on load, manual encoding selection on save, conversion from/to UTF8, UTF16 LE/BE, UTF32 LE/BE)
+<li>Introduced wchar_t mode (you can set PUGIXML_WCHAR_MODE define to switch pugixml internal encoding from UTF8 to wchar_t; all functions are switched to their Unicode variants)
+<li>Load/save functions now support wide streams
+</ul>
+<li>Specification changes:<ul>
+<li>parse() API changed to load_buffer/load_buffer_inplace/load_buffer_inplace_own; load_buffer APIs do not require zero-terminated strings.
+<li>Renamed as_utf16 to as_wide
+<li>Changed xml_node::offset_debug return type and xml_parse_result::offset type to ptrdiff_t
+</ul>
+<li>Miscellaneous:<ul>
+<li>Optimized document parsing and saving
+<li>All STL includes in pugixml.hpp are replaced with forward declarations
+<li>Added contrib/ folder with Boost.Foreach compatibility helpers for iterators and header-only configuration support through special header
+</ul>
+</ul>
+</ul>
+</dt>
</dl>
<hr>
@@ -742,7 +766,7 @@ were attributes, i.e. doc.child("xml").attribute("version").as_float()); corresp
<p>The <i>pugixml</i> parser is distributed under the MIT license:</p>
<pre>
-Copyright (c) 2006-2009 Arseny Kapoulkine
+Copyright (c) 2006-2010 Arseny Kapoulkine
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
@@ -768,7 +792,7 @@ OTHER DEALINGS IN THE SOFTWARE.
<hr>
-<p>Revised 8 November, 2009</p>
-<p><i>&copy; Copyright <a href="mailto:arseny.kapoulkine@gmail.com">Arseny Kapoulkine</a> 2006-2009. All Rights Reserved.</i></p>
+<p>Revised 7 May, 2010</p>
+<p><i>&copy; Copyright <a href="mailto:arseny.kapoulkine@gmail.com">Arseny Kapoulkine</a> 2006-2010. All Rights Reserved.</i></p>
</body>
</html>
diff --git a/src/pugiconfig.hpp b/src/pugiconfig.hpp
index b5c09ee..2466887 100644
--- a/src/pugiconfig.hpp
+++ b/src/pugiconfig.hpp
@@ -1,7 +1,7 @@
/**
* pugixml parser - version 0.6
* --------------------------------------------------------
- * Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
+ * Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://code.google.com/p/pugixml/
*
* This library is distributed under the MIT License. See notice at the end
@@ -36,7 +36,7 @@
#endif
/**
- * Copyright (c) 2006-2009 Arseny Kapoulkine
+ * Copyright (c) 2006-2010 Arseny Kapoulkine
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index 099f85e..b3f2c2c 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -1,7 +1,7 @@
/**
* pugixml parser - version 0.6
* --------------------------------------------------------
- * Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
+ * Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://code.google.com/p/pugixml/
*
* This library is distributed under the MIT License. See notice at the end
@@ -4266,7 +4266,7 @@ namespace std
#endif
/**
- * Copyright (c) 2006-2009 Arseny Kapoulkine
+ * Copyright (c) 2006-2010 Arseny Kapoulkine
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
diff --git a/src/pugixml.hpp b/src/pugixml.hpp
index b2348e8..ccc9f6f 100644
--- a/src/pugixml.hpp
+++ b/src/pugixml.hpp
@@ -1,7 +1,7 @@
/**
* pugixml parser - version 0.6
* --------------------------------------------------------
- * Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
+ * Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://code.google.com/p/pugixml/
*
* This library is distributed under the MIT License. See notice at the end
@@ -2261,7 +2261,7 @@ namespace std
#endif
/**
- * Copyright (c) 2006-2009 Arseny Kapoulkine
+ * Copyright (c) 2006-2010 Arseny Kapoulkine
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
diff --git a/src/pugixpath.cpp b/src/pugixpath.cpp
index a867995..0912ee2 100644
--- a/src/pugixpath.cpp
+++ b/src/pugixpath.cpp
@@ -1,7 +1,7 @@
/**
* pugixml parser - version 0.6
* --------------------------------------------------------
- * Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
+ * Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://code.google.com/p/pugixml/
*
* This library is distributed under the MIT License. See notice at the end
@@ -3752,7 +3752,7 @@ namespace pugi
#endif
/**
- * Copyright (c) 2006-2009 Arseny Kapoulkine
+ * Copyright (c) 2006-2010 Arseny Kapoulkine
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation