Re: [O] An org-attach link type [7.9.1 (7.9.1-elpa @ /home/youngfrog/.emacs.d/elpa/org-20120903/)]

2012-09-28 Thread Bastien
Hi Nicolas, thanks for the patches. Unless I'm wrong, you did not assign your copyright to the FSF yet for such changes. Would you like to? If yes please fill this form: http://orgmode.org/cgit.cgi/org-mode.git/plain/request-assign-future.txt It can take 1-2 months before the process is

Re: [O] An org-attach link type [7.9.1 (7.9.1-elpa @ /home/youngfrog/.emacs.d/elpa/org-20120903/)]

2012-09-27 Thread Nicolas Richard
Bastien b...@altern.org writes: If you feel like adding the attach link type to org-attach.el Second part, which is the actual attach link part. -- N. -- 8 -- From 85f5c10d8d448e56458377f166413f7de6458563 Mon Sep 17 00:00:00 2001 From: nrichard (geodiff-mac3) nrich...@ulb.ac.be Date: Thu, 27

Re: [O] An org-attach link type [7.9.1 (7.9.1-elpa @ /home/youngfrog/.emacs.d/elpa/org-20120903/)]

2012-09-22 Thread Viktor Rosenfeld
Hi Nicolas, I played around with your function and it's pretty nifty, but I had to make a few changes to get it working: - I have to load the cl module, otherwise the case function is void. - I had to replace find-lisp-find-files with directory-files because the former does not exist on my

Re: [O] An org-attach link type [7.9.1 (7.9.1-elpa @ /home/youngfrog/.emacs.d/elpa/org-20120903/)]

2012-09-22 Thread Nicolas Richard
Hello Viktor, Thanks for your input. - I have to load the cl module, otherwise the case function is void. Sorry about that. I didn't notice it was from cl. - I had to replace find-lisp-find-files with directory-files because the former does not exist on my Emacs installation. I use GNU

Re: [O] An org-attach link type [7.9.1 (7.9.1-elpa @ /home/youngfrog/.emacs.d/elpa/org-20120903/)]

2012-09-22 Thread Bastien
Hi Nicolas, I pushed a slightly modified version of your patch in master. Thanks for this! If you feel like adding the attach link type to org-attach.el please go ahead and provide a patch. Beware of the format of the patch, though: it must contain a proper ChangeLog. See

Re: [O] An org-attach link type [7.9.1 (7.9.1-elpa @ /home/youngfrog/.emacs.d/elpa/org-20120903/)]

2012-09-22 Thread Viktor Rosenfeld
Hi Nicolas, Nicolas Richard wrote: Hello Viktor, Thanks for your input. - I have to load the cl module, otherwise the case function is void. Sorry about that. I didn't notice it was from cl. - I had to replace find-lisp-find-files with directory-files because the former does

[O] An org-attach link type [7.9.1 (7.9.1-elpa @ /home/youngfrog/.emacs.d/elpa/org-20120903/)]

2012-09-19 Thread Nicolas Richard
Hello there, Some people already have suggested and produced some code (see [1,2]) in order to have an attach (or att, as it was called) link type in org-mode. I never found a org--complete-link function for these links on the net, so I tried to write it for myself. In order to do that, I had to