You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2013/10/08 21:25:56 UTC

svn commit: r1530400 - /sling/site/trunk/content/documentation/configuration.mdtext

Author: dklco
Date: Tue Oct  8 19:25:55 2013
New Revision: 1530400

URL: http://svn.apache.org/r1530400
Log:
Fixing a list and the tables on the configuration page

Modified:
    sling/site/trunk/content/documentation/configuration.mdtext

Modified: sling/site/trunk/content/documentation/configuration.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/configuration.mdtext?rev=1530400&r1=1530399&r2=1530400&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/configuration.mdtext (original)
+++ sling/site/trunk/content/documentation/configuration.mdtext Tue Oct  8 19:25:55 2013
@@ -36,8 +36,8 @@ The Sling launcher is responsible to pro
 1. Handle OSGi boot delegation support (see below).
 1. Resolve property references of the form `${propName`}
 1. For each property value starting with `ontext:/` do the following, assuming the value to be an URL with scheme `context:`:
-1. * Copy the application resource to `${sling.home`} preserving the URL path unless such a file already exists.
-1. * Replace the property value with the path to the newly created file. The path has the form `${sling.home}/relpath`.
+    * Copy the application resource to `${sling.home`} preserving the URL path unless such a file already exists.
+    * Replace the property value with the path to the newly created file. The path has the form `${sling.home}/relpath`.
 1. Store the properties as `${sling.home}/sling.properties` to be re-used on next startup
 1. Setup Bundle auto installation for the Felix Framework
 
@@ -118,6 +118,8 @@ Sometimes, especially in the Servlet Con
 
 *Examples*
 
+| Configuration | Description |
+|--|--|
 | `sling.bootdelegation.simple = com.some.package` | This setting unconditionally adds the `com.some.package` package to the `org.osgi.framework.bootdelegation` property |
 | `sling.bootdelegation.class.com.some.other.Main = com.some.other` | This setting checks whether the `com.some.other.Main` class is known. If so, the `com.some.other` package is added to the `org.osgi.framework.bootdelegation` property. Otherwise the `com.some.other` package is not added - and therefore must be exported by a bundle if required for use inside the framework. |
 
@@ -132,6 +134,8 @@ As listed in the above section on OSGi B
 
 *Examples*
 
+| Configuration | Description |
+|--|--|
 | `sling.system.packages.simple = com.some.package` | This setting unconditionally adds the `com.some.package` package to the `org.osgi.framework.system.packages` property |
 | `sling.system.packages.class.com.some.other.Main = com.some.other` | This setting checks whether the `com.some.other.Main` class is known. If so, the `com.some.other` package is added to the `org.osgi.framework.system.packages` property. Otherwise the `com.some.other` package is not added - and therefore must be exported by a bundle if required for use inside the framework. |