emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: John Kitchin <jkitchin@andrew.cmu.edu>
To: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: transitioning links defined in packages from pre org-9 to org-9
Date: Fri, 04 Nov 2016 08:15:08 -0400	[thread overview]
Message-ID: <m27f8jqw4z.fsf@Johns-MacBook-Air.local> (raw)

Hi,

I am working through a transition from org8 to org9, and trying to
figure out how to update packages that define links in way that doesn't
break people not ready to update org. For example, in mu4e there is an
mu4e link defined that needs to be updated so I can store links in
emails. Also, org-ref will get an overhaul on links, but a lot of my
students will still be on org-8.

Is something like this robust? Any other suggestions? 


(if (string-prefix-p "9" (org-release))
    (org-link-set-parameters
     "mu4e"
     :follow 'org-mu4e-open
     :store 'org-mu4e-store-link)
  ;; org versions less than 9
  (org-add-link-type "mu4e" 'org-mu4e-open)
  (add-hook 'org-store-link-functions 'org-mu4e-store-link))


Would it make sense to have some macros to facilitate this? e.g.
something like

(org-9
  (org-link-set-parameters
     "mu4e"
     :follow 'org-mu4e-open
     :store 'org-mu4e-store-link))

(org-8
  (org-add-link-type "mu4e" 'org-mu4e-open)
  (add-hook 'org-store-link-functions 'org-mu4e-store-link))



-- 
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu

                 reply	other threads:[~2016-11-04 12:15 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=m27f8jqw4z.fsf@Johns-MacBook-Air.local \
    --to=jkitchin@andrew.cmu.edu \
    --cc=emacs-orgmode@gnu.org \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public 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).