diff options
Diffstat (limited to 'doc/xml.doc')
-rw-r--r-- | doc/xml.doc | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/doc/xml.doc b/doc/xml.doc index 733f2b394..18985f29c 100644 --- a/doc/xml.doc +++ b/doc/xml.doc @@ -4,7 +4,7 @@ ** ** Copyright (C) 2005-2008 Trolltech ASA. All rights reserved. ** -** This file is part of the Qt GUI Toolkit. +** This file is part of the TQt GUI Toolkit. ** ** This file may be used under the terms of the GNU General ** Public License versions 2.0 or 3.0 as published by the Free @@ -13,7 +13,7 @@ ** Alternatively you may (at your option) use any later version ** of the GNU General Public License if such license has been ** publicly approved by Trolltech ASA (or its successors, if any) -** and the KDE Free Qt Foundation. +** and the KDE Free TQt Foundation. ** ** Please review the following information to ensure GNU General ** Public Licensing requirements will be met: @@ -41,7 +41,7 @@ \title XML Module \if defined(commercial) -This module is part of the \link commercialeditions.html Qt Enterprise Edition\endlink. +This module is part of the \link commercialeditions.html TQt Enterprise Edition\endlink. \endif \tableofcontents @@ -54,24 +54,24 @@ The XML module provides a well-formed XML parser using the SAX2 2 (Document Object Model). SAX is an event-based standard interface for XML parsers. -The Qt interface follows the design of the SAX2 Java implementation. -Its naming scheme was adapted to fit the Qt naming conventions. +The TQt interface follows the design of the SAX2 Java implementation. +Its naming scheme was adapted to fit the TQt naming conventions. Details on SAX2 can be found at \link http://www.saxproject.org http://www.saxproject.org \endlink. Support for SAX2 filters and the reader factory are under -development. The Qt implementation does not include the SAX1 +development. The TQt implementation does not include the SAX1 compatibility classes present in the Java interface. For an introduction to Qt's SAX2 classes see -"\link #sax2 The Qt SAX2 classes \endlink". +"\link #sax2 The TQt SAX2 classes \endlink". DOM Level 2 is a W3C Recommendation for XML interfaces that maps the constituents of an XML document to a tree structure. Details and the specification of DOM Level 2 can be found at \link http://www.w3.org/DOM/ http://www.w3.org/DOM/ \endlink. -More information about the DOM classes in Qt is provided in the -\link #dom Qt DOM classes \endlink. +More information about the DOM classes in TQt is provided in the +\link #dom TQt DOM classes \endlink. Qt provides the following XML related classes: @@ -143,7 +143,7 @@ Qt provides the following XML related classes: \endtable \target sax2 -\section1 The Qt SAX2 classes +\section1 The TQt SAX2 classes \target sax2Intro \section2 Introduction to SAX2 @@ -176,8 +176,8 @@ and discarded serially. The \link #dom DOM interface this takes more memory, but makes it easier to manipulate the document's structure.. -The Qt XML module provides an abstract class, \l QXmlReader, that -defines the interface for potential SAX2 readers. Qt includes a reader +The TQt XML module provides an abstract class, \l QXmlReader, that +defines the interface for potential SAX2 readers. TQt includes a reader implementation, \l QXmlSimpleReader, that is easy to adapt through subclassing. @@ -233,7 +233,7 @@ declarations and prefixes along with the local name of a tag". Like every other feature this has a unique name represented by a URI: it is called \e http://xml.org/sax/features/namespace-prefixes. -The Qt SAX2 implementation can report whether the reader has +The TQt SAX2 implementation can report whether the reader has particular functionality using the \l QXmlReader::hasFeature() function. Available features can be tested with QXmlReader::feature(), and switched on or off using \l QXmlReader::setFeature(). @@ -309,7 +309,7 @@ fnord being the namespace prefix and \e http://trolltech.com/fnord/ as the namespace URI. When \e http://xml.org/sax/features/namespaces is FALSE none of them are reported. -In the current implementation the Qt XML classes follow the definition +In the current implementation the TQt XML classes follow the definition that the prefix \e xmlns itself isn't associated with any namespace at all (see \link http://www.w3.org/TR/1999/REC-xml-names-19990114/#ns-using http://www.w3.org/TR/1999/REC-xml-names-19990114/#ns-using \endlink). @@ -380,12 +380,12 @@ QXmlReader::hasProperty(). \section2 Further reading More information about XML (e.g. \link xml.html#namespaces namespaces \endlink) -can be found in the \link xml.html introduction to the Qt XML module. \endlink +can be found in the \link xml.html introduction to the TQt XML module. \endlink \target dom -\section1 The Qt DOM classes +\section1 The TQt DOM classes \target domIntro \section2 Introduction to DOM @@ -473,9 +473,9 @@ To get started please refer to the \l QDomDocument documentation. \target namespaces \section1 An introduction to namespaces -Parts of the Qt XML module documentation assume that you are familiar +Parts of the TQt XML module documentation assume that you are familiar with XML namespaces. Here we present a brief introduction; skip to -\link #namespacesConventions Qt XML documentation conventions \endlink +\link #namespacesConventions TQt XML documentation conventions \endlink if you already know this material. Namespaces are a concept introduced into XML to allow a more modular @@ -598,7 +598,7 @@ all, not even to the default namespace; prefix \e title instead of applying the default \e xmlns namespace. \endlist -With the Qt XML classes elements and attributes can be accessed in two +With the TQt XML classes elements and attributes can be accessed in two ways: either by refering to their qualified names consisting of the namespace prefix and the "real" name (or \e local name) or by the combination of local name and namespace URI. @@ -608,7 +608,7 @@ More information on XML namespaces can be found at \target namespacesConventions -\section2 Conventions used in Qt XML documentation +\section2 Conventions used in TQt XML documentation The following terms are used to distinguish the parts of names within the context of namespaces: |