Return-Path: X-Original-To: apmail-chemistry-commits-archive@www.apache.org Delivered-To: apmail-chemistry-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DF2E4922B for ; Tue, 6 Mar 2012 19:23:45 +0000 (UTC) Received: (qmail 34632 invoked by uid 500); 6 Mar 2012 19:23:45 -0000 Delivered-To: apmail-chemistry-commits-archive@chemistry.apache.org Received: (qmail 34591 invoked by uid 500); 6 Mar 2012 19:23:45 -0000 Mailing-List: contact commits-help@chemistry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@chemistry.apache.org Delivered-To: mailing list commits@chemistry.apache.org Received: (qmail 34583 invoked by uid 99); 6 Mar 2012 19:23:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Mar 2012 19:23:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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, 06 Mar 2012 19:23:44 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C87BF23888CC; Tue, 6 Mar 2012 19:23:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1297660 - /chemistry/dotcmis/trunk/DotCMIS/binding/atompub/atompub-parser.cs Date: Tue, 06 Mar 2012 19:23:24 -0000 To: commits@chemistry.apache.org From: fmui@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120306192324.C87BF23888CC@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: fmui Date: Tue Mar 6 19:23:24 2012 New Revision: 1297660 URL: http://svn.apache.org/viewvc?rev=1297660&view=rev Log: CMIS-513: Fixed acl tag name Modified: chemistry/dotcmis/trunk/DotCMIS/binding/atompub/atompub-parser.cs Modified: chemistry/dotcmis/trunk/DotCMIS/binding/atompub/atompub-parser.cs URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/DotCMIS/binding/atompub/atompub-parser.cs?rev=1297660&r1=1297659&r2=1297660&view=diff ============================================================================== --- chemistry/dotcmis/trunk/DotCMIS/binding/atompub/atompub-parser.cs (original) +++ chemistry/dotcmis/trunk/DotCMIS/binding/atompub/atompub-parser.cs Tue Mar 6 19:23:24 2012 @@ -51,7 +51,7 @@ namespace DotCMIS.Binding.AtomPub allowableActionsXmlRoot.Namespace = AtomPubConstants.NamespaceRestAtom; AllowableActionsSerializer = new XmlSerializer(typeof(cmisAllowableActionsType), allowableActionsXmlRoot); - XmlRootAttribute aclXmlRoot = new XmlRootAttribute("accessControlList"); + XmlRootAttribute aclXmlRoot = new XmlRootAttribute("acl"); aclXmlRoot.Namespace = AtomPubConstants.NamespaceRestAtom; AclSerializer = new XmlSerializer(typeof(cmisAccessControlListType), aclXmlRoot); }