You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bu...@apache.org on 2014/04/26 02:36:31 UTC

svn commit: r906933 - in /websites/staging/sling/trunk/content: ./ documentation/getting-started.html documentation/the-sling-engine/featureflags.html downloads.html news.html

Author: buildbot
Date: Sat Apr 26 00:36:30 2014
New Revision: 906933

Log:
Staging update by buildbot for sling

Modified:
    websites/staging/sling/trunk/content/   (props changed)
    websites/staging/sling/trunk/content/documentation/getting-started.html
    websites/staging/sling/trunk/content/documentation/the-sling-engine/featureflags.html
    websites/staging/sling/trunk/content/downloads.html
    websites/staging/sling/trunk/content/news.html

Propchange: websites/staging/sling/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Apr 26 00:36:30 2014
@@ -1 +1 @@
-1585430
+1590204

Modified: websites/staging/sling/trunk/content/documentation/getting-started.html
==============================================================================
--- websites/staging/sling/trunk/content/documentation/getting-started.html (original)
+++ websites/staging/sling/trunk/content/documentation/getting-started.html Sat Apr 26 00:36:30 2014
@@ -100,14 +100,14 @@
 <li><a href="/documentation/the-sling-engine/architecture.html">Architecture</a></li>
 <li><a href="/documentation/the-sling-engine/dispatching-requests.html">Dispatching Requests</a></li>
 <li><a href="/documentation/the-sling-engine/resources.html">Resources</a></li>
-<li><a href="http://cwiki.apache.org/SLING/setting-up-eclipse-34-for-sling.html">Setting up an Sling-Project with Eclipse</a></li>
+<li><a href="https://cwiki.apache.org/confluence/display/SLING/Setting+up+Eclipse+3.4+for+Sling">Setting up Eclipse 3.4 for Sling</a></li>
 <li><a href="/documentation/bundles/manipulating-content-the-slingpostservlet-servlets-post.html">Manipulating Content - The SlingPostServlet (servlets.post)</a></li>
 <li><a href="/documentation/the-sling-engine/request-parameters.html">Request Parameters</a></li>
 <li><a href="/documentation/the-sling-engine/authentication.html">Authentication</a></li>
 <li><a href="">Eventing and Jobs</a></li>
 </ul>
       <div class="timestamp" style="margin-top: 30px; font-size: 80%; text-align: right;">
-        Rev. 1539285 by bdelacretaz on Wed, 6 Nov 2013 09:20:45 +0000
+        Rev. 1588865 by olli on Mon, 21 Apr 2014 09:42:13 +0000
       </div>
       <div class="trademarkFooter"> 
         Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project

Modified: websites/staging/sling/trunk/content/documentation/the-sling-engine/featureflags.html
==============================================================================
--- websites/staging/sling/trunk/content/documentation/the-sling-engine/featureflags.html (original)
+++ websites/staging/sling/trunk/content/documentation/the-sling-engine/featureflags.html Sat Apr 26 00:36:30 2014
@@ -113,82 +113,20 @@ Alternatively feature flags can be provi
 <tbody>
 <tr>
 <td><code>name</code></td>
-<td>Short name of this feature. This name is used to refer to this feature</td>
-</tr>
-<tr>
-<td>when checking for it to be enabled or not. This property is required</td>
-<td></td>
-</tr>
-<tr>
-<td>and defaults to a name derived from the feature's class name and object</td>
-<td></td>
-</tr>
-<tr>
-<td>identity. It is strongly recommended to define a useful and unique for the feature</td>
-<td></td>
+<td>Short name of this feature. This name is used to refer to this feature when checking for it to be enabled or not. This property is required and defaults to a name derived from the feature's class name and object identity. It is strongly recommended to define a useful and unique for the feature</td>
 </tr>
 <tr>
 <td><code>description</code></td>
-<td>Description for the feature. The intent is to descibe the behaviour</td>
-</tr>
-<tr>
-<td>of the application if this feature would be enabled. It is recommended</td>
-<td></td>
-</tr>
-<tr>
-<td>to define this property. The default value is the value of the name property.</td>
-<td></td>
+<td>Description for the feature. The intent is to descibe the behaviour of the application if this feature would be enabled. It is recommended to define this property. The default value is the value of the name property.</td>
 </tr>
 <tr>
 <td><code>enabled</code></td>
-<td>Boolean flag indicating whether the feature is enabled or not by</td>
-</tr>
-<tr>
-<td>this configuration</td>
-<td></td>
-</tr>
-</tbody>
-</table>
-<h1 id="resource-resolution">Resource Resolution</h1>
-<p>The <code>ResourceResolver</code> supports feature flags while looking up resources both in all the
-resource accessor methods if the <code>org.apache.sling.featueflags.Features</code> service is
-available to the <code>ResourceResolver</code>. Otherwise feature flags are ignored.</p>
-<p>To limit visibility of a resource according to feature flags, the <code>sling:features</code> property
-can be set to a single or multi-value string. A feature flag to be checked is just listed
-with an optional dash (<code>-</code>) prefix. Without the dash the named feature must be enabled to
-have the resource visible. If the feature name is prefixed with a dash the resoure is only
-visible if the feature flag is disabled. If multiple feature flag names are given, the
-resource is visible if at least one of the features is enabled (or disabled if prefixed with
-a dash).</p>
-<h2 id="examples">Examples:</h2>
-<table>
-<thead>
-<tr>
-<th><code>sling:features</code></th>
-<th>Description</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td><code>"sample"</code></td>
-<td>Resource is visible if feature <em>sample</em> is enabled.</td>
-</tr>
-<tr>
-<td><code>"-sample"</code></td>
-<td>Resource is visible if feature <em>sample</em> is disabled.</td>
-</tr>
-<tr>
-<td><code>[ "sample1", "sample2" ]</code></td>
-<td>Resource is visible if feature <em>sample1</em> or <em>sample2</em> (or both) is enabled.</td>
-</tr>
-<tr>
-<td><code>[ "sample1", "-sample2", "sample3" ]</code></td>
-<td>Resource is visible if feature <em>sample1</em> or <em>sample3</em> (or both) is enabled or if <em>sample2</em> is disabled.</td>
+<td>Boolean flag indicating whether the feature is enabled or not by this configuration</td>
 </tr>
 </tbody>
 </table>
       <div class="timestamp" style="margin-top: 30px; font-size: 80%; text-align: right;">
-        Rev. 1561606 by fmeschbe on Mon, 27 Jan 2014 08:41:16 +0000
+        Rev. 1590204 by justin on Sat, 26 Apr 2014 00:36:19 +0000
       </div>
       <div class="trademarkFooter"> 
         Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project

Modified: websites/staging/sling/trunk/content/downloads.html
==============================================================================
--- websites/staging/sling/trunk/content/downloads.html (original)
+++ websites/staging/sling/trunk/content/downloads.html Sat Apr 26 00:36:30 2014
@@ -254,9 +254,9 @@ incubator releases of Apache Sling, have
 </tr>
 <tr>
 <td>Commons Classloader</td>
-<td>1.3.0</td>
-<td><a href="[preferred]/sling/org.apache.sling.commons.classloader-1.3.0.jar">Bundle</a> (<a href="http://www.apache.org/dist/sling/org.apache.sling.commons.classloader-1.3.0.jar.asc">asc</a>, <a href="http://www.apache.org/dist/sling/org.apache.sling.commons.classloader-1.3.0.jar.md5">md5</a>)</td>
-<td><a href="[preferred]/sling/org.apache.sling.commons.classloader-1.3.0-source-release.zip">Source ZIP</a> (<a href="http://www.apache.org/dist/sling/org.apache.sling.commons.classloader-1.3.0-source-release.zip.asc">asc</a>, <a href="http://www.apache.org/dist/sling/org.apache.sling.commons.classloader-1.3.0-source-release.zip.md5">md5</a>)</td>
+<td>1.3.2</td>
+<td><a href="[preferred]/sling/org.apache.sling.commons.classloader-1.3.2.jar">Bundle</a> (<a href="http://www.apache.org/dist/sling/org.apache.sling.commons.classloader-1.3.2.jar.asc">asc</a>, <a href="http://www.apache.org/dist/sling/org.apache.sling.commons.classloader-1.3.2.jar.md5">md5</a>)</td>
+<td><a href="[preferred]/sling/org.apache.sling.commons.classloader-1.3.2-source-release.zip">Source ZIP</a> (<a href="http://www.apache.org/dist/sling/org.apache.sling.commons.classloader-1.3.2-source-release.zip.asc">asc</a>, <a href="http://www.apache.org/dist/sling/org.apache.sling.commons.classloader-1.3.2-source-release.zip.md5">md5</a>)</td>
 </tr>
 <tr>
 <td>Commons Compiler</td>
@@ -883,7 +883,7 @@ incubator releases of Apache Sling, have
 
 
       <div class="timestamp" style="margin-top: 30px; font-size: 80%; text-align: right;">
-        Rev. 1585430 by stefanegli on Mon, 7 Apr 2014 08:52:16 +0000
+        Rev. 1588142 by cziegeler on Thu, 17 Apr 2014 07:11:17 +0000
       </div>
       <div class="trademarkFooter"> 
         Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project

Modified: websites/staging/sling/trunk/content/news.html
==============================================================================
--- websites/staging/sling/trunk/content/news.html (original)
+++ websites/staging/sling/trunk/content/news.html Sat Apr 26 00:36:30 2014
@@ -90,8 +90,8 @@
       
       <h1>News</h1>
       <ul>
-<li>New Release: Apache Sling Resource-Based Discovery Service (discovery.impl) 1.0.6 (April 4th, 2014)</li>
-<li>New Release: Apache Sling Resource Resolver 1.1.0, Apache Sling Featureflags 1.0.0 (April 4th, 2014)</li>
+<li>New Release: Apache Sling Commons ClassLoader 1.3.2 (April 17th, 2014)</li>
+<li>New Releases: Apache Sling Resource Resolver 1.1.0, Apache Sling Featureflags 1.0.0, Apache Sling Resource-Based Discovery Service (discovery.impl) 1.0.6  (April 4th, 2014)</li>
 <li>New Releases: Apache Sling Servlets Resolver 2.3.2, Apache Sling Servlets Get 2.1.8, Apache Sling Installer Configuration Factory 1.0.12, and Apache Sling Parent POM 19 (March 31st, 2014)</li>
 <li>New Releases: Apache Sling API 2.7.0, Apache Sling JCR Resource 2.3.6, Apache Sling JMX Resource Provider 1.0.2, and Apache Sling Resource Merger 1.1.2 (March 24th 2014)</li>
 <li>New Release: Apache Sling Model Implementation 1.0.2 (March 18th 2014)</li>
@@ -217,7 +217,7 @@
 <em> SVN moved to http://svn.apache.org/repos/asf/sling (June 18, 2009)
 </em> Apache Sling has graduated into a top level project! (June 17, 2009)</p>
       <div class="timestamp" style="margin-top: 30px; font-size: 80%; text-align: right;">
-        Rev. 1585430 by stefanegli on Mon, 7 Apr 2014 08:52:16 +0000
+        Rev. 1588142 by cziegeler on Thu, 17 Apr 2014 07:11:17 +0000
       </div>
       <div class="trademarkFooter"> 
         Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project