Return-Path: Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: (qmail 46920 invoked from network); 19 Mar 2008 15:14:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Mar 2008 15:14:11 -0000 Received: (qmail 68174 invoked by uid 500); 19 Mar 2008 15:14:09 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 68150 invoked by uid 500); 19 Mar 2008 15:14:09 -0000 Mailing-List: contact commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list commits@jackrabbit.apache.org Received: (qmail 68140 invoked by uid 99); 19 Mar 2008 15:14:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Mar 2008 08:14:08 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Mar 2008 15:13:27 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 031BB1A9832; Wed, 19 Mar 2008 08:13:47 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r638863 - in /jackrabbit/trunk: jackrabbit-core/src/main/java/org/apache/jackrabbit/core/config/ jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/ jackrabbit-core/src/test/repository/ jackrabbit-jcr2spi/src/test/resources/ Date: Wed, 19 Mar 2008 15:13:44 -0000 To: commits@jackrabbit.apache.org From: angela@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080319151347.031BB1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: angela Date: Wed Mar 19 08:13:40 2008 New Revision: 638863 URL: http://svn.apache.org/viewvc?rev=638863&view=rev Log: JCR-1104 : JSR 283 support JCR-1171 : Contribute Pluggable Permission and User Management to Jackrabbit -> fixing DOCTYPE again (merci marcel!) Modified: jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/config/ConfigurationEntityResolver.java jackrabbit/trunk/jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/repository.xml jackrabbit/trunk/jackrabbit-core/src/test/repository/repository.xml jackrabbit/trunk/jackrabbit-jcr2spi/src/test/resources/repository.xml Modified: jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/config/ConfigurationEntityResolver.java URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/config/ConfigurationEntityResolver.java?rev=638863&r1=638862&r2=638863&view=diff ============================================================================== --- jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/config/ConfigurationEntityResolver.java (original) +++ jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/config/ConfigurationEntityResolver.java Wed Mar 19 08:13:40 2008 @@ -33,10 +33,12 @@ *
  • -//The Apache Software Foundation//DTD Jackrabbit 1.0//EN
  • *
  • -//The Apache Software Foundation//DTD Jackrabbit 1.2//EN
  • *
  • -//The Apache Software Foundation//DTD Jackrabbit 1.4//EN
  • + *
  • -//The Apache Software Foundation//DTD Jackrabbit 1.5//EN
  • * *

    * Also the following system identifiers are mapped to local resources: *

      + *
    • http://jackrabbit.apache.org/dtd/repository-1.5.dtd
    • *
    • http://jackrabbit.apache.org/dtd/repository-1.4.dtd
    • *
    • http://jackrabbit.apache.org/dtd/repository-1.2.dtd
    • *
    • http://jackrabbit.apache.org/dtd/repository-1.0.dtd
    • @@ -67,6 +69,14 @@ * Creates the singleton instance of this class. */ private ConfigurationEntityResolver() { + // Apache Jackrabbit 1.5 DTD + publicIds.put( + "-//The Apache Software Foundation//DTD Jackrabbit 1.5//EN", + "repository-1.5.dtd"); + systemIds.put( + "http://jackrabbit.apache.org/dtd/repository-1.5.dtd", + "repository-1.5.dtd"); + // Apache Jackrabbit 1.4 DTD publicIds.put( "-//The Apache Software Foundation//DTD Jackrabbit 1.4//EN", Modified: jackrabbit/trunk/jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/repository.xml URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/repository.xml?rev=638863&r1=638862&r2=638863&view=diff ============================================================================== --- jackrabbit/trunk/jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/repository.xml (original) +++ jackrabbit/trunk/jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/repository.xml Wed Mar 19 08:13:40 2008 @@ -16,7 +16,7 @@ limitations under the License. --> + "http://jackrabbit.apache.org/dtd/repository-1.5.dtd"> + "http://jackrabbit.apache.org/dtd/repository-1.5.dtd"> + "http://jackrabbit.apache.org/dtd/repository-1.5.dtd">