You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2020/03/24 13:23:00 UTC

[sling-org-apache-sling-repoinit-parser] branch master updated (c196864 -> e527f29)

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

bdelacretaz pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-repoinit-parser.git.


    from c196864  SLING-9227 - clarify escaped backslashes in quoted strings
     new c7cc620  SLING-9171 Support setting node properties via repoinit
     new 828a44d  SLING-9171 Improve grammar for set node properties
     new 0da5ce2  SLING-9171 Option to not override the previously set property values
     new e527f29  Merge pull request #5 from nit23uec/master

The 117 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:
 pom.xml                                            |   2 +-
 .../parser/operations/OperationVisitor.java        |   1 +
 .../repoinit/parser/operations/PropertyLine.java   |  73 +++++++++++++
 .../{CreateServiceUser.java => SetProperties.java} |  33 +++---
 .../repoinit/parser/operations/package-info.java   |   2 +-
 src/main/javacc/RepoInitGrammar.jjt                | 115 ++++++++++++++++++++-
 .../parser/test/OperationToStringVisitor.java      |  18 ++++
 .../repoinit/parser/test/ParsingErrorsTest.java    |   8 ++
 src/test/resources/testcases/test-67-output.txt    |  12 +++
 src/test/resources/testcases/test-67.txt           |  11 ++
 10 files changed, 253 insertions(+), 22 deletions(-)
 create mode 100644 src/main/java/org/apache/sling/repoinit/parser/operations/PropertyLine.java
 copy src/main/java/org/apache/sling/repoinit/parser/operations/{CreateServiceUser.java => SetProperties.java} (67%)
 create mode 100644 src/test/resources/testcases/test-67-output.txt
 create mode 100644 src/test/resources/testcases/test-67.txt