You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by an...@apache.org on 2014/02/17 14:56:49 UTC

svn commit: r1568993 - /jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/core/ContentRepositoryImpl.java

Author: angela
Date: Mon Feb 17 13:56:48 2014
New Revision: 1568993

URL: http://svn.apache.org/r1568993
Log:
    OAK-1408

Descriptors: wrong value for OPTION_WORKSPACE_MANAGEMENT_SUPPORTED

Modified:
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/core/ContentRepositoryImpl.java

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/core/ContentRepositoryImpl.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/core/ContentRepositoryImpl.java?rev=1568993&r1=1568992&r2=1568993&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/core/ContentRepositoryImpl.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/core/ContentRepositoryImpl.java Mon Feb 17 13:56:48 2014
@@ -231,12 +231,15 @@ public class ContentRepositoryImpl imple
                 .put(OPTION_UPDATE_MIXIN_NODE_TYPES_SUPPORTED, trueValue, true, true)
                 .put(OPTION_UPDATE_PRIMARY_NODE_TYPE_SUPPORTED, trueValue, true, true)
                 .put(OPTION_VERSIONING_SUPPORTED, trueValue, true, true)
-                .put(OPTION_WORKSPACE_MANAGEMENT_SUPPORTED, trueValue, true, true)
+                // TODO OAK-118
+                .put(OPTION_WORKSPACE_MANAGEMENT_SUPPORTED, falseValue, true, true)
                 // xml export support added via JCR layer
                 .put(OPTION_XML_EXPORT_SUPPORTED, falseValue, true, true)
                 // xml import support added via JCR layer
                 .put(OPTION_XML_IMPORT_SUPPORTED, falseValue, true, true)
+                // TODO OAK-827
                 .put(OPTION_ACTIVITIES_SUPPORTED, falseValue, true, true)
+                // TODO OAK-1403
                 .put(OPTION_BASELINES_SUPPORTED, falseValue, true, true)
                 .put(QUERY_FULL_TEXT_SEARCH_SUPPORTED, falseValue, true, true)
                 .put(QUERY_JOINS, valueFactory.createValue(QUERY_JOINS_NONE), true, true)