[CalendarServer-changes] [578] CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/ directory/resource.py

source_changes at macosforge.org source_changes at macosforge.org
Wed Nov 22 19:55:52 PST 2006


Revision: 578
          http://trac.macosforge.org/projects/calendarserver/changeset/578
Author:   cdaboo at apple.com
Date:     2006-11-22 19:55:52 -0800 (Wed, 22 Nov 2006)

Log Message:
-----------
Collection URL must end in "/".

Modified Paths:
--------------
    CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/directory/resource.py

Modified: CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/directory/resource.py
===================================================================
--- CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/directory/resource.py	2006-11-23 00:18:55 UTC (rev 577)
+++ CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/directory/resource.py	2006-11-23 03:55:52 UTC (rev 578)
@@ -126,7 +126,7 @@
         @param directory: an L{IDirectoryService} to provision calendars from.
         @param recordType: the directory record type to provision.
         """
-        CalendarPrincipalCollectionResource.__init__(self, joinURL(parent.collectionURL(), recordType))
+        CalendarPrincipalCollectionResource.__init__(self, joinURL(parent.collectionURL(), recordType) + "/")
         DAVFile.__init__(self, path)
 
         self.directory = parent.directory

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20061122/c1fc8038/attachment.html


More information about the calendarserver-changes mailing list