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 2018/05/25 13:05:11 UTC

[sling-whiteboard] 01/03: Fixing type of oak:index configurations

This is an automated email from the ASF dual-hosted git repository.

dklco pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git

commit 3aee769caeee1e552f187916150c6121ec675bcf
Author: Dan Klco <dk...@apache.org>
AuthorDate: Fri May 25 08:45:36 2018 -0400

    Fixing type of oak:index configurations
---
 cms/ui/src/main/resources/jcr_root/oak%3Aindex/published.json         | 4 ++--
 cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingPageLucene.json   | 4 ++++
 .../main/resources/jcr_root/oak%3Aindex/slingResourceSuperType.json   | 4 ++--
 cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingTemplate.json     | 4 ++--
 4 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/cms/ui/src/main/resources/jcr_root/oak%3Aindex/published.json b/cms/ui/src/main/resources/jcr_root/oak%3Aindex/published.json
index 412ae70..a94fd14 100644
--- a/cms/ui/src/main/resources/jcr_root/oak%3Aindex/published.json
+++ b/cms/ui/src/main/resources/jcr_root/oak%3Aindex/published.json
@@ -1,7 +1,7 @@
 {
   "jcr:primaryType": "oak:QueryIndexDefinition",
-  "propertyNames": [
-    "jcr:name:published"
+  "jcr:name:propertyNames": [
+    "published"
   ],
   "type": "property",
   "reindex": false,
diff --git a/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingPageLucene.json b/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingPageLucene.json
index 079ecab..1a6c0bc 100644
--- a/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingPageLucene.json
+++ b/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingPageLucene.json
@@ -47,6 +47,10 @@
 			"include3": {
 				"jcr:primaryType": "nt:unstructured",
 				"path": "*/*/*/*"
+			},
+			"include4": {
+				"jcr:primaryType": "nt:unstructured",
+				"path": "*/*/*/*/*"
 			}
 		}
 	},
diff --git a/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingResourceSuperType.json b/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingResourceSuperType.json
index f12eac3..7e6ae94 100644
--- a/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingResourceSuperType.json
+++ b/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingResourceSuperType.json
@@ -1,7 +1,7 @@
 {
 	"jcr:primaryType": "oak:QueryIndexDefinition",
-	"propertyNames": [
-		"jcr:name:sling:resourceSuperType"
+	"jcr:name:propertyNames": [
+		"sling:resourceSuperType"
 	],
 	"type": "property",
 	"reindex": false,
diff --git a/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingTemplate.json b/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingTemplate.json
index a361d40..f19b671 100644
--- a/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingTemplate.json
+++ b/cms/ui/src/main/resources/jcr_root/oak%3Aindex/slingTemplate.json
@@ -1,7 +1,7 @@
 {
 	"jcr:primaryType": "oak:QueryIndexDefinition",
-	"propertyNames": [
-		"jcr:name:sling:template"
+	"jcr:name:propertyNames": [
+		"sling:template"
 	],
 	"type": "property",
 	"reindex": false,

-- 
To stop receiving notification emails like this one, please contact
dklco@apache.org.