Author: sseifert
Date: Thu Jul 20 13:05:33 2017
New Revision: 1802481
URL: http://svn.apache.org/viewvc?rev=1802481&view=rev
Log:
fix typo
Modified:
sling/site/trunk/content/documentation/bundles/resource-merger.mdtext
Modified: sling/site/trunk/content/documentation/bundles/resource-merger.mdtext
URL:
http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/resource-merger.mdtext?rev=1802481&r1=1802480&r2=1802481&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/bundles/resource-merger.mdtext
(original)
+++ sling/site/trunk/content/documentation/bundles/resource-merger.mdtext Thu
Jul 20 13:05:33 2017
@@ -33,7 +33,7 @@ Property Name | Type | Description
sling:hideProperties | String[] | Hides the properties with the given names.
`*` hides all properties (since version 1.3.2 the wildcard only affects
underlying properties and no longer local ones, see also
[SLING-5468](https://issues.apache.org/jira/browse/SLING-5468)).
sling:hideChildren| String[] | Hides the child resources with the given names.
`*` hides all child resources (since version 1.3.2 the wildcard only affects
underlying child resources and no longer local ones, see also
[SLING-5468](https://issues.apache.org/jira/browse/SLING-5468)). If one value
starts with `!` this is a negation (which means the property with the given
value should not be hidden). Since by default nothing is hidden the negation is
only useful if you specify multiple values for this property. E.g. giving the
values `[!child1,*]` hides all children except for the one with the name
`child1`. If you have a resource name starting with `!` you must escape it with
an additional `!` in front if you want to reference it in `sling:hideChildren`,
e.g. `!!child1` means that the resource with the name `!child1` should be
hidden.
sling:hideResource | Boolean | If `true` then the resource with the name which
contains this property should not be exposed!
-sling:orderBefore | String | Contains the name of the preceeding sibling
resource. This is influencing the order of resources when calling e.g.
`Resource.listChildren()` or `Resource.getChildren()` on the merged resource.
This is only necessary if the default child resource order is not sufficient
(see below).
+sling:orderBefore | String | Contains the name of the preceding sibling
resource. This is influencing the order of resources when calling e.g.
`Resource.listChildren()` or `Resource.getChildren()` on the merged resource.
This is only necessary if the default child resource order is not sufficient
(see below).
# Child Resource Order