From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: target-links (backlink) relation and global radio targets Date: Fri, 8 Jun 2007 14:48:34 +0200 Message-ID: <7235c32e0720b638f2c50f6c6c7a273b@science.uva.nl> References: <87y7iuoqta.fsf@mail.ru> Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HwdtN-00007h-I5 for emacs-orgmode@gnu.org; Fri, 08 Jun 2007 08:48:37 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HwdtM-00007N-6o for emacs-orgmode@gnu.org; Fri, 08 Jun 2007 08:48:37 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HwdtM-00007K-01 for emacs-orgmode@gnu.org; Fri, 08 Jun 2007 08:48:36 -0400 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HwdtL-0002wn-Hj for emacs-orgmode@gnu.org; Fri, 08 Jun 2007 08:48:35 -0400 In-Reply-To: <87y7iuoqta.fsf@mail.ru> 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: Maxim Loginov Cc: emacs-orgmode@gnu.org On Jun 8, 2007, at 9:20, Maxim Loginov wrote: > I'm wondering if it is possible to see the all links from the target? > for example, I have project B depending on project A like this: > > #+SEQ_TODO: TODO NEXT WAITING DONE > * TODO project A > # <> > > * WAITING project B > project is waiting completion of [[project A]] > > when the project A is finished I'd like to check which one is depends > on it and > to switch it to state NEXT in order to start working on it. it would > be nice > to execute some function when cursor is on target <> and see > the sparse tree (headlines + some text) with all points where the link > to > the target occurs. is it possible to implement this with special > agenda view? Not a special agenda view, but you can use `org-occur' to create the corresponding sparse tree. In your example: C-c / \[project A\] RET Actually, this is useful, so this will become the default operation when pressing `C-c C-o' (org-open-at-point) on a target. Thanks. for the idea. > > one more question about radio targets: > is it difficult to implement global radio targets list for all files > referred > by org-agenda-files? No, see http://thread.gmane.org/gmane.emacs.orgmode/1306/match=radio+transmit > and update this list for example every tame agenda view > is called? > could anybody write a code snippet? How about you yourself if that is functionality you need? - Carsten