diff options
author | Sze Howe Koh <szehowe.koh@gmail.com> | 2013-01-25 23:23:05 +0800 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-01-25 17:25:15 +0100 |
commit | 69211887e90304e44894475881c5c3aad8bd6107 (patch) | |
tree | 16c8cb3c5ff63d85a0bab407a8a709c01780a99c /tests/auto/xmlpatterns | |
parent | c3c83eb164c3932a311ad47ef0e1991d0bdc6c0e (diff) | |
download | qtxmlpatterns-69211887e90304e44894475881c5c3aad8bd6107.tar.gz |
Doc: Fix module name format
Follow the conventions at
http://qt-project.org/wiki/Spelling_Module_Names_in_Qt_Documentation
Change-Id: I1a8b3cafa9d1b9a6fdde835ae93f5f87b4d3970c
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'tests/auto/xmlpatterns')
-rw-r--r-- | tests/auto/xmlpatterns/XSLTTODO | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/xmlpatterns/XSLTTODO b/tests/auto/xmlpatterns/XSLTTODO index 5a20441..a61e343 100644 --- a/tests/auto/xmlpatterns/XSLTTODO +++ b/tests/auto/xmlpatterns/XSLTTODO @@ -578,7 +578,7 @@ John Snelson of Oracle Berkeley DB XML & XQilla writes in private mail: What is he referring to? -If one spends some time on fancy diagrams, QtXmlPatterns[LINK]'s, the XQuery +If one spends some time on fancy diagrams, Qt XML Patterns[LINK]'s, the XQuery engine that shipped in Qt 4.4, architecture looks like this: @@ -590,7 +590,7 @@ and the whole approach to this is modifying the existing codebase as follows: -Put differently, when QtXmlPatterns is dealing with XSL-T stylesheets, it +Put differently, when Qt XML Patterns is dealing with XSL-T stylesheets, it replaces the XQuery tokenizer with a tokenizer which translates the stylesheet into XQuery tokens, that is consumed by the existing XQuery parser, extended with both grammar non-terminals and tokens to accomodate the @@ -656,7 +656,7 @@ focus(which for doesn't, but paths do), but can do so over atomic values and unconditionally without sorting the result by document order(which paths can't/doesn't, but for do). For implementations that normalize paths into for loops as the formal semantics do, the approach is straight forward. In -QtXmlPatterns' case, a synthetic token is queued which signals to create +Qt XML Patterns' case, a synthetic token is queued which signals to create a "relaxed" path expression which skips halting on atomic values in its operands(XPTY0019) and also skips node sorting. @@ -667,7 +667,7 @@ could have been used, but in anycase the IR yielded is the same, and that computed constructors happen to use less tokens. A particular case is xsl:namespace, an instruction which doesn't have any -corresponding expression in XQuery. In the case of QtXmlPatterns, the code +corresponding expression in XQuery. In the case of Qt XML Patterns, the code obvious already have a notion of "create this namespace on this element", and an AST node was trivially added for fetching the namespace components computationally. However, the introduction of xsl:namespace in an XQuery @@ -702,7 +702,7 @@ but also because more decisions can be taken at runtime through all attribute value templates. xsl:sort is surely a good example of this with its AVTs for language, order, collation, stability and what not. XQuery's order by stands -in strong contrast, which has these coded in the grammar. In QtXmlPatterns' +in strong contrast, which has these coded in the grammar. In Qt XML Patterns' case, the AST node corresponding to order by was generalized to take things such as stability and order from operands. This is paid by the code paths in XQuery since for them are constants generated and inserted as operands even @@ -1038,7 +1038,7 @@ Have top-level xml:space, ensure whitespace as child of xsl:stylesheet is ignore </xsl:stylesheet> -Compat mode, Saxon & QtXmlPatterns fails: +Compat mode, Saxon & Qt XML Patterns fails: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> |