Bugs item #2927630, was opened at 2010-01-07 15:59
Message generated for change (Tracker Item Submitted) made by
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=114534&aid=2927630&group_id=14534
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: https://www.google.com/accounts ()
Assigned to: Nobody/Anonymous (nobody)
Summary: Growl Framework Does Not Work With PyObjc 2.2b3
Initial Comment:
The problem is outlined with a test case here: http://groups.google.com/group/growldiscuss/browse_thread/thread/ccd8601313ac13ec
An application can register to growl fine but posting notifications does not work using the following code:
GrowlApplicationBridge.notifyWithTitle_description_notificationName_iconData_priority_isSticky_clickContext_(u"Notification", "A description.", u"Notification", objc.nil, 0, objc.NO, objc.nil)
But it does work with the following code:
GrowlApplicationBridge.notifyWithTitle_description_notificationName_iconData_priority_isSticky_clickContext_(NSString.stringWithString_("Notification"), NSString.stringWithString_("A description."), NSString.stringWithString_("Notification"), objc.nil, 0, objc.NO, objc.nil)
For some reason it looks it requires a 'real' NSString to be passed through the bridge (not a OC_PythonString)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=114534&aid=2927630&group_id=14534
|