From 18055b5bfa47ba7a53b5e893fbc3f5efdb1bf379 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Thu, 15 Jul 2010 17:02:56 +0000 Subject: docs: Regenerated documentation git-svn-id: http://pugixml.googlecode.com/svn/trunk@605 99668b35-9821-0410-8761-19e4c4f06640 --- docs/manual.html | 2 +- docs/manual/apiref.html | 2 +- docs/manual/changes.html | 9 --------- docs/manual/dom.html | 14 +++++++------- docs/manual/install.html | 9 ++++----- docs/manual/toc.html | 30 +++++++++++++++++++++++++----- docs/quickstart.html | 21 ++++++++++++++------- 7 files changed, 52 insertions(+), 35 deletions(-) diff --git a/docs/manual.html b/docs/manual.html index 940b1cc..d895a66 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -171,7 +171,7 @@ - +

Last revised: July 11, 2010 at 16:10:06 GMT

Last revised: July 15, 2010 at 17:02:03 GMT


diff --git a/docs/manual/apiref.html b/docs/manual/apiref.html index 4648697..24120ad 100644 --- a/docs/manual/apiref.html +++ b/docs/manual/apiref.html @@ -964,7 +964,7 @@ class xpath_query
- 1.07.2010 - version 0.9
@@ -152,7 +151,6 @@
- 8.11.2009 - version 0.5
@@ -264,7 +262,6 @@
- 17.09.2009 - version 0.42
@@ -310,7 +307,6 @@
- 8.02.2009 - version 0.41
@@ -325,7 +321,6 @@
- 18.01.2009 - version 0.4
@@ -404,7 +399,6 @@
- 31.10.2007 - version 0.34
@@ -443,7 +437,6 @@
- 21.02.2007 - version 0.3
@@ -505,7 +498,6 @@
- 6.11.2006 - version 0.2
@@ -540,7 +532,6 @@
- 15.07.2006 - version 0.1
diff --git a/docs/manual/dom.html b/docs/manual/dom.html index e4f1579..2d65070 100644 --- a/docs/manual/dom.html +++ b/docs/manual/dom.html @@ -71,7 +71,7 @@

  • - Document node ( node_document) - this + Document node (node_document) - this is the root of the tree, which consists of several child nodes. This node corresponds to xml_document class; note that xml_document @@ -83,7 +83,7 @@
  • - Element/tag node ( node_element) - this + Element/tag node (node_element) - this is the most common type of node, which represents XML elements. Element nodes have a name, a collection of attributes and a collection of child nodes (both of which may be empty). The attribute is a simple name/value @@ -100,7 +100,7 @@ and does not have any attributes or child nodes.

  • - Plain character data nodes ( node_pcdata) + Plain character data nodes (node_pcdata) represent plain text in XML. PCDATA nodes have a value, but do not have name or children/attributes. Note that plain character data is not a part of the element node but instead has its own node; for example, an @@ -114,7 +114,7 @@ has three children, two of which are PCDATA nodes with values "text1" and "text2".

  • - Character data nodes ( node_cdata) represent + Character data nodes (node_cdata) represent text in XML that is quoted in a special way. CDATA nodes do not differ from PCDATA nodes except in XML representation - the above text example looks like this with CDATA: @@ -127,7 +127,7 @@ since it is used to determine the end of node contents.

  • - Comment nodes ( node_comment) represent + Comment nodes (node_comment) represent comments in XML. Comment nodes have a value, but do not have name or children/attributes. The example XML representation of comment node is as follows: @@ -142,7 +142,7 @@ flag.

  • - Processing instruction node ( node_pi) represent + Processing instruction node (node_pi) represent processing instructions (PI) in XML. PI nodes have a name and an optional value, but do not have children/attributes. The example XML representation of PI node is as follows: @@ -157,7 +157,7 @@ parse_pi flag.

  • - Declaration node ( node_declaration) + Declaration node (node_declaration) represents document declarations in XML. Declaration nodes have a name ("xml") and an optional collection of attributes, but does not have value or children. diff --git a/docs/manual/install.html b/docs/manual/install.html index 0c3e94e..d6d0327 100644 --- a/docs/manual/install.html +++ b/docs/manual/install.html @@ -149,8 +149,8 @@ The easiest way to build pugixml is to compile two source files, pugixml.cpp and pugixpath.cpp, along with the existing library/executable. This process depends on the method of building your application; for example, if you're - using Microsoft Visual Studio[1], Apple Xcode, Code::Blocks or any other IDE, just add pugixml.cpp and - pugixpath.cpp to one of your projects. + using Microsoft Visual Studio[1], Apple Xcode, Code::Blocks or any other IDE, + just add pugixml.cpp and pugixpath.cpp to one of your projects.

    If you're using Microsoft Visual Studio and the project has precompiled @@ -414,9 +414,8 @@



-

[1] - All trademarks used are properties of their respective owners. -

+

[1] All trademarks used are properties + of their respective owners.

diff --git a/docs/manual/toc.html b/docs/manual/toc.html index c36a084..06288a2 100644 --- a/docs/manual/toc.html +++ b/docs/manual/toc.html @@ -29,17 +29,31 @@ Table of Contents
-
Overview
+
Overview
-
Introduction
-
Feedback
-
Acknowledgments
-
License
+
Introduction
+
Feedback
+
Acknowledgments
+
License
Installation
Getting pugixml
+
+
Source distributions
+
Subversion repository
+
Building pugixml
+
+
Building pugixml as + a part of another static library/executable
+
Building pugixml as + a standalone static library
+
Building pugixml as + a standalone shared library
+
Additional configuration + options
+
Portability
Document object model
@@ -50,6 +64,12 @@
Thread-safety guarantees
Exception guarantees
Memory management
+
+
Custom memory allocation/deallocation + functions
+
Document memory management + internals
+
Loading document
diff --git a/docs/quickstart.html b/docs/quickstart.html index 4fc4524..966dfc3 100644 --- a/docs/quickstart.html +++ b/docs/quickstart.html @@ -7,7 +7,8 @@ -
+
+
@@ -96,10 +97,10 @@ The easiest way to build pugixml is to compile two source files, pugixml.cpp and pugixpath.cpp, along with the existing library/executable. This process depends on the method of building your application; for example, if you're using - Microsoft Visual Studio[1], Apple Xcode, Code::Blocks or any other IDE, just add pugixml.cpp and - pugixpath.cpp to one of your projects. There are other building methods available, - including building pugixml as a standalone static/shared library; read the - manual for further information. + Microsoft Visual Studio[1], Apple Xcode, Code::Blocks or any other IDE, just add + pugixml.cpp and pugixpath.cpp to one of your projects. There are other building + methods available, including building pugixml as a standalone static/shared + library; read the manual for further information.

@@ -819,9 +820,15 @@

-
+
+
+

+

[1] All trademarks used are properties of their + respective owners.

+
+
- +

Last revised: July 11, 2010 at 16:13:56 GMT

Last revised: July 15, 2010 at 17:02:03 GMT

-- cgit v1.2.3