You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by mr...@apache.org on 2008/01/09 14:04:50 UTC

svn commit: r610377 - in /jackrabbit/branches/1.4/jackrabbit-core: ./ src/main/resources-filtered/ src/main/resources-filtered/org/ src/main/resources-filtered/org/apache/ src/main/resources-filtered/org/apache/jackrabbit/ src/main/resources-filtered/o...

Author: mreutegg
Date: Wed Jan  9 05:04:44 2008
New Revision: 610377

URL: http://svn.apache.org/viewvc?rev=610377&view=rev
Log:
JCR-1298: Wrong schemaObjectPrefix parameter in default repository.xml

Added:
    jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/
    jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/
    jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/apache/
    jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/apache/jackrabbit/
    jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/apache/jackrabbit/core/
    jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/apache/jackrabbit/core/repository.properties   (with props)
Removed:
    jackrabbit/branches/1.4/jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/repository.properties
Modified:
    jackrabbit/branches/1.4/jackrabbit-core/pom.xml

Modified: jackrabbit/branches/1.4/jackrabbit-core/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/branches/1.4/jackrabbit-core/pom.xml?rev=610377&r1=610376&r2=610377&view=diff
==============================================================================
--- jackrabbit/branches/1.4/jackrabbit-core/pom.xml (original)
+++ jackrabbit/branches/1.4/jackrabbit-core/pom.xml Wed Jan  9 05:04:44 2008
@@ -230,6 +230,9 @@
     <resources>
       <resource>
         <directory>src/main/resources</directory>
+      </resource>
+      <resource>
+        <directory>src/main/resources-filtered</directory>
         <filtering>true</filtering>
       </resource>
     </resources>

Added: jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/apache/jackrabbit/core/repository.properties
URL: http://svn.apache.org/viewvc/jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/apache/jackrabbit/core/repository.properties?rev=610377&view=auto
==============================================================================
--- jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/apache/jackrabbit/core/repository.properties (added)
+++ jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/apache/jackrabbit/core/repository.properties Wed Jan  9 05:04:44 2008
@@ -0,0 +1,70 @@
+#
+#  Licensed to the Apache Software Foundation (ASF) under one or more
+#  contributor license agreements.  See the NOTICE file distributed with
+#  this work for additional information regarding copyright ownership.
+#  The ASF licenses this file to You under the Apache License, Version 2.0
+#  (the "License"); you may not use this file except in compliance with
+#  the License.  You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+
+################################################################################
+# Repository Version and Implementation Information
+#
+
+# The descriptor for the version of the specification that this repository implements.
+jcr.specification.version = 1.0
+
+# The descriptor for the name of the specification that this repository implements.
+jcr.specification.name = Content Repository API for Java(TM) Technology Specification
+
+# The descriptor for the name of the repository vendor.
+jcr.repository.vendor = Apache Software Foundation
+
+# The descriptor for the URL of the repository vendor.
+jcr.repository.vendor.url = http://jackrabbit.apache.org/
+
+# The descriptor for the name of this repository implementation.
+jcr.repository.name = Jackrabbit
+
+# The descriptor for the version of this repository implementation.
+jcr.repository.version = ${pom.version}
+
+################################################################################
+# Repository features and support information
+#
+
+# The presence of this key indicates that this implementation supports
+# all level 1 features. This key will always be present.
+level.1.supported = true
+
+# The presence of this key indicates that this implementation supports all level 2 features.
+level.2.supported = true
+
+# The presence of this key indicates that this implementation supports transactions.
+option.transactions.supported = true
+
+# The presence of this key indicates that this implementation supports versioning.
+option.versioning.supported = true
+
+# The presence of this key indicates that this implementation supports observation.
+option.observation.supported = true
+
+# The presence of this key indicates that this implementation supports locking.
+option.locking.supported = true
+
+# The presence of this key indicates that this implementation supports the SQL query language.
+option.query.sql.supported = true
+
+# The presence of this key indicates that the index position notation for same-name siblings is supported within XPath queries.
+query.xpath.pos.index = true
+
+# The presence of this key indicates that XPath queries return results in document order.
+query.xpath.doc.order = true
+

Propchange: jackrabbit/branches/1.4/jackrabbit-core/src/main/resources-filtered/org/apache/jackrabbit/core/repository.properties
------------------------------------------------------------------------------
    svn:eol-style = native