From: David Abrahams <dave@boostpro.com> To: emacs-orgmode@gnu.org Subject: Patch for growl notifications without uncommenting hacks Date: Sun, 05 Apr 2009 20:49:23 -0400 [thread overview] Message-ID: <m2prfqobcc.fsf@boostpro.com> (raw) [-- Attachment #1: Type: text/plain, Size: 629 bytes --] This patch to org-mac-message.el should make it show growl notifications when searching for flagged messages and growl is running, and work silently otherwise. It's a little more complicated than it needs to be, since as noted in a comment about the "double-tell" idiom, using the creator code to find the application is probably not going to work unless the application's name is exactly "GrowlHelperApp" anyway, but I am not motivated to simpilify this more now that I have it working. Someone else is welcome to improve on it. Anyone is welcome to use this patch for any purpose. I hereby place it in the public domain. [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: org-mac-message.diff --] [-- Type: text/x-patch, Size: 3955 bytes --] diff --git a/lisp/org-mac-message.el b/lisp/org-mac-message.el index d91a575..6f5d634 100644 --- a/lisp/org-mac-message.el +++ b/lisp/org-mac-message.el @@ -101,26 +101,49 @@ This will use the command `open' with the message URL." "AppleScript to create links to flagged messages in Mail.app" (do-applescript (concat - "tell application \"Mail\"\n" - "set theMailboxes to every mailbox of account \"" org-mac-mail-account "\"\n" - "set theLinkList to {}\n" - "repeat with aMailbox in theMailboxes\n" - "set theSelection to (every message in aMailbox whose flagged status = true)\n" - "repeat with theMessage in theSelection\n" - "set theID to message id of theMessage\n" - "set theSubject to subject of theMessage\n" - "set theLink to \"message://\" & theID & \"::split::\" & theSubject & \"\n\"\n" - "copy theLink to end of theLinkList\n" - ;; "tell application \"GrowlHelperApp\"\n" - ;; "set the allNotificationsList to {\"FlaggedMail\"}\n" - ;; "set the enabledNotificationsList to allNotificationsList\n" - ;; "register as application \"FlaggedMail\" all notifications allNotificationsList default notifications enabledNotificationsList icon of application \"Mail\"\n" - ;; "notify with name \"FlaggedMail\" title \"Importing flagged message\" description theSubject application name \"FlaggedMail\"\n" - ;; "end tell\n" - "end repeat\n" - "end repeat\n" - "return theLinkList as string\n" - "end tell"))) +;; Locate the GrowlHelperApp application, even if its name has a version number appended +"tell application \"System Events\"\n" + "set growlHelpers to the name of every process whose creator type contains \"GRRR\"\n" + "if (count of growlHelpers) > 0 then\n" + "set growlHelperApp to item 1 of growlHelpers\n" + "else\n" + "set growlHelperApp to \"\"\n" + "end if\n" +"end tell\n" + +"tell application \"Mail\"\n" + "set theMailboxes to every mailbox of account \"BoostPro\"\n" + "set theLinkList to {}\n" + "repeat with aMailbox in theMailboxes\n" + "set theSelection to (every message in aMailbox whose flagged status = true)\n" + "repeat with theMessage in theSelection\n" + "set theID to message id of theMessage\n" + "set theSubject to subject of theMessage\n" + "set theLink to \"message://\" & theID & \"::split::\" & theSubject & \"\n" + "\"\n" + "copy theLink to end of theLinkList\n" + "if growlHelperApp is not \"\" then\n" + ;; This "double tell" idiom is described in detail at + ;; http://macscripter.net/viewtopic.php?id=24570 The + ;; script compiler needs static knowledge of the + ;; growlHelperApp. Hmm, since we're compiling + ;; on-the-fly here, this is likely to be way less + ;; portable than I'd hoped. It'll work when the name + ;; is still "GrowlHelperApp", though. + "tell application \"GrowlHelperApp\"\n" + "tell application growlHelperApp\n" + "set the allNotificationsList to {\"FlaggedMail\"}\n" + "set the enabledNotificationsList to allNotificationsList\n" + "register as application \"FlaggedMail\" all notifications allNotificationsList default notifications enabledNotificationsList icon of application \"Mail\"\n" + "notify with name \"FlaggedMail\" title \"Importing flagged message\" description theSubject application name \"FlaggedMail\"\n" + "end tell\n" + "end tell\n" + "end if\n" + "end repeat\n" + "end repeat\n" + "return theLinkList as string\n" +"end tell\n" + ))) (defun org-mac-message-get-links (select-or-flag) "Create links to the messages currently selected or flagged in [-- Attachment #3: Type: text/plain, Size: 62 bytes --] -- Dave Abrahams BoostPro Computing http://www.boostpro.com [-- Attachment #4: Type: text/plain, Size: 204 bytes --] _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode
next reply other threads:[~2009-04-06 0:49 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2009-04-06 0:49 David Abrahams [this message] 2009-04-06 22:27 ` Christopher Suckling 2009-04-07 0:16 ` David Abrahams 2009-04-07 8:12 ` Christopher Suckling [not found] ` <4F5F2D2E-636B-43CC-A957-1B29CC84BD99@boostpro.com> 2009-04-07 21:50 ` Christopher Suckling 2009-04-08 13:06 ` Carsten Dominik
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: https://www.orgmode.org/ * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=m2prfqobcc.fsf@boostpro.com \ --to=dave@boostpro.com \ --cc=emacs-orgmode@gnu.org \ --subject='Re: Patch for growl notifications without uncommenting hacks' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Code repositories for project(s) associated with this inbox: https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).