This is an automated email from the ASF dual-hosted git repository.
Claudenw pushed a change to branch create-UIOptionCollections
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
discard 37140e91 cleaned up code issues
discard ee03f040 attempted fix
discard c4a3d239 fixed errors
discard ca9730ce updated ArgumentTracker
discard cb6234c9 added OptionCollectionParser tests
discard 74953afb added CLIOptionTests
discard 28ed3b53 fixed AntDocumentationTest
discard 1c59bb9e fixed review issues
discard a87f99eb updated RatTool tests
discard 5780186c updated Arg documentation
discard e4935535 Added AntOptionCollection.java
discard f9fee882 Switched to UIOptionCollections
discard 2f9b1afd added tests
discard 6f7773f9 fixed checkstyle issues
discard 7e19e9ba added additional tests
discard dc4bcd09 cleaned up sonar issues
discard 96572956 fixed CasedString checkstyle issues
discard b6e9ad4f Switched to cased string preserving the parts from the parsing
discard 3e7f4e56 modified OptionCollection to use CLIOptionCollection
discard d1309cb1 initial working code
add 21ef18dd RAT-551: Replace NoCloseOutputStream with Apache Commons
CloseShieldOutputStream (#653)
add da14353f RAT-539: Update xml writer (#627)
add be3944a1 initial working code
add 714caeee modified OptionCollection to use CLIOptionCollection
add 6fed7b6e Switched to cased string preserving the parts from the parsing
add e8af517f fixed CasedString checkstyle issues
add b8e0a831 cleaned up sonar issues
add d97da523 added additional tests
add a72886cd fixed checkstyle issues
add 0e2e7bee added tests
add 685d5838 Switched to UIOptionCollections
add be916d12 Added AntOptionCollection.java
add 1ef787c5 updated Arg documentation
add 8c3dcb9f updated RatTool tests
add a5497d09 fixed review issues
add e7613b47 fixed AntDocumentationTest
add d5865265 added CLIOptionTests
add bb78eea5 added OptionCollectionParser tests
add fc15408f updated ArgumentTracker
add b6c92f6b fixed errors
add 781b2605 attempted fix
add a3e1c070 cleaned up code issues
add b93bc7ff initial updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (37140e91)
\
N -- N -- N refs/heads/create-UIOptionCollections (b93bc7ff)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
apache-rat-core/pom.xml | 4 +
.../java/org/apache/rat/ReportConfiguration.java | 67 +-
.../src/main/java/org/apache/rat/Reporter.java | 5 +-
.../main/java/org/apache/rat/commandline/Arg.java | 67 +-
.../apache/rat/report/xml/writer/IXmlWriter.java | 9 +
.../org/apache/rat/report/xml/writer/XMLChar.java | 1068 ++++++++++++++++++++
.../apache/rat/report/xml/writer/XmlWriter.java | 563 ++---------
.../java/org/apache/rat/ui/ArgumentTracker.java | 16 -
.../java/org/apache/rat/ui/spi/UIProvider.java | 3 +-
.../org/apache/rat/utils/StandardXmlFactory.java | 67 ++
.../org/apache/rat/OptionCollectionParserTest.java | 7 -
.../org/apache/rat/ReportConfigurationTest.java | 4 +-
.../report/xml/writer/impl/base/XmlWriterTest.java | 136 ++-
.../org/apache/rat/ui/UIOptionCollectionTest.java | 1 -
.../test/java/org/apache/rat/ui/UIOptionTest.java | 2 +-
.../main/java/org/apache/rat/anttasks/Report.java | 3 +-
.../rat/documentation/options/AntOption.java | 5 +
.../documentation/options/AntOptionCollection.java | 2 +-
.../rat/documentation/options/MavenOption.java | 6 +-
.../org/apache/rat/tools/xsd/XsdGenerator.java | 20 +-
src/changes/changes.xml | 3 +
src/conf/checkstyle-suppressions.xml | 4 +
22 files changed, 1410 insertions(+), 652 deletions(-)
create mode 100644
apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/XMLChar.java
create mode 100644
apache-rat-core/src/main/java/org/apache/rat/utils/StandardXmlFactory.java