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);
}