From 18055b5bfa47ba7a53b5e893fbc3f5efdb1bf379 Mon Sep 17 00:00:00 2001
From: "arseny.kapoulkine"
class
xpath_query
explicit
xpath_query::ctor(const char_t*
+
explicit
xpath_query(const char_t*
query);
diff --git a/docs/manual/changes.html b/docs/manual/changes.html
index 48e8325..38e0cda 100644
--- a/docs/manual/changes.html
+++ b/docs/manual/changes.html
@@ -30,7 +30,6 @@
Changelog
-
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 @@
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 @@
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.
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"
.
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.
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.
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.