You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by an...@apache.org on 2021/05/07 15:25:23 UTC

[sling-org-apache-sling-repoinit-parser] branch master updated (bb6086c -> eae5741)

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

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


    from bb6086c  Tweak docs and links
     add 859cd43  SLING-10299 : Allow for removal of access control policies (not just individual entries)
     add c404ae8  SLING-10299 : rename remove to delete as requested by suggested by bertrand
     add cce6381  SLING-10299 : missing providertype annotation, increase language.version in bnd.bnd
     add af69f72  SLING-10299 : replace removeAcl* by deleteAcl* in RepoInitGrammer
     new eae5741  Merge pull request #10 from apache/SLING-10299

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:
 bnd.bnd                                            |  2 +-
 .../{DeleteUser.java => DeleteAclPaths.java}       | 34 +++++++++----------
 ...eleteUser.java => DeleteAclPrincipalBased.java} | 33 +++++++++---------
 .../{DeleteUser.java => DeleteAclPrincipals.java}  | 34 +++++++++----------
 .../parser/operations/OperationVisitor.java        |  4 +++
 .../repoinit/parser/operations/package-info.java   |  2 +-
 src/main/javacc/RepoInitGrammar.jjt                | 39 ++++++++++++++++++++++
 .../parser/test/OperationToStringVisitor.java      | 37 ++++++++++++++++++++
 src/test/resources/testcases/test-70-output.txt    |  7 ++++
 src/test/resources/testcases/test-70.txt           | 13 ++++++++
 src/test/resources/testcases/test-99-output.txt    |  9 ++++-
 src/test/resources/testcases/test-99.txt           |  9 +++++
 12 files changed, 169 insertions(+), 54 deletions(-)
 copy src/main/java/org/apache/sling/repoinit/parser/operations/{DeleteUser.java => DeleteAclPaths.java} (70%)
 copy src/main/java/org/apache/sling/repoinit/parser/operations/{DeleteUser.java => DeleteAclPrincipalBased.java} (68%)
 copy src/main/java/org/apache/sling/repoinit/parser/operations/{DeleteUser.java => DeleteAclPrincipals.java} (69%)
 create mode 100644 src/test/resources/testcases/test-70-output.txt
 create mode 100644 src/test/resources/testcases/test-70.txt

[sling-org-apache-sling-repoinit-parser] 01/01: Merge pull request #10 from apache/SLING-10299

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

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

commit eae5741c7b4b18d5438ff0c821e6562f2112dbc0
Merge: bb6086c af69f72
Author: anchela <an...@apache.org>
AuthorDate: Fri May 7 17:24:58 2021 +0200

    Merge pull request #10 from apache/SLING-10299
    
    SLING-10299 : Allow for removal of access control policies (not just individual entries)

 bnd.bnd                                            |  2 +-
 .../repoinit/parser/operations/DeleteAclPaths.java | 53 ++++++++++++++++++++++
 .../parser/operations/DeleteAclPrincipalBased.java | 52 +++++++++++++++++++++
 .../parser/operations/DeleteAclPrincipals.java     | 53 ++++++++++++++++++++++
 .../parser/operations/OperationVisitor.java        |  4 ++
 .../repoinit/parser/operations/package-info.java   |  2 +-
 src/main/javacc/RepoInitGrammar.jjt                | 39 ++++++++++++++++
 .../parser/test/OperationToStringVisitor.java      | 37 +++++++++++++++
 src/test/resources/testcases/test-70-output.txt    |  7 +++
 src/test/resources/testcases/test-70.txt           | 13 ++++++
 src/test/resources/testcases/test-99-output.txt    |  9 +++-
 src/test/resources/testcases/test-99.txt           |  9 ++++
 12 files changed, 277 insertions(+), 3 deletions(-)