From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Baumann Subject: Re: get bbdb entry from org-agenda Date: Fri, 30 May 2008 19:28:39 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K28PS-0007oL-K6 for emacs-orgmode@gnu.org; Fri, 30 May 2008 13:28:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K28PQ-0007na-T7 for emacs-orgmode@gnu.org; Fri, 30 May 2008 13:28:58 -0400 Received: from [199.232.76.173] (port=52770 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K28PQ-0007nX-OK for emacs-orgmode@gnu.org; Fri, 30 May 2008 13:28:56 -0400 Received: from main.gmane.org ([80.91.229.2]:57829 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1K28PQ-00010r-Ci for emacs-orgmode@gnu.org; Fri, 30 May 2008 13:28:56 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1K28PK-00070q-2y for emacs-orgmode@gnu.org; Fri, 30 May 2008 17:28:50 +0000 Received: from p54963898.dip0.t-ipconnect.de ([84.150.56.152]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 May 2008 17:28:50 +0000 Received: from dtbaumann by p54963898.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 May 2008 17:28:50 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, the display of bbdb-anniversaries can be customized to use a function to insert a link to bbdb: M-x customize-option org-bbdb-anniversary-format-alist and then add/change (("birthday" lambda (name years suffix) (concat "Birthday: [[bbdb:" name "][" name " (" (number-to-string years) suffix ")]]")) ("wedding" lambda (name years suffix) (concat "[[bbdb:" name "][" name "'s " (number-to-string years) suffix " wedding anniversary]]"))) If one doesn't like to use a function, an alternative would be (("birthday" . "Birthday: [[bbdb:%s]] (%d%s)") ("wedding" . "[[bbdb:%s]]'s %d%s wedding anniversary")) but this leaves the agenda with bbdb:Name links. I don't think I know how to make jump to the bbdb-buffer instead to the org-file Ciao Thomas PS. Carsten should we make the function the default behaviour?