This is an automated email from the ASF dual-hosted git repository.
radu pushed a change to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-compiler.git.
from af6f51a SLING-7710 - [HTL] Enhance error reporting for plugin errors
add 97f42d1 SLING-7682 - Add support for data-sly-list and
data-sly-repeat iteration control
add 079d8bb SLING-7688 - [HTL] Add support for the in relational operator
add f04e0f3 SLING-7700 - [HTL] Implement operator precedence for binary
operations
add 6d1eb6e SLING-7701 - [HTL] Add support for negative numbers
add 7b025fa SLING-7709 - [HTL] Implement the data-sly-set block element
add 9eefb61 SLING-7713 - [HTL] Add support for data-sly-unwrap identifiers
add 3d4de61 Merged master into issue/SLING-7681
add cded4ad SLING-7740 - [HTL] Extend the list of attributes for which
the 'uri' context is automatically applied
add b977da8 Merge branch 'master' into issue/SLING-7681
No new revisions were added by this update.
Summary of changes:
pom.xml | 5 +-
.../impl/parser/expr/generated/SightlyLexer.g4 | 15 ++-
.../impl/parser/expr/generated/SightlyParser.g4 | 19 ++--
.../sightly/compiler/SightlyCompiler.java | 2 +
.../scripting/sightly/compiler/commands/Loop.java | 25 ++++
.../sightly/compiler/commands/package-info.java | 2 +-
.../compiler/expression/nodes/BinaryOperator.java | 24 ++++
.../compiler/expression/nodes/NumericConstant.java | 8 +-
.../compiler/expression/nodes/package-info.java | 2 +-
.../sightly/compiler/util/VariableTracker.java | 16 +--
.../impl/compiler/visitor/TrackingVisitor.java | 3 +
.../sightly/impl/filter/ExpressionContext.java | 1 +
.../sightly/impl/html/dom/MarkupHandler.java | 12 +-
.../sightly/impl/plugin/AbstractPlugin.java | 8 ++
.../sightly/impl/plugin/AbstractRepeatPlugin.java | 71 ++++++++++++
.../scripting/sightly/impl/plugin/ListPlugin.java | 126 +++++++++++++--------
.../sightly/impl/plugin/RepeatPlugin.java | 118 +++++++++++++------
.../scripting/sightly/impl/plugin/SetPlugin.java | 57 ++++++++++
.../scripting/sightly/impl/plugin/TestPlugin.java | 11 +-
.../sightly/impl/plugin/UnwrapPlugin.java | 23 +++-
.../sling/scripting/sightly/impl/TestUtils.java | 47 --------
.../sightly/impl/compiler/SightlyCompilerTest.java | 74 ++++++++++--
22 files changed, 489 insertions(+), 180 deletions(-)
create mode 100644
src/main/java/org/apache/sling/scripting/sightly/impl/plugin/AbstractRepeatPlugin.java
create mode 100644
src/main/java/org/apache/sling/scripting/sightly/impl/plugin/SetPlugin.java
delete mode 100644
src/test/java/org/apache/sling/scripting/sightly/impl/TestUtils.java
--
To stop receiving notification emails like this one, please contact
[email protected].