[CalendarServer-changes] [3538] CalendarServer/trunk

source_changes at macosforge.org source_changes at macosforge.org
Tue Dec 16 19:17:02 PST 2008


Revision: 3538
          http://trac.macosforge.org/projects/calendarserver/changeset/3538
Author:   sagen at apple.com
Date:     2008-12-16 19:17:02 -0800 (Tue, 16 Dec 2008)
Log Message:
-----------
Get the new vobject (212) to make use of the speed improvements I just added in parsing icalendar

Modified Paths:
--------------
    CalendarServer/trunk/lib-patches/vobject/vobject.base.patch
    CalendarServer/trunk/lib-patches/vobject/vobject.icalendar.patch
    CalendarServer/trunk/run

Modified: CalendarServer/trunk/lib-patches/vobject/vobject.base.patch
===================================================================
--- CalendarServer/trunk/lib-patches/vobject/vobject.base.patch	2008-12-16 21:59:30 UTC (rev 3537)
+++ CalendarServer/trunk/lib-patches/vobject/vobject.base.patch	2008-12-17 03:17:02 UTC (rev 3538)
@@ -1,6 +1,6 @@
 Index: vobject/base.py
 ===================================================================
---- vobject/base.py	(revision 210)
+--- vobject/base.py	(revision 212)
 +++ vobject/base.py	(working copy)
 @@ -284,6 +284,8 @@
          self.value = copy.copy(copyit.value)

Modified: CalendarServer/trunk/lib-patches/vobject/vobject.icalendar.patch
===================================================================
--- CalendarServer/trunk/lib-patches/vobject/vobject.icalendar.patch	2008-12-16 21:59:30 UTC (rev 3537)
+++ CalendarServer/trunk/lib-patches/vobject/vobject.icalendar.patch	2008-12-17 03:17:02 UTC (rev 3538)
@@ -1,17 +1,17 @@
 Index: vobject/icalendar.py
 ===================================================================
---- vobject/icalendar.py	(revision 210)
+--- vobject/icalendar.py	(revision 212)
 +++ vobject/icalendar.py	(working copy)
-@@ -1660,9 +1660,10 @@
+@@ -1661,9 +1661,10 @@
                  else:
-                     current = current + char
+                     current.append(char)
              else:
 -                state = "read normal"
 +                #state = "read normal"
                  # leave unrecognized escaped characters for later passes
--                current = current + '\\' + char 
-+                #current = current + '\\' + char 
+-                current.append('\\' + char)
++                #current.append('\\' + char)
 +                raise ParseError("error: illegal escape sequence: '\\%s'" % (char,))
  
          elif state == "end":    #an end state
-             if current != "" or len(results) == 0:
+             if len(current) or len(results) == 0:

Modified: CalendarServer/trunk/run
===================================================================
--- CalendarServer/trunk/run	2008-12-16 21:59:30 UTC (rev 3537)
+++ CalendarServer/trunk/run	2008-12-17 03:17:02 UTC (rev 3538)
@@ -671,7 +671,7 @@
     ;;
 esac;
 svn_uri="${base}/vobject/trunk";
-svn_get "vObject" "${vobject}" "${svn_uri}" 210;
+svn_get "vObject" "${vobject}" "${svn_uri}" 212;
 
 py_install "vObject" "${vobject}";
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20081216/96ad6b50/attachment.html>


More information about the calendarserver-changes mailing list