Author: radu
Date: Fri Apr 15 15:45:32 2016
New Revision: 1739323

URL: http://svn.apache.org/viewvc?rev=1739323&view=rev
Log:
CMS commit to sling by radu

Modified:
    
sling/site/trunk/content/documentation/bundles/scripting/scripting-sightly.mdtext

Modified: 
sling/site/trunk/content/documentation/bundles/scripting/scripting-sightly.mdtext
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/scripting/scripting-sightly.mdtext?rev=1739323&r1=1739322&r2=1739323&view=diff
==============================================================================
--- 
sling/site/trunk/content/documentation/bundles/scripting/scripting-sightly.mdtext
 (original)
+++ 
sling/site/trunk/content/documentation/bundles/scripting/scripting-sightly.mdtext
 Fri Apr 15 15:45:32 2016
@@ -63,7 +63,7 @@ The [Sightly HTML Templating Language Sp
             }
         });
         
-The Sightly implementation from Sling provides the basic POJO support through 
the 
[`org.apache.sling.scripting.sightly.pojo.Use`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/engine/src/main/java/org/apache/sling/scripting/sightly/pojo/Use.java)
 interface and the 
[`org.apache.sling.scripting.sightly.impl.engine.extension.use.JavaUseProvider`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/engine/src/main/java/org/apache/sling/scripting/sightly/impl/engine/extension/use/JavaUseProvider.java),
 whereas the `use` function is implemented by the 
`org.apache.sling.scripting.sightly.js.provider` bundle.
+The Sightly implementation from Sling provides the basic POJO support through 
the 
[`org.apache.sling.scripting.sightly.pojo.Use`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/engine/src/main/java/org/apache/sling/scripting/sightly/pojo/Use.java)
 interface and 
the[`JavaUseProvider`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/engine/src/main/java/org/apache/sling/scripting/sightly/impl/engine/extension/use/JavaUseProvider.java),
 whereas the `use` function is implemented by the 
`org.apache.sling.scripting.sightly.js.provider` bundle.
 
 However, the Sling implementation provides a few extensions to the Use-API.
 
@@ -75,6 +75,6 @@ A full Sightly installation provides the
 |--------------     |--------------   |-----------------  |---------------    
|----------- |
 
|100|[`RenderUnitProvider`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/engine/src/main/java/org/apache/sling/scripting/sightly/impl/engine/extension/use/RenderUnitProvider.java)|`org.apache.sling.scripting.sightly`|support
 for loading Sightly templates through `data-sly-use`||
 
|95|[`SlingModelsUseProvider`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/models-use-provider/src/main/java/org/apache/sling/scripting/sightly/models/impl/SlingModelsUseProvider.java)|`org.apache.sling.scripting.sightly.models.provider`|support
 for loading Sling Models||
-|90|[`JavaUseProvider`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/engine/src/main/java/org/apache/sling/scripting/sightly/impl/engine/extension/use/JavaUseProvider.java)|`org.apache.sling.scripting.sightly`|support
 for loading Java objects such as: <ol><li>OSGi services</li><li>POJOs 
adaptable from `SlingHttpServletRequest` or `Resource`</li><li>POJOs that 
implement `Use`</li></ol>||
+|90|[`JavaUseProvider`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/engine/src/main/java/org/apache/sling/scripting/sightly/impl/engine/extension/use/JavaUseProvider.java)|`org.apache.sling.scripting.sightly`|support
 for loading Java objects such as: <ol><li>OSGi services</li><li>POJOs 
adaptable from `SlingHttpServletRequest` or `Resource`</li><li>POJOs that 
implement `Use`</li></ol>|The POJOs can be be exported by bundles or can be 
backed by `Resources`. In the latter case the POJOs' package names should 
correspond to the backing resource's path; invalid Java characters which are 
valid path elements should be replaced by an underscore (`_`).|
 
|80|[`JsUseProvider`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/js-use-provider/src/main/java/org/apache/sling/scripting/sightly/js/impl/JsUseProvider.java)|`org.apache.sling.scripting.sightly.js.provider`|support
 for loading objects defined through the JavaScript `use` function||
 |0  
|[`ScriptUseProvider`](https://github.com/apache/sling/blob/trunk/bundles/scripting/sightly/engine/src/main/java/org/apache/sling/scripting/sightly/impl/engine/extension/use/ScriptUseProvider.java)|`org.apache.sling.scripting.sightly`|support
 for loading objects returned by scripts interpreted by other Script Engines 
available on the platform||


Reply via email to