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

paulk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


    from 848bf7a135 GROOVY-11924: Provide a minimal declarative http client for 
the new http builder module
     new 59a9b97d67 GROOVY-7633: Add constructor with Map for SAXOptions to 
XmlSlurper
     new 38fc020f6c GROOVY-7633: Add constructor with Map for SAXOptions to 
XmlSlurper (align XmlParser behavior)
     new 06c645979f GROOVY-7571: XmlUtil should allow user to specify a 
character encoding when serializing
     new 90863c0946 minor refactor: XML Tests to junit5
     new cd7c7cb630 minor refactor: junit5 tests can have slightly cleaner names
     new e6e582aaed minor refactor: remove checkstyle warnings

The 6 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/main/java/groovy/xml/MarkupBuilder.java    |  10 ++
 .../src/main/java/groovy/xml/XmlParser.java        | 119 +++++++++++++---
 .../src/main/java/groovy/xml/XmlSlurper.java       | 150 ++++++++++++++++---
 .../src/main/java/groovy/xml/XmlUtil.java          | 158 ++++++++++++++++++++-
 .../org/apache/groovy/xml/tools/DomToGroovy.java   |   2 +
 .../groovy-xml/src/spec/doc/xml-userguide.adoc     |  57 ++++++++
 .../groovy-xml/src/spec/test/DOMBuilderTest.groovy |   5 +-
 .../groovy-xml/src/spec/test/SaxBuilderTest.groovy |   5 +-
 .../src/spec/test/StaxBuilderTest.groovy           |   8 +-
 .../src/spec/test/UserGuideDOMCategoryTest.groovy  |   5 +-
 .../spec/test/UserGuideMarkupBuilderTest.groovy    |  12 +-
 .../UserGuideStreamingMarkupBuilderTest.groovy     |   6 +-
 .../src/spec/test/UserGuideXmlParserTest.groovy    |  18 ++-
 .../src/spec/test/UserGuideXmlSlurperTest.groovy   |  23 ++-
 .../src/spec/test/UserGuideXmlUtilTest.groovy      |  25 +++-
 .../src/test/groovy/groovy/xml/DOMTest.groovy      |   4 +-
 .../test/groovy/groovy/xml/FactorySupportTest.java |  17 ++-
 .../groovy/groovy/xml/MarkupWithWriterTest.groovy  |   4 +-
 .../groovy/xml/NamespaceNodeGPathTest.groovy       |   2 +-
 .../groovy/groovy/xml/NamespaceNodeTest.groovy     |   8 +-
 .../groovy/groovy/xml/NavigationXmlTest.groovy     |   6 +-
 .../src/test/groovy/groovy/xml/SAXTest.groovy      |   4 +-
 .../groovy/xml/SafeNumberXmlParserTest.groovy      |   2 +-
 .../groovy/xml/SafeNumberXmlSlurperTest.groovy     |   2 +-
 .../test/groovy/groovy/xml/StaxBuilderTest.groovy  |   4 +-
 .../groovy/xml/StreamingSAXBuilderTest.groovy      |   6 +-
 .../groovy/xml/UseMarkupWithWriterScript.groovy    |   2 +-
 .../test/groovy/groovy/xml/VerboseDOMTest.groovy   |   4 +-
 .../groovy/groovy/xml/XmlNodePrinterTest.groovy    |  34 ++---
 .../groovy/groovy/xml/XmlParserFactoryTest.groovy  |   2 +-
 .../test/groovy/groovy/xml/XmlParserTest.groovy    |  58 +++++---
 .../groovy/groovy/xml/XmlSlurperFactoryTest.groovy |   2 +-
 .../test/groovy/groovy/xml/XmlSlurperTest.groovy   |  62 +++++---
 .../src/test/groovy/groovy/xml/XmlUtilTest.groovy  |   8 +-
 .../groovy/xml/benchmark/BuilderPerfTest.groovy    |   2 +-
 .../groovy/groovy/xml/bugs/Groovy249_Bug.groovy    |   4 +-
 .../groovy/groovy/xml/bugs/Groovy593_Bug.groovy    |   2 +-
 .../groovy/groovy/xml/bugs/Groovy_2473Bug.groovy   |   2 +-
 .../groovy/groovy/xml/bugs/MarkupInScriptBug.java  |   2 +-
 .../src/test/groovy/groovy/xml/bugs/SeansBug.java  |   4 +-
 .../groovy/groovy/xml/bugs/StaticMarkupBug.groovy  |   2 +-
 .../groovy/groovy/xml/bugs/TedsClosureBug.groovy   |   2 +-
 .../groovy/groovy/xml/dom/DOMCategoryTest.groovy   |  28 ++--
 .../src/test/groovy/groovy/xml/dom/DOMTest.groovy  |  14 +-
 .../groovy/groovy/xml/dom/NamespaceDOMTest.groovy  |   6 +-
 .../apache/groovy/xml/tools/DomToGroovyTest.groovy |   4 +-
 46 files changed, 719 insertions(+), 187 deletions(-)

Reply via email to