summaryrefslogtreecommitdiff
path: root/doc/src/snippets/code
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2012-11-22 16:35:24 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-23 13:16:20 +0100
commit051aeb291646745559c47da160193bdcbd34ef2b (patch)
tree50040152b4dfe22238ef0446c9e57ff1b345bdd4 /doc/src/snippets/code
parentb34af22fcc7e9321e5a7943763cd68a1d51a36d5 (diff)
downloadqtxmlpatterns-051aeb291646745559c47da160193bdcbd34ef2b.tar.gz
Doc: Modularized Qt XML Patterns documentation.
-moved snippets, images, documentation to src/xmlpatterns -fixed \snippet tag -ported module information from qtdoc repository -enabled "make docs" for the module -set up qdocconf file and .index file -updated tests/auto/patternistexamples to point to the new snippet locations Change-Id: Ifd10733c277c6dbacac42898c8e7bacd00d23f27 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'doc/src/snippets/code')
-rw-r--r--doc/src/snippets/code/doc_src_qtxmlpatterns.qdoc306
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qabstracturiresolver.cpp43
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlforwarditerator.cpp43
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp62
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp47
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp59
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp48
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp48
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp198
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp57
-rw-r--r--doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp47
11 files changed, 0 insertions, 958 deletions
diff --git a/doc/src/snippets/code/doc_src_qtxmlpatterns.qdoc b/doc/src/snippets/code/doc_src_qtxmlpatterns.qdoc
deleted file mode 100644
index ef3702d..0000000
--- a/doc/src/snippets/code/doc_src_qtxmlpatterns.qdoc
+++ /dev/null
@@ -1,306 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-
-void wrapInFunction()
-{
-
-//! [2]
-xmlpatterns myQuery.xq
-//! [2]
-
-//! [3]
-declare namespace c = "http://cookbook/namespace";
-doc('cookbook.xml')//c:recipe/c:title
-//! [3]
-
-//! [4]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')//recipe/title
-//! [4]
-
-//! [5]
-<title xmlns="http://cookbook/namespace">Quick and Easy Mushroom Soup</title>
-<title xmlns="http://cookbook/namespace">Cheese on Toast</title>
-<title xmlns="http://cookbook/namespace">Hard-Boiled Eggs</title>
-//! [5]
-
-//! [6]
-xmlpatterns file.xq
-//! [6]
-
-//! [7]
-doc('cookbook.xml')//@xml:*
-//! [7]
-
-//! [8]
-doc('cookbook.xml')//@*:name
-//! [8]
-
-//! [9]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')/cookbook/@*
-//! [9]
-
-//! [10]
-declare default element namespace "http://cookbook/namespace";
-doc("cookbook.xml")/cookbook/recipe[title = "Hard-Boiled Eggs"]
-//! [10]
-
-//! [11]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')//method[string-length(.) = 0]
-//! [11]
-
-//! [12]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')//method[string-length() = 0]
-//! [12]
-
-//! [13]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')/cookbook/recipe[2]
-//! [13]
-
-//! [14]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')/cookbook/recipe[position() = 2]
-//! [14]
-
-//! [15]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')/cookbook/recipe[position() > 1]
-//! [15]
-
-//! [16]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')/cookbook/recipe[last()]
-//! [16]
-
-//! [17]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')/cookbook/recipe[last() - 1]
-//! [17]
-
-//! [18]
-doc('cookbook.xml')//recipe
-//! [18]
-
-//! [19]
-doc('cookbook.xml')//recipe/title
-//! [19]
-
-//! [20]
-<recipe/>
-//! [20]
-
-//! [21]
- <html xmlns="http://www.w3.org/1999/xhtml/"
- xml:id="{doc("other.html")/html/@xml:id}"/>
-//! [21]
-
-//! [22]
-doc('cookbook.xml')/descendant-or-self::element(recipe)/child::element(title)
-//! [22]
-
-//! [23]
-<cookbook>
-//! [23]
-
-//! [24]
-<cookbook xmlns="http://cookbook/namespace">
-//! [24]
-
-//! [25]
-for $i in doc("cookbook.xml")//@xml:*
-return <p>{$i}</p>
-//! [25]
-
-//! [26]
-for $i in doc("cookbook.xml")//@*:name
-return <p>{$i}</p>
-//! [26]
-
-//! [27]
-declare default element namespace "http://cookbook/namespace";
-for $i in doc("cookbook.xml")/cookbook/@*
-return <p>{$i}</p>
-//! [27]
-
-//! [28]
-<p xml:id="MushroomSoup"/>
-<p xml:id="CheeseOnToast"/>
-<p xml:id="HardBoiledEggs"/>
-//! [28]
-
-//! [29]
-<p name="Fresh mushrooms"/>
-<p name="Garlic"/>
-<p name="Olive oil"/>
-<p name="Milk"/>
-<p name="Water"/>
-<p name="Cream"/>
-<p name="Vegetable soup cube"/>
-<p name="Ground black pepper"/>
-<p name="Dried parsley"/>
-<p name="Bread"/>
-<p name="Cheese"/>
-<p name="Eggs"/>
-//! [29]
-
-//! [30]
-<p xmlns="http://cookbook/namespace" count="3"/>
-//! [30]
-
-//! [31]
-<method xmlns="http://cookbook/namespace"/>
-//! [31]
-
-//! [32]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')//recipe[string-length(method) = 0]
-//! [32]
-
-//! [33]
-<recipe xmlns="http://cookbook/namespace" xml:id="HardBoiledEggs">
- <title>Hard-Boiled Eggs</title>
- <ingredient name="Eggs" quantity="3" unit="eggs"/>
- <time quantity="3" unit="minutes"/>
- <method/>
-</recipe>
-//! [33]
-
-//! [34]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')/cookbook/recipe[method[empty(step)]]
-//! [34]
-
-//! [35]
-declare default element namespace "http://cookbook/namespace";
-doc('cookbook.xml')/cookbook/recipe[not(normalize-space(method))]
-//! [35]
-
-//! [36]
-<e>{sum((1, 2, 3))}</e>
-//! [36]
-
-//! [37]
-<e>6</e>
-//! [37]
-
-//![38]
-declare variable $insertion := "example";
-<p class="important {$insertion} obsolete"/>
-//![38]
-
-//! [39]
-<p class="important example obsolete"/>
-//! [39]
-
-//! [40]
-declare default element namespace "http://cookbook/namespace";
-let $docURI := 'cookbook.xml'
-return if(doc-available($docURI))
- then doc($docURI)//recipe/<oppskrift>{./node()}</oppskrift>
- else <oppskrift>Failed to load {$docURI}</oppskrift>
-//! [40]
-
-//! [41]
-<span>1</span>
-<span>3</span>
-<span>5</span>
-<span>7</span>
-<span>9</span>
-<span>b</span>
-<span>d</span>
-<span>f</span>
-//! [41]
-
-//! [42]
-<span>1</span>
-//! [42]
-
-//! [43]
-let $doc := doc('doc.txt')
-return $doc/doc/p[1]/span[1]
-//! [43]
-
-//! [44]
-for $a in doc('doc.txt')/doc/p/span[1]
-return $a
-//! [44]
-
-//! [45]
-doc('doc.txt')/doc/p/span[1]
-//! [45]
-
-//! [46]
-doc('doc.txt')//p/<p>{span/node()}</p>
-//! [46]
-
-//! [47]
-<p>78</p>
-<p>9a</p>
-<p>12</p>
-<p>bc</p>
-<p>de</p>
-<p>34</p>
-<p>56</p>
-<p>f0</p>
-//! [47]
-
-//! [48]
-for $a in doc('doc.txt')//p
- return <p>{$a/span/node()}</p>
-//! [48]
-
-//! [49]
-<p>12</p>
-<p>34</p>
-<p>56</p>
-<p>78</p>
-<p>9a</p>
-<p>bc</p>
-<p>de</p>
-<p>f0</p>
-//! [49]
-
-}
-
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qabstracturiresolver.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qabstracturiresolver.cpp
deleted file mode 100644
index 8d62064..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qabstracturiresolver.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
-return baseURI.resolved(relative);
-//! [0]
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlforwarditerator.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlforwarditerator.cpp
deleted file mode 100644
index 554ca42..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlforwarditerator.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
-OutputType inputToOutputItem(const InputType &inputType) const;
-//! [0]
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp
deleted file mode 100644
index f7b5680..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp
+++ /dev/null
@@ -1,62 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
-myInstance = QXmlNodeModelIndex();
-//! [0]
-
-//! [1]
-QFile queryFile(argv[1]);
-QFile chemistryData(argv[2]);
-QString moleculeName = argv[3];
-
-QXmlQuery query;
-query.setQuery(&queryFile, QUrl::fromLocalFile(queryFile.fileName()));
-
-ChemistryNodeModel myNodeModel(query.namePool(), chemistryData);
-QXmlNodeModelIndex startNode = myNodeModel.nodeFor(moleculeName);
-query.bindVariable("queryRoot", startNode);
-
-QFile out;
-out.open(stdout, QIODevice::WriteOnly);
-
-QXmlSerializer serializer(query, &out);
-query.evaluateTo(&serializer);
-//! [1]
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp
deleted file mode 100644
index 906b047..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
-QXmlQuery query;
-query.setQuery("doc('index.html')/html/body/p[1]");
-
-QXmlSerializer serializer(query, myOutputDevice);
-query.evaluateTo(&serializer);
-//! [0]
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp
deleted file mode 100644
index 2b7d470..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
-QXmlNodeModelIndex MyTreeModel::nextFromSimpleAxis(SimpleAxis axis, const QXmlNodeModelIndex &ni) const
-{
- // Convert the QXmlNodeModelIndex to a value that is specific to what we represent.
- const MyValue value = toMyValue(ni);
-
- switch(axis)
- {
- case Parent:
- return toNodeIndex(value.parent());
- case FirstChild:
- case PreviousSibling:
- case NextSibling:
- // and so on
- ;
- }
- return QXmlNodeModelIndex();
-}
-//! [0]
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp
deleted file mode 100644
index ba801ba..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
-QXmlQuery query;
-query.setQuery("doc('index.html')/html/body/p[1]");
-
-QXmlFormatter formatter(query, myOutputDevice);
-formatter.setIndentationDepth(2);
-query.evaluateTo(&formatter);
-//! [0]
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp
deleted file mode 100644
index 9102b6b..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-// Fills the bits from begin to end with 1s and leaves the rest as 0.
-
-template<typename IntegralT>
-inline IntegralT bitmask(IntegralT begin, IntegralT end)
-{
- IntegralT filled_bits = (1 << (end - begin + 1)) - 1;
- return filled_bits << begin;
-}
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp
deleted file mode 100644
index e51582d..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp
+++ /dev/null
@@ -1,198 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
- QXmlNamePool namePool(query.namePool());
- query.bindVariable(QXmlName(namePool, localName), value);
-//! [0]
-
-
-{
-//! [1]
- QByteArray myDocument;
- QBuffer buffer(&myDocument); // This is a QIODevice.
- buffer.open(QIODevice::ReadOnly);
- QXmlQuery query;
- query.bindVariable("myDocument", &buffer);
- query.setQuery("doc($myDocument)");
-//! [1]
-}
-
-
-{
- QIODevice *device = 0;
-//! [2]
- QXmlNamePool namePool(query.namePool());
- query.bindVariable(QXmlName(namePool, localName), device);
-//! [2]
-
-}
-
-{
- QIODevice *myOutputDevice = 0;
-//! [3]
- QFile xq("myquery.xq");
-
- QXmlQuery query;
- query.setQuery(&xq, QUrl::fromLocalFile(xq.fileName()));
-
- QXmlSerializer serializer(query, myOutputDevice);
- query.evaluateTo(&serializer);
-//! [3]
-}
-
-{
- QIODevice *myOutputDevice = 0;
-//! [4]
- QFile xq("myquery.xq");
- QString fileName("the filename");
- QString publisherName("the publisher");
- qlonglong year = 1234;
-
- QXmlQuery query;
-
- query.bindVariable("file", QVariant(fileName));
- query.bindVariable("publisher", QVariant(publisherName));
- query.bindVariable("year", QVariant(year));
-
- query.setQuery(&xq, QUrl::fromLocalFile(xq.fileName()));
-
- QXmlSerializer serializer(query, myOutputDevice);
- query.evaluateTo(&serializer);
-//! [4]
-}
-
-{
-//! [5]
- QFile xq("myquery.xq");
- QString fileName("the filename");
- QString publisherName("the publisher");
- qlonglong year = 1234;
-
- QXmlQuery query;
-
- query.bindVariable("file", QVariant(fileName));
- query.bindVariable("publisher", QVariant(publisherName));
- query.bindVariable("year", QVariant(year));
-
- query.setQuery(&xq, QUrl::fromLocalFile(xq.fileName()));
-
- QXmlResultItems result;
- query.evaluateTo(&result);
- QXmlItem item(result.next());
- while (!item.isNull()) {
- if (item.isAtomicValue()) {
- QVariant v = item.toAtomicValue();
- switch (v.type()) {
- case QVariant::LongLong:
- // xs:integer
- break;
- case QVariant::String:
- // xs:string
- break;
- default:
- // error
- break;
- }
- }
- else if (item.isNode()) {
-#ifdef qdoc
- QXmlNodeModelIndex i = item.toNodeModelIndex();
- // process node
-#endif // qdoc
- }
- item = result.next();
- }
-//! [5]
-}
-
-{
-//! [6]
- QFile xq("myquery.xq");
-
- QXmlQuery query;
- query.setQuery(&xq, QUrl::fromLocalFile(xq.fileName()));
-
- QXmlResultItems result;
- query.evaluateTo(&result);
- QXmlItem item(result.next());
- while (!item.isNull()) {
- if (item.isAtomicValue()) {
- QVariant v = item.toAtomicValue();
- switch (v.type()) {
- case QVariant::LongLong:
- // xs:integer
- break;
- case QVariant::String:
- // xs:string
- break;
- default:
- if (v.userType() == qMetaTypeId<QXmlName>()) {
-#ifdef qdoc
- QXmlName n = qvariant_cast<QXmlName>(v);
- // process QXmlName n...
-#endif // qdoc
- }
- else {
- // error
- }
- break;
- }
- }
- else if (item.isNode()) {
-#ifdef qdoc
- QXmlNodeModelIndex i = item.toNodeModelIndex();
- // process node
-#endif // qdoc
- }
- item = result.next();
- }
-//! [6]
-}
-
-{
- QIODevice *out = 0;
-//! [7]
- QXmlQuery query(QXmlQuery::XSLT20);
- query.setFocus(QUrl("myInput.xml"));
- query.setQuery(QUrl("myStylesheet.xsl"));
- query.evaluateTo(out);
-//! [7]
-}
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp
deleted file mode 100644
index d17627a..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp
+++ /dev/null
@@ -1,57 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
-QXmlQuery query;
-query.setQuery("<e/>, 1, 'two'");
-QXmlResultItems result;
-
-if (query.isValid()) {
- query.evaluateTo(&result);
- QXmlItem item(result.next());
- while (!item.isNull()) {
- // use item
- item = result.next();
- }
- if (result.hasError()) {
- /* Runtime error! */
- }
-}
-//! [0]
diff --git a/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp b/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp
deleted file mode 100644
index 906b047..0000000
--- a/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
-QXmlQuery query;
-query.setQuery("doc('index.html')/html/body/p[1]");
-
-QXmlSerializer serializer(query, myOutputDevice);
-query.evaluateTo(&serializer);
-//! [0]