You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ss...@apache.org on 2017/05/18 14:29:49 UTC

svn commit: r1795539 - in /sling/site/trunk/content/documentation/bundles/context-aware-configuration: context-aware-configuration-override.mdtext context-aware-configuration-spi.mdtext

Author: sseifert
Date: Thu May 18 14:29:49 2017
New Revision: 1795539

URL: http://svn.apache.org/viewvc?rev=1795539&view=rev
Log:
fix typos

Modified:
    sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-override.mdtext
    sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-spi.mdtext

Modified: sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-override.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-override.mdtext?rev=1795539&r1=1795538&r2=1795539&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-override.mdtext (original)
+++ sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-override.mdtext Thu May 18 14:29:49 2017
@@ -5,7 +5,7 @@ Title: Apache Sling Context-Aware Config
 
 # About
 
-Using overrides it is possible to override context-aware configuration globally or for specific content paths (and their subtrees) within an instance. This overrides the configuration read and inherited by the default ways.
+Using overrides it is possible to override context-aware configuration values globally or for specific content paths (and their subtrees) within an instance. If an override is active the Configuration API returns the overridden values instead of the values from the configuration resources.
 
 An example use case is to overwrite the Site URLs on your staging system which has a copy of the configuration content of the production system installed.
 

Modified: sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-spi.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-spi.mdtext?rev=1795539&r1=1795538&r2=1795539&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-spi.mdtext (original)
+++ sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration-spi.mdtext Thu May 18 14:29:49 2017
@@ -36,12 +36,12 @@ By providing an implementation of `org.a
 
 # Configuration Inheritance Strategy
 
-By providing an implementation of `org.apache.sling.caconfig.spi.ConfigurationInheritanceStrategy` you can define if and how resource are inherited across the inheritance chain.
+By providing an implementation of `org.apache.sling.caconfig.spi.ConfigurationInheritanceStrategy` you can define if and how resources are inherited across the inheritance chain.
 
 
 # Configuration Persistence Strategy
 
-By providing an implementation of `org.apache.sling.caconfig.spi.ConfigurationPersistenceStrategy2` you can define the peristence structure of the configuration within the configuration resources.
+By providing an implementation of `org.apache.sling.caconfig.spi.ConfigurationPersistenceStrategy2` you can define the persistence structure of the configuration within the configuration resources.
 
 E.g. you could use a specific JCR node type or slightly different content structure to store the configuration data.
 
@@ -53,6 +53,6 @@ By providing an implementation of `org.a
 
 # Configuration Override Provider
 
-By providing an implementation of `org.apache.sling.caconfig.spi.ConfigurationOverrideProvider` you can provide your own overrides - if the built-in override provider do not fit your needs.
+By providing an implementation of `org.apache.sling.caconfig.spi.ConfigurationOverrideProvider` you can provide your own overrides - if the built-in override providers do not fit your needs.
 
 See [Override](http://sling.apache.org/documentation/bundles/context-aware-configuration/context-aware-configuration-override.html) for the list of built-in providers and the override syntax.