forked from FasterXML/woodstox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes in support of Issue FasterXML#175
- Loading branch information
tim
committed
Nov 6, 2023
1 parent
19abcfe
commit 67631a8
Showing
11 changed files
with
1,118 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<main:Issue175 xmlns:main="http://www.example.org/issue_175_main" | ||
xmlns:imprt="http://www.example.org/issue_175_import" | ||
main:XmlVersion="1" | ||
imprt:XmlVersion="1" > | ||
<main:Data imprt:Attrib1="Attribute #1 - Ver1" | ||
imprt:Attrib2="Attribute #2 - Ver1" > | ||
<main:Element1>Element #1 from Version 1</main:Element1> | ||
<main:Element2>12345</main:Element2> | ||
<main:Element3 imprt:Attrib3="true">Element #2 from Version 1</main:Element3> | ||
<main:Element4>ENUM4</main:Element4> | ||
</main:Data> | ||
</main:Issue175> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<main:Issue175 xmlns:main="http://www.example.org/issue_175_main" | ||
xmlns:imprt="http://www.example.org/issue_175_import" | ||
main:XmlVersion="2" | ||
imprt:XmlVersion="1" > | ||
<main:Data imprt:Attrib1="Attribute #1 - Ver1" | ||
imprt:Attrib2="Attribute #2 - Ver1" > | ||
<main:Element1>Element #1 from Version 2</main:Element1> | ||
<main:Element2>12345</main:Element2> | ||
<main:Element3 imprt:Attrib3="false">Element #2 from Version 2</main:Element3> | ||
<main:Element4>ENUM1</main:Element4> | ||
<main:Element5>Element #2 from Version 2</main:Element5> | ||
</main:Data> | ||
</main:Issue175> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<main:Issue175 xmlns:main="http://www.example.org/issue_175_main" | ||
xmlns:imprt="http://www.example.org/issue_175_import" | ||
main:XmlVersion="3" | ||
imprt:XmlVersion="2" > | ||
<main:Data imprt:Attrib1="Attribute #1 - Ver1" | ||
imprt:Attrib2="Attribute #2 - Ver1" | ||
imprt:Attrib4="false"> | ||
<main:Element1>Element #1 from Main Version 1</main:Element1> | ||
<main:Element2>12345</main:Element2> | ||
<main:Element3 imprt:Attrib3="true">Element #2 from Main Version 3</main:Element3> | ||
<main:Element4 imprt:Attrib5="New attrib Import Ver 2">ENUM2</main:Element4> | ||
<main:Element5>Element #5 from Main Version 3</main:Element5> | ||
</main:Data> | ||
</main:Issue175> |
Oops, something went wrong.