Author: olli
Date: Fri Jul 17 13:03:19 2015
New Revision: 1691555

URL: http://svn.apache.org/r1691555
Log:
use common notation for resource types

Modified:
    sling/trunk/samples/fling/src/main/resources/content/fling.json

Modified: sling/trunk/samples/fling/src/main/resources/content/fling.json
URL: 
http://svn.apache.org/viewvc/sling/trunk/samples/fling/src/main/resources/content/fling.json?rev=1691555&r1=1691554&r2=1691555&view=diff
==============================================================================
--- sling/trunk/samples/fling/src/main/resources/content/fling.json (original)
+++ sling/trunk/samples/fling/src/main/resources/content/fling.json Fri Jul 17 
13:03:19 2015
@@ -1,34 +1,34 @@
 {
     "jcr:primaryType": "nt:unstructured",
-    "sling:resourceType": "fling:page:simple",
+    "sling:resourceType": "fling/page/simple",
     "title": "Sling Fling Sample",
     "content": "<p>This is a sample using <em>Sling Models</em>, <em>Sling 
Query</em> and <em>Sling Scripting Thymeleaf</em>.</p><ul><li><a 
href=\"http://sling.apache.org/documentation/bundles/models.html\";>Sling 
Models</a></li><li><a href=\"https://github.com/Cognifide/Sling-Query\";>Sling 
Query</a></li><li><a 
href=\"http://sling.apache.org/documentation/bundles/scripting/scripting-thymeleaf.html\";>Sling
 Scripting Thymeleaf</a> (<a href=\"http://www.thymeleaf.org\";>Thymeleaf</a>, 
<a 
href=\"http://sling.apache.org/documentation/bundles/internationalization-support-i18n.html\";>Sling
 i18n</a>)</li></ul><p>Additional features used in this sample:</p><ul><li><a 
href=\"http://sling.apache.org/documentation/the-sling-engine/authentication.html\";>Authentication</a>:
 see <code>org.apache.sling.samples.fling.internal.Activator</code></li><li><a 
href=\"http://sling.apache.org/documentation/bundles/bundle-resources-extensions-bundleresource.html\";>Bundle
 Resources</a>: see <code>Sling-Bundle-Re
 sources</code> in <code>pom.xml</code></li><li><a 
href=\"http://sling.apache.org/documentation/bundles/content-loading-jcr-contentloader.html\";>Content
 Loading</a>: see <code>Sling-Initial-Content</code> in 
<code>pom.xml</code></li><li><a 
href=\"http://sling.apache.org/documentation/development/sling.html\";>Maven 
Sling Plugin</a>: see <code>maven-sling-plugin</code> in 
<code>pom.xml</code></li></ul>",
     "models": {
         "jcr:primaryType": "nt:unstructured",
-        "sling:resourceType": "fling:page:simple",
+        "sling:resourceType": "fling/page/simple",
         "title": "Sling Models",
         "content": "<p><em>Sling Models</em> for mapping resources to 
<code>Page.class</code>:</p><pre>[...]\n@Model(adaptables = 
Resource.class)\npublic class Page {\n\n    private final Resource 
resource;\n\n    @Inject\n    private String title;\n\n    [...]\n\n    public 
Page(final Resource resource) {\n        this.resource = resource;\n    }\n\n   
 public String getName() {\n        return resource.getName();\n    }\n\n    
[...]\n\n    public String getTitle() {\n        return title;\n    }\n\n    
[...]\n\n}</pre>"
     },
     "query": {
         "jcr:primaryType": "nt:unstructured",
-        "sling:resourceType": "fling:page:simple",
+        "sling:resourceType": "fling/page/simple",
         "title": "Sling Query",
         "content": "<p><em>Sling Query</em> for collecting resources to build 
the navigation:</p><pre>[...]\npublic class Page {\n\n    [...]\n\n    public 
Iterable&lt;Page&gt; getParents() {\n      return 
$(resource).parents().map(Page.class);\n    }\n\n    public 
Iterable&lt;Page&gt; getChildren() {\n      return 
$(resource).children().map(Page.class);\n    }\n\n    [...]\n\n}</pre>"
     },
     "thymeleaf": {
         "jcr:primaryType": "nt:unstructured",
-        "sling:resourceType": "fling:page:simple",
+        "sling:resourceType": "fling/page/simple",
         "title": "Sling Scripting Thymeleaf",
         "content": "<p><em>Sling Scripting Thymeleaf</em> with <em>Sling 
Models</em> and <code>adaptTo()</code> to render resources:</p><pre>&lt;html 
data-th-with=\"page=${resource.adaptTo(@org.apache.sling.samples.fling.Page@class)}\"&gt;\n&lt;head&gt;\n
  &lt;meta charset=\"UTF-8\"/&gt;\n  &lt;meta name=\"viewport\" 
content=\"width=device-width, initial-scale=1.0\"/&gt;\n  &lt;title 
data-th-text=\"${page.title}\"&gt;Page 
Title&lt;/title&gt;\n[...]</pre><p><em>Sling Scripting Thymeleaf</em> with 
<em>Sling i18n</em> for localized messages:</p><pre>&lt;a 
href=\"/system/sling/logout\" 
data-th-text=\"#{action.logout}\"&gt;logout&lt;/a&gt;</pre><pre>{\n    \"en\": 
{\n        \"jcr:mixinTypes\": [\n            \"mix:language\"\n        ],\n    
    \"jcr:language\": \"en\",\n        \"sling:basename\": 
\"org.apache.sling.samples.fling\",\n        \"action.logout\": {\n            
\"jcr:primaryType\": \"sling:MessageEntry\",\n            \"sling:key\": 
\"action.logout\",\n            \"slin
 g:message\": \"logout\"\n        },\n        [...]\n    }\n}\n</pre>"
     },
     "auth": {
         "jcr:primaryType": "nt:unstructured",
-        "sling:resourceType": "fling:page:simple",
+        "sling:resourceType": "fling/page/simple",
         "title": "Authentication",
         "content": "<p>extending the <em>authentication requirements</em> to 
secure the path <code>/fling/auth</code> is done by registering a plain Object 
with properties as service for the <em>Authentication</em> 
framework:</p><pre>[...]\npublic class Activator implements BundleActivator 
{\n\n    private ServiceRegistration serviceRegistration;\n\n    @Override\n    
public void start(BundleContext bundleContext) throws Exception {\n        
final Object service = new Object();\n        final Dictionary&lt;String, 
String&gt; properties = new Hashtable&lt;&gt;();\n        
properties.put(\"sling.auth.requirements\", \"/fling/auth\");\n        
serviceRegistration = bundleContext.registerService(Object.class, service, 
properties);\n    }\n\n    [...]\n\n}</pre>",
         "user": {
             "jcr:primaryType": "nt:unstructured",
-            "sling:resourceType": "fling:page:user",
+            "sling:resourceType": "fling/page/user",
             "title": "User"
         }
     }


Reply via email to