emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* transitioning links defined in packages from pre org-9 to org-9
@ 2016-11-04 12:15 John Kitchin
  0 siblings, 0 replies; only message in thread
From: John Kitchin @ 2016-11-04 12:15 UTC (permalink / raw)
  To: emacs-orgmode@gnu.org

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-11-04 12:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-04 12:15 transitioning links defined in packages from pre org-9 to org-9 John Kitchin

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).