You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ra...@apache.org on 2017/08/29 11:01:39 UTC

svn commit: r1806556 - /sling/trunk/bundles/scripting/sightly/README.md

Author: radu
Date: Tue Aug 29 11:01:39 2017
New Revision: 1806556

URL: http://svn.apache.org/viewvc?rev=1806556&view=rev
Log:
trivial: expanded info about modules

Modified:
    sling/trunk/bundles/scripting/sightly/README.md

Modified: sling/trunk/bundles/scripting/sightly/README.md
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/sightly/README.md?rev=1806556&r1=1806555&r2=1806556&view=diff
==============================================================================
--- sling/trunk/bundles/scripting/sightly/README.md (original)
+++ sling/trunk/bundles/scripting/sightly/README.md Tue Aug 29 11:01:39 2017
@@ -3,16 +3,22 @@ Apache Sling Scripting - HTL implementat
 These bundles provide support for the HTL web templating language.
 
 ## Contents
-1. `engine` - `org.apache.sling.scripting.sightly`
+1. `compiler` - `org.apache.sling.scripting.sightly.compiler`
+  The Apache Sling Scripting HTL Compiler provides support for compiling HTML Template Language scripts into an Abstract
+  Syntax Tree.
+2. `java-compiler` - `org.apache.sling.scripting.sightly.compiler.java`
+  The Apache Sling Scripting HTL Java Compiler provides support for transpiling the Abstract Syntax Tree produced by the
+  `org.apache.sling.scripting.sightly.compiler` module into Java source code.
+3. `engine` - `org.apache.sling.scripting.sightly`
   The Apache Sling Scripting HTL Engine is a Java implementation of the HTL specification. The bundle contains the HTL 
   engine and its plugin framework implementation.
-2. `js-use-provider` - `org.apache.sling.scripting.sightly.js.provider`
+4. `js-use-provider` - `org.apache.sling.scripting.sightly.js.provider`
   The Apache Sling HTL JavaScript Use Provider adds support for accessing JS scripts from Sightly's Use-API.
-3. `repl` - `org.apache.sling.scripting.sightly.repl`
+5. `repl` - `org.apache.sling.scripting.sightly.repl`
   A simple Read-Eval-Print-Loop environment for testing simple HTL scripts
-4. `testing-content` - `org.apache.sling.scripting.sightly.testing-content`
+6. `testing-content` - `org.apache.sling.scripting.sightly.testing-content`
   A bundle containing initial content for running integration tests
-5. `testing` - `org.apache.sling.scripting.sightly.testing`
+7. `testing` - `org.apache.sling.scripting.sightly.testing`
   The testing project which builds a custom Sling Launchpad on which integration tests are run
   
 ## How To