From commits-return-6767-apmail-jackrabbit-commits-archive=jackrabbit.apache.org@jackrabbit.apache.org Tue Dec 23 16:15:49 2008 Return-Path: Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: (qmail 3615 invoked from network); 23 Dec 2008 16:15:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Dec 2008 16:15:49 -0000 Received: (qmail 60554 invoked by uid 500); 23 Dec 2008 16:15:49 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 60524 invoked by uid 500); 23 Dec 2008 16:15:49 -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 60515 invoked by uid 99); 23 Dec 2008 16:15:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Dec 2008 08:15:49 -0800 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.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Dec 2008 16:15:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2644A238896C; Tue, 23 Dec 2008 08:15:28 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r729020 - in /jackrabbit/sandbox/jcr-cmis: ./ server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/ server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/ Date: Tue, 23 Dec 2008 16:15:27 -0000 To: commits@jackrabbit.apache.org From: paolo@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081223161528.2644A238896C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: paolo Date: Tue Dec 23 08:15:27 2008 New Revision: 729020 URL: http://svn.apache.org/viewvc?rev=729020&view=rev Log: License added to some files; cmis2jcr-mapping text file Added: jackrabbit/sandbox/jcr-cmis/cmis2jcr-mapping.txt Modified: jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/AbstractRepositoryProvider.java jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/CMISRepositoryInfo.java jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/RepositoryInfoTest.java jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/SimpleRepositoryProvider.java Added: jackrabbit/sandbox/jcr-cmis/cmis2jcr-mapping.txt URL: http://svn.apache.org/viewvc/jackrabbit/sandbox/jcr-cmis/cmis2jcr-mapping.txt?rev=729020&view=auto ============================================================================== --- jackrabbit/sandbox/jcr-cmis/cmis2jcr-mapping.txt (added) +++ jackrabbit/sandbox/jcr-cmis/cmis2jcr-mapping.txt Tue Dec 23 08:15:27 2008 @@ -0,0 +1,23 @@ +# +# This file provides a first mapping between CMIS and JCR +# + +*** Repository Info *** +repositoryId -> +repositoryName -> REP_NAME_DESC +repositoryRelationship -> SELF +repositoryDescription -> REP_NAME_DESC +vendorName -> REP_VENDOR_DESC +productName -> REP_NAME_DESC +productVersion -> REP_VERSION_DESC +rootFolderId -> rootNode().getUUID() +*** Repository Capabilities *** +multifiling -> TRUE +unfiling -> TRUE +versionSpecificFiling -> +PWCUpdatable -> +PWCSearchable -> +allVersionSearchable -> +capabilityQuery -> BOTH +capabilityJoin -> NOJOIN +capabilityFullText -> FULLTEXTANDSTRUCTURED Modified: jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/AbstractRepositoryProvider.java URL: http://svn.apache.org/viewvc/jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/AbstractRepositoryProvider.java?rev=729020&r1=729019&r2=729020&view=diff ============================================================================== --- jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/AbstractRepositoryProvider.java (original) +++ jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/AbstractRepositoryProvider.java Tue Dec 23 08:15:27 2008 @@ -1,3 +1,19 @@ +/* + * 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. + */ package org.apache.jackrabbit.cmis.server.atompub; import java.io.IOException; Modified: jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/CMISRepositoryInfo.java URL: http://svn.apache.org/viewvc/jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/CMISRepositoryInfo.java?rev=729020&r1=729019&r2=729020&view=diff ============================================================================== --- jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/CMISRepositoryInfo.java (original) +++ jackrabbit/sandbox/jcr-cmis/server/atompub/src/main/java/org/apache/jackrabbit/cmis/server/atompub/CMISRepositoryInfo.java Tue Dec 23 08:15:27 2008 @@ -1,3 +1,19 @@ +/* + * 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. + */ package org.apache.jackrabbit.cmis.server.atompub; import javax.xml.namespace.QName; Modified: jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/RepositoryInfoTest.java URL: http://svn.apache.org/viewvc/jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/RepositoryInfoTest.java?rev=729020&r1=729019&r2=729020&view=diff ============================================================================== --- jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/RepositoryInfoTest.java (original) +++ jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/RepositoryInfoTest.java Tue Dec 23 08:15:27 2008 @@ -1,3 +1,19 @@ +/* + * 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. + */ package org.apache.jackrabbit.cmis.server.atompub; import java.io.InputStream; Modified: jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/SimpleRepositoryProvider.java URL: http://svn.apache.org/viewvc/jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/SimpleRepositoryProvider.java?rev=729020&r1=729019&r2=729020&view=diff ============================================================================== --- jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/SimpleRepositoryProvider.java (original) +++ jackrabbit/sandbox/jcr-cmis/server/atompub/src/test/java/org/apache/jackrabbit/cmis/server/atompub/SimpleRepositoryProvider.java Tue Dec 23 08:15:27 2008 @@ -1,3 +1,19 @@ +/* + * 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. + */ package org.apache.jackrabbit.cmis.server.atompub; import java.util.HashSet;