[chandler-users] Bi-directional Google support?

Reid Ellis rae at osafoundation.org
Tue Feb 5 16:44:46 PST 2008


On Feb 5, 2008, at 16:29, Jeffrey Harris wrote:
> Hi,
>
>> Where can I get it and thank you for your response.
>
> Here's a link to the plugin page:
>
> http://pypi.python.org/pypi/Chandler-gdataPlugin/0.7
>
> I haven't tested this recently, so I'm not sure how stable it is.  
> Please let us know how it works for you!
>
> Sincerely,
> Jeffrey

I just tried out the Google Calendar plugin, and it seems to work as  
Jeffrey describes -- no recurring events show up. The only other hitch  
is that clicking "Test" in the Accounts dialog when setting it up  
causes this exception:


Traceback (most recent call last):
   File "/Volumes/Rodan/Users/Shared/work/osaf/chandler/chandler/ 
application/dialogs/AccountPreferences.py", line 1858, in  
OnTestAccount    raise Exception("Internal Exception")

For which I wrote this quick patch:


Index: application/dialogs/AccountPreferences.py
===================================================================
--- application/dialogs/AccountPreferences.py   (revision 16221)
+++ application/dialogs/AccountPreferences.py   (working copy)
@@ -1855,7 +1855,7 @@
          else:
              # If this code is reached then there is a
              # bug which needs to be fixed.
-            raise Exception("Internal Exception")
+            return alertError(_(u"This type of account does not  
support testing"), self)

      def OnIncomingDiscovery(self, evt):
          if not Globals.mailService.isOnline():

Reid



More information about the chandler-users mailing list