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

radu pushed a change to branch experimental-scripting-resolver
in repository 
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly.git.


    from 81312ca  Merge branch 'master' into experimental-scripting-resolver
     add 5f0175f  SLING-8012 - Extract an HTL runtime bundle from the existing 
HTL modules
     add 7e9d930  SLING-8012 - Extract an HTL runtime bundle from the existing 
HTL modules
     add e8ad892  SLING-8012 - Extract an HTL runtime bundle from the existing 
HTL modules
     new 46638f1  Merge branch 'master' into experimental-scripting-resolver

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:
 pom.xml                                            |  24 +-
 .../sightly/impl/engine/SightlyCompiledScript.java |  13 +-
 .../impl/engine/SightlyJavaCompilerService.java    | 280 -----------
 .../sightly/impl/engine/SightlyScriptEngine.java   | 138 ++----
 .../impl/engine/SightlyScriptEngineFactory.java    |  85 +---
 .../engine/compiled/SightlyCompilationUnit.java    |  53 +++
 .../engine/compiled/SlingHTLMasterCompiler.java    | 512 +++++++++++++++++++++
 .../engine/compiled/SlingJavaImportsAnalyser.java  |  47 ++
 .../impl/engine/compiled/SourceIdentifier.java     | 155 +------
 .../engine/extension/FormatFilterExtension.java    |   5 +-
 .../engine/extension/I18nRuntimeExtension.java     |   5 +-
 .../engine/extension/IncludeRuntimeExtension.java  |   5 +-
 .../impl/engine/extension/JoinFilterExtension.java |   5 +-
 .../engine/extension/ResourceRuntimeExtension.java |   5 +-
 .../extension/URIManipulationFilterExtension.java  |   5 +-
 .../impl/engine/extension/XSSRuntimeExtension.java |  60 ++-
 .../impl/engine/extension/use/JavaUseProvider.java |  96 ++--
 .../engine/extension/use/RenderUnitProvider.java   |   2 +-
 .../engine/extension/use/UseRuntimeExtension.java  |   5 +-
 .../impl/engine/runtime/RenderContextImpl.java     |   6 +-
 .../compiler/SightlyJavaCompilerServiceTest.java   | 189 --------
 .../impl/engine/SightlyCompiledScriptTest.java     |   6 +-
 .../engine/SightlyScriptEngineFactoryTest.java     | 122 -----
 .../compiled/SlingHTLMasterCompilerTest.java       | 296 ++++++++++++
 .../impl/engine/compiled/SourceIdentifierTest.java |  29 +-
 25 files changed, 1097 insertions(+), 1051 deletions(-)
 delete mode 100644 
src/main/java/org/apache/sling/scripting/sightly/impl/engine/SightlyJavaCompilerService.java
 create mode 100644 
src/main/java/org/apache/sling/scripting/sightly/impl/engine/compiled/SightlyCompilationUnit.java
 create mode 100644 
src/main/java/org/apache/sling/scripting/sightly/impl/engine/compiled/SlingHTLMasterCompiler.java
 create mode 100644 
src/main/java/org/apache/sling/scripting/sightly/impl/engine/compiled/SlingJavaImportsAnalyser.java
 delete mode 100644 
src/test/java/org/apache/sling/scripting/sightly/impl/compiler/SightlyJavaCompilerServiceTest.java
 delete mode 100644 
src/test/java/org/apache/sling/scripting/sightly/impl/engine/SightlyScriptEngineFactoryTest.java
 create mode 100644 
src/test/java/org/apache/sling/scripting/sightly/impl/engine/compiled/SlingHTLMasterCompilerTest.java

Reply via email to