You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mu...@apache.org on 2024/02/21 11:48:36 UTC

(xalan-java) branch xalan-j_xslt3.0 updated (6cf38aaa -> 107c4834)

This is an automated email from the ASF dual-hosted git repository.

mukulg pushed a change to branch xalan-j_xslt3.0
in repository https://gitbox.apache.org/repos/asf/xalan-java.git


    from 6cf38aaa Merge pull request #182 from mukulga/xalan-j_xslt3.0_mukul
     add 63359eb6 committing implementation of xpath 3.1 functions fn:resolve-QName, fn:QName along with few new working related test cases as well. committing related modifications to xpath 3.1 'instance of' expression implementation as well.
     new 107c4834 Merge pull request #183 from mukulga/xalan-j_xslt3.0_mukul

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/org/apache/xpath/compiler/FunctionTable.java   |  16 +-
 src/org/apache/xpath/compiler/Keywords.java        |   9 +
 src/org/apache/xpath/compiler/XPathParser.java     |   3 +
 .../xpath/composite/SequenceTypeSupport.java       |   2 +
 .../apache/xpath/functions/FuncResolveQName.java   | 200 +++++++++++++++++++++
 .../apache/xpath/functions/FuncXPath31QName.java   | 114 ++++++++++++
 src/org/apache/xpath/operations/InstanceOf.java    |   5 +
 tests/fn_qname/gold/test1.out                      |   6 +
 tests/{fn_max/test4.xsl => fn_qname/test1.xsl}     |  28 +--
 tests/fn_resolve_qname/gold/test1.out              |   6 +
 .../xsl3.xsl => fn_resolve_qname/test1.xsl}        |  31 ++--
 tests/fn_resolve_qname/test1_a.xml                 |   4 +
 .../xpath3/{FnAbsTests.java => FnQNameTests.java}  |  12 +-
 .../{FnDocTests.java => FnResolveQNameTests.java}  |  10 +-
 tests/org/apache/xalan/xslt3/Xsl3TestSuite1.java   |   5 +-
 15 files changed, 410 insertions(+), 41 deletions(-)
 create mode 100644 src/org/apache/xpath/functions/FuncResolveQName.java
 create mode 100644 src/org/apache/xpath/functions/FuncXPath31QName.java
 create mode 100644 tests/fn_qname/gold/test1.out
 copy tests/{fn_max/test4.xsl => fn_qname/test1.xsl} (62%)
 create mode 100644 tests/fn_resolve_qname/gold/test1.out
 copy tests/{xml_dot_com_higher_order_functions_tests/xsl3.xsl => fn_resolve_qname/test1.xsl} (63%)
 create mode 100644 tests/fn_resolve_qname/test1_a.xml
 copy tests/org/apache/xalan/xpath3/{FnAbsTests.java => FnQNameTests.java} (87%)
 copy tests/org/apache/xalan/xpath3/{FnDocTests.java => FnResolveQNameTests.java} (86%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xalan.apache.org
For additional commands, e-mail: commits-help@xalan.apache.org


(xalan-java) 01/01: Merge pull request #183 from mukulga/xalan-j_xslt3.0_mukul

Posted by mu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mukulg pushed a commit to branch xalan-j_xslt3.0
in repository https://gitbox.apache.org/repos/asf/xalan-java.git

commit 107c4834209f37460ffcafa87dee5ebb0e2ff84b
Merge: 6cf38aaa 63359eb6
Author: mukulga <ga...@gmail.com>
AuthorDate: Wed Feb 21 17:18:31 2024 +0530

    Merge pull request #183 from mukulga/xalan-j_xslt3.0_mukul
    
    committing implementation of xpath 3.1 functions fn:resolve-QName, fn:QName along with few new working related test cases as well. committing related modifications to xpath 3.1 'instance of' expression implementation as well.

 src/org/apache/xpath/compiler/FunctionTable.java   |  16 +-
 src/org/apache/xpath/compiler/Keywords.java        |   9 +
 src/org/apache/xpath/compiler/XPathParser.java     |   3 +
 .../xpath/composite/SequenceTypeSupport.java       |   2 +
 .../apache/xpath/functions/FuncResolveQName.java   | 200 +++++++++++++++++++++
 .../apache/xpath/functions/FuncXPath31QName.java   | 114 ++++++++++++
 src/org/apache/xpath/operations/InstanceOf.java    |   5 +
 tests/fn_qname/gold/test1.out                      |   6 +
 tests/fn_qname/test1.xsl                           |  47 +++++
 tests/fn_resolve_qname/gold/test1.out              |   6 +
 tests/fn_resolve_qname/test1.xsl                   |  47 +++++
 tests/fn_resolve_qname/test1_a.xml                 |   4 +
 tests/org/apache/xalan/xpath3/FnQNameTests.java    |  60 +++++++
 .../apache/xalan/xpath3/FnResolveQNameTests.java   |  60 +++++++
 tests/org/apache/xalan/xslt3/Xsl3TestSuite1.java   |   5 +-
 15 files changed, 582 insertions(+), 2 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xalan.apache.org
For additional commands, e-mail: commits-help@xalan.apache.org