org-id.el 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. ;;; org-id.el --- Global identifiers for Org-mode entries
  2. ;;
  3. ;; Copyright (C) 2008, 2009 Free Software Foundation, Inc.
  4. ;;
  5. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  6. ;; Keywords: outlines, hypermedia, calendar, wp
  7. ;; Homepage: http://orgmode.org
  8. ;; Version: 6.17trans
  9. ;;
  10. ;; This file is part of GNU Emacs.
  11. ;;
  12. ;; GNU Emacs is free software: you can redistribute it and/or modify
  13. ;; it under the terms of the GNU General Public License as published by
  14. ;; the Free Software Foundation, either version 3 of the License, or
  15. ;; (at your option) any later version.
  16. ;; GNU Emacs is distributed in the hope that it will be useful,
  17. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. ;; GNU General Public License for more details.
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  22. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  23. ;;
  24. ;;; Commentary:
  25. ;; This file implements globally unique identifiers for Org-mode entries.
  26. ;; Identifiers are stored in the entry as an :ID: property. Functions
  27. ;; are provided that create and retrieve such identifiers, and that find
  28. ;; entries based on the identifier.
  29. ;; Identifiers consist of a prefix (default "Org" given by the variable
  30. ;; `org-id-prefix') and a unique part that can be created by a number
  31. ;; of different methods, see the variable `org-id-method'.
  32. ;; Org has a builtin method that uses a compact encoding of the creation
  33. ;; time of the ID, with microsecond accuracy. This virtually
  34. ;; guarantees globally unique identifiers, even if several people are
  35. ;; creating IDs at the same time in files that will eventually be used
  36. ;; together. As an external method `uuidgen' is supported, if installed
  37. ;; on the system.
  38. ;;
  39. ;; This file defines the following API:
  40. ;;
  41. ;; org-id-get-create
  42. ;; Create an ID for the entry at point if it does not yet have one.
  43. ;; Returns the ID (old or new). This function can be used
  44. ;; interactively, with prefix argument the creation of a new ID is
  45. ;; forced, even if there was an old one.
  46. ;;
  47. ;; org-id-get
  48. ;; Get the ID property of an entry. Using appropriate arguments
  49. ;; to the function, it can also create the ID for this entry.
  50. ;;
  51. ;; org-id-goto
  52. ;; Command to go to a specific ID, this command can be used
  53. ;; interactively.
  54. ;;
  55. ;; org-id-get-with-outline-path-completion
  56. ;; Retrieve the ID of an entry, using outline path completion.
  57. ;; This function can work for multiple files.
  58. ;;
  59. ;; org-id-get-with-outline-drilling
  60. ;; Retrieve the ID of an entry, using outline path completion.
  61. ;; This function only works for the current file.
  62. ;;
  63. ;; org-id-find
  64. ;; Find the location of an entry with specific id.
  65. ;;
  66. (require 'org)
  67. (declare-function message-make-fqdn "message" ())
  68. ;;; Customization
  69. (defgroup org-id nil
  70. "Options concerning global entry identifiers in Org-mode."
  71. :tag "Org ID"
  72. :group 'org)
  73. (defcustom org-id-method
  74. (condition-case nil
  75. (if (string-match "\\`[-0-9a-fA-F]\\{36\\}\\'"
  76. (org-trim (shell-command-to-string "uuidgen")))
  77. 'uuidgen
  78. 'org)
  79. (error 'org))
  80. "The method that should be used to create new IDs.
  81. If `uuidgen' is available on the system, it will be used as the default method.
  82. if not, the method `org' is used.
  83. An ID will consist of the optional prefix specified in `org-id-prefix',
  84. and a unique part created by the method this variable specifies.
  85. Allowed values are:
  86. org Org's own internal method, using an encoding of the current time to
  87. microsecond accuracy, and optionally the current domain of the
  88. computer. See the variable `org-id-include-domain'.
  89. uuidgen Call the external command uuidgen."
  90. :group 'org-id
  91. :type '(choice
  92. (const :tag "Org's internal method" org)
  93. (const :tag "external: uuidgen" uuidgen)))
  94. (defcustom org-id-prefix nil
  95. "The prefix for IDs.
  96. This may be a string, or it can be nil to indicate that no prefix is required.
  97. When a string, the string should have no space characters as IDs are expected
  98. to have no space characters in them."
  99. :group 'org-id
  100. :type '(choice
  101. (const :tag "No prefix")
  102. (string :tag "Prefix")))
  103. (defcustom org-id-include-domain nil
  104. "Non-nil means, add the domain name to new IDs.
  105. This ensures global uniqueness of IDs, and is also suggested by
  106. RFC 2445 in combination with RFC 822. This is only relevant if
  107. `org-id-method' is `org'. When uuidgen is used, the domain will never
  108. be added.
  109. The default is to not use this because we have no really good way to get
  110. the true domain, and Org entries will normally not be shared with enough
  111. people to make this necessary."
  112. :group 'org-id
  113. :type 'boolean)
  114. (defcustom org-id-track-globally t
  115. "Non-nil means, track IDs through files, so that links work globally.
  116. This work by maintaining a hash table for IDs and writing this table
  117. to disk when exiting Emacs. Because of this, it works best if you use
  118. a single Emacs process, not many.
  119. When nil, IDs are not tracked. Links to IDs will still work within
  120. a buffer, but not if the entry is located in another file.
  121. IDs can still be used if the entry with the id is in the same file as
  122. the link."
  123. :group 'org-id
  124. :type 'boolean)
  125. (defcustom org-id-locations-file (convert-standard-filename
  126. "~/.emacs.d/.org-id-locations")
  127. "The file for remembering in which file an ID was defined.
  128. This variable is only relevant when `org-id-track-globally' is set."
  129. :group 'org-id
  130. :type 'file)
  131. (defvar org-id-locations nil
  132. "List of files with IDs in those files.
  133. Depending on `org-id-use-hash' this can also be a hash table mapping IDs
  134. to files.")
  135. (defvar org-id-files nil
  136. "List of files that contain IDs.")
  137. (defcustom org-id-extra-files 'org-agenda-text-search-extra-files
  138. "Files to be searched for IDs, besides the agenda files.
  139. When Org reparses files to remake the list of files and IDs it is tracking,
  140. it will normally scan the agenda files, the archives related to agenda files,
  141. any files that are listed as ID containing in the current register, and
  142. any Org-mode files currently visited by Emacs.
  143. You can list additional files here.
  144. This variable is only relevant when `org-id-track-globally' is set."
  145. :group 'org-id
  146. :type
  147. '(choice
  148. (symbol :tag "Variable")
  149. (repeat :tag "List of files"
  150. (file))))
  151. (defcustom org-id-search-archives t
  152. "Non-nil means, search also the archive files of agenda files for entries.
  153. This is a possibility to reduce overhead, but it means that entries moved
  154. to the archives can no longer be found by ID.
  155. This variable is only relevant when `org-id-track-globally' is set."
  156. :group 'org-id
  157. :type 'boolean)
  158. ;;; The API functions
  159. ;;;###autoload
  160. (defun org-id-get-create (&optional force)
  161. "Create an ID for the current entry and return it.
  162. If the entry already has an ID, just return it.
  163. With optional argument FORCE, force the creation of a new ID."
  164. (interactive "P")
  165. (when force
  166. (org-entry-put (point) "ID" nil))
  167. (org-id-get (point) 'create))
  168. ;;;###autoload
  169. (defun org-id-copy ()
  170. "Copy the ID of the entry at point to the kill ring.
  171. Create an ID if necessary."
  172. (interactive)
  173. (kill-new (org-id-get nil 'create)))
  174. ;;;###autoload
  175. (defun org-id-get (&optional pom create prefix)
  176. "Get the ID property of the entry at point-or-marker POM.
  177. If POM is nil, refer to the entry at point.
  178. If the entry does not have an ID, the function returns nil.
  179. However, when CREATE is non nil, create an ID if none is present already.
  180. PREFIX will be passed through to `org-id-new'.
  181. In any case, the ID of the entry is returned."
  182. (let ((id (org-entry-get pom "ID")))
  183. (cond
  184. ((and id (stringp id) (string-match "\\S-" id))
  185. id)
  186. (create
  187. (setq id (org-id-new prefix))
  188. (org-entry-put pom "ID" id)
  189. (org-id-add-location id (buffer-file-name (buffer-base-buffer)))
  190. id)
  191. (t nil))))
  192. ;;;###autoload
  193. (defun org-id-get-with-outline-path-completion (&optional targets)
  194. "Use outline-path-completion to retrieve the ID of an entry.
  195. TARGETS may be a setting for `org-refile-targets' to define the eligible
  196. headlines. When omitted, all headlines in all agenda files are
  197. eligible.
  198. It returns the ID of the entry. If necessary, the ID is created."
  199. (let* ((org-refile-targets (or targets '((nil . (:maxlevel . 10)))))
  200. (org-refile-use-outline-path
  201. (if (caar org-refile-targets) 'file t))
  202. (spos (org-refile-get-location "Entry: "))
  203. (pom (and spos (move-marker (make-marker) (nth 3 spos)
  204. (get-file-buffer (nth 1 spos))))))
  205. (prog1 (org-id-get pom 'create)
  206. (move-marker pom nil))))
  207. ;;;###autoload
  208. (defun org-id-get-with-outline-drilling (&optional targets)
  209. "Use an outline-cycling interface to retrieve the ID of an entry.
  210. This only finds entries in the current buffer, using `org-get-location'.
  211. It returns the ID of the entry. If necessary, the ID is created."
  212. (let* ((spos (org-get-location (current-buffer) org-goto-help))
  213. (pom (and spos (move-marker (make-marker) (car spos)))))
  214. (prog1 (org-id-get pom 'create)
  215. (move-marker pom nil))))
  216. ;;;###autoload
  217. (defun org-id-goto (id)
  218. "Switch to the buffer containing the entry with id ID.
  219. Move the cursor to that entry in that buffer."
  220. (interactive "sID: ")
  221. (let ((m (org-id-find id 'marker)))
  222. (unless m
  223. (error "Cannot find entry with ID \"%s\"" id))
  224. (switch-to-buffer (marker-buffer m))
  225. (goto-char m)
  226. (move-marker m nil)
  227. (org-show-context)))
  228. ;;;###autoload
  229. (defun org-id-find (id &optional markerp)
  230. "Return the location of the entry with the id ID.
  231. The return value is a cons cell (file-name . position), or nil
  232. if there is no entry with that ID.
  233. With optional argument MARKERP, return the position as a new marker."
  234. (cond
  235. ((symbolp id) (setq id (symbol-name id)))
  236. ((numberp id) (setq id (number-to-string id))))
  237. (let ((file (org-id-find-id-file id))
  238. org-agenda-new-buffers where)
  239. (when file
  240. (setq where (org-id-find-id-in-file id file markerp)))
  241. (unless where
  242. (org-id-update-id-locations)
  243. (setq file (org-id-find-id-file id))
  244. (when file
  245. (setq where (org-id-find-id-in-file id file markerp))))
  246. where))
  247. ;;; Internal functions
  248. ;; Creating new IDs
  249. (defun org-id-new (&optional prefix)
  250. "Create a new globally unique ID.
  251. An ID consists of two parts separated by a colon:
  252. - a prefix
  253. - a unique part that will be created according to `org-id-method'.
  254. PREFIX can specify the prefix, the default is given by the variable
  255. `org-id-prefix'. However, if PREFIX is the symbol `none', don't use any
  256. prefix even if `org-id-prefix' specifies one.
  257. So a typical ID could look like \"Org:4nd91V40HI\"."
  258. (let* ((prefix (if (eq prefix 'none)
  259. ""
  260. (concat (or prefix org-id-prefix) ":")))
  261. unique)
  262. (if (equal prefix ":") (setq prefix ""))
  263. (cond
  264. ((eq org-id-method 'uuidgen)
  265. (setq unique (org-trim (shell-command-to-string "uuidgen"))))
  266. ((eq org-id-method 'org)
  267. (let* ((etime (org-id-reverse-string (org-id-time-to-b36)))
  268. (postfix (if org-id-include-domain
  269. (progn
  270. (require 'message)
  271. (concat "@" (message-make-fqdn))))))
  272. (setq unique (concat etime postfix))))
  273. (t (error "Invalid `org-id-method'")))
  274. (concat prefix unique)))
  275. (defun org-id-reverse-string (s)
  276. (mapconcat 'char-to-string (nreverse (string-to-list s)) ""))
  277. (defun org-id-int-to-b36-one-digit (i)
  278. "Turn an integer between 0 and 61 into a single character 0..9, A..Z, a..z."
  279. (cond
  280. ((< i 10) (+ ?0 i))
  281. ((< i 36) (+ ?a i -10))
  282. (t (error "Larger that 35"))))
  283. (defun org-id-b36-to-int-one-digit (i)
  284. "Turn a character 0..9, A..Z, a..z into a number 0..61.
  285. The input I may be a character, or a single-letter string."
  286. (and (stringp i) (setq i (string-to-char i)))
  287. (cond
  288. ((and (>= i ?0) (<= i ?9)) (- i ?0))
  289. ((and (>= i ?a) (<= i ?z)) (+ (- i ?a) 10))
  290. (t (error "Invalid b36 letter"))))
  291. (defun org-id-int-to-b36 (i &optional length)
  292. "Convert an integer to a base-36 number represented as a string."
  293. (let ((s ""))
  294. (while (> i 0)
  295. (setq s (concat (char-to-string
  296. (org-id-int-to-b36-one-digit (mod i 36))) s)
  297. i (/ i 36)))
  298. (setq length (max 1 (or length 1)))
  299. (if (< (length s) length)
  300. (setq s (concat (make-string (- length (length s)) ?0) s)))
  301. s))
  302. (defun org-id-b36-to-int (s)
  303. "Convert a base-36 string into the corresponding integer."
  304. (let ((r 0))
  305. (mapc (lambda (i) (setq r (+ (* r 36) (org-id-b36-to-int-one-digit i))))
  306. s)
  307. r))
  308. (defun org-id-time-to-b36 (&optional time)
  309. "Encode TIME as a 10-digit string.
  310. This string holds the time to micro-second accuracy, and can be decoded
  311. using `org-id-decode'."
  312. (setq time (or time (current-time)))
  313. (concat (org-id-int-to-b36 (nth 0 time) 4)
  314. (org-id-int-to-b36 (nth 1 time) 4)
  315. (org-id-int-to-b36 (or (nth 2 time) 0) 4)))
  316. (defun org-id-decode (id)
  317. "Split ID into the prefix and the time value that was used to create it.
  318. The return value is (prefix . time) where PREFIX is nil or a string,
  319. and time is the usual three-integer representation of time."
  320. (let (prefix time parts)
  321. (setq parts (org-split-string id ":"))
  322. (if (= 2 (length parts))
  323. (setq prefix (car parts) time (nth 1 parts))
  324. (setq prefix nil time (nth 0 parts)))
  325. (setq time (org-id-reverse-string time))
  326. (setq time (list (org-id-b36-to-int (substring time 0 4))
  327. (org-id-b36-to-int (substring time 4 8))
  328. (org-id-b36-to-int (substring time 8 12))))
  329. (cons prefix time)))
  330. ;; Storing ID locations (files)
  331. (defun org-id-update-id-locations (&optional files)
  332. "Scan relevant files for IDs.
  333. Store the relation between files and corresponding IDs.
  334. This will scan all agenda files, all associated archives, and all
  335. files currently mentioned in `org-id-locations'.
  336. When FILES is given, scan these files instead.
  337. When CHECK is given, prepare detailed information about duplicate IDs."
  338. (interactive)
  339. (if (not org-id-track-globally)
  340. (error "Please turn on `org-id-track-globally' if you want to track IDs.")
  341. (let ((files
  342. (or files
  343. (append
  344. ;; Agenda files and all associated archives
  345. (org-agenda-files t org-id-search-archives)
  346. ;; Explicit extra files
  347. (if (symbolp org-id-extra-files)
  348. (symbol-value org-id-extra-files)
  349. org-id-extra-files)
  350. ;; Files associated with live org-mode buffers
  351. (delq nil
  352. (mapcar (lambda (b)
  353. (with-current-buffer b
  354. (and (org-mode-p) (buffer-file-name))))
  355. (buffer-list)))
  356. ;; All files known to have IDs
  357. org-id-files)))
  358. org-agenda-new-buffers
  359. file nfiles tfile ids reg found id seen (ndup 0))
  360. (setq nfiles (length files))
  361. (while (setq file (pop files))
  362. (message "Finding ID locations (%d/%d files): %s"
  363. (- nfiles (length files)) nfiles file)
  364. (setq tfile (file-truename file))
  365. (when (and (file-exists-p file) (not (member tfile seen)))
  366. (push tfile seen)
  367. (setq ids nil)
  368. (with-current-buffer (org-get-agenda-file-buffer file)
  369. (save-excursion
  370. (save-restriction
  371. (widen)
  372. (goto-char (point-min))
  373. (while (re-search-forward "^[ \t]*:ID:[ \t]+\\(\\S-+\\)[ \t]*$"
  374. nil t)
  375. (setq id (org-match-string-no-properties 1))
  376. (if (member id found)
  377. (progn
  378. (message "Duplicate ID \"%s\", also in file %s"
  379. id (car (delq
  380. nil
  381. (mapcar
  382. (lambda (x)
  383. (if (member id (cdr x)) (car x)))
  384. reg))))
  385. (when (= ndup 0)
  386. (ding)
  387. (sit-for 2))
  388. (setq ndup (1+ ndup)))
  389. (push id found)
  390. (push id ids)))
  391. (push (cons (abbreviate-file-name file) ids) reg))))))
  392. (org-release-buffers org-agenda-new-buffers)
  393. (setq org-agenda-new-buffers nil)
  394. (setq org-id-locations reg)
  395. (setq org-id-files (mapcar 'car org-id-locations))
  396. (org-id-locations-save) ;; this function can also handle the alist form
  397. ;; now convert to a hash
  398. (setq org-id-locations (org-id-alist-to-hash org-id-locations))
  399. (if (> ndup 0)
  400. (message "WARNING: %d duplicate IDs found, check *Messages* buffer" ndup)
  401. (message "%d unique files scanned for IDs" (length org-id-files)))
  402. org-id-locations)))
  403. (defun org-id-locations-save ()
  404. "Save `org-id-locations' in `org-id-locations-file'."
  405. (when org-id-track-globally
  406. (let ((out (if (hash-table-p org-id-locations)
  407. (org-id-hash-to-alist org-id-locations)
  408. org-id-locations)))
  409. (with-temp-file org-id-locations-file
  410. (print out (current-buffer))))))
  411. (defun org-id-locations-load ()
  412. "Read the data from `org-id-locations-file'."
  413. (setq org-id-locations nil)
  414. (when org-id-track-globally
  415. (with-temp-buffer
  416. (condition-case nil
  417. (progn
  418. (insert-file-contents-literally org-id-locations-file)
  419. (goto-char (point-min))
  420. (setq org-id-locations (read (current-buffer))))
  421. (error
  422. (message "Could not read org-id-values from %s. Setting it to nil."
  423. org-id-locations-file))))
  424. (setq org-id-files (mapcar 'car org-id-locations))
  425. (setq org-id-locations (org-id-alist-to-hash org-id-locations))))
  426. (defun org-id-add-location (id file)
  427. "Add the ID with location FILE to the database of ID locations."
  428. ;; Only if global tracking is on, and when the buffer has a file
  429. (when (and org-id-track-globally id file)
  430. (unless org-id-locations (org-id-locations-load))
  431. (puthash id (abbreviate-file-name file) org-id-locations)
  432. (add-to-list 'org-id-files (abbreviate-file-name file))))
  433. (add-hook 'kill-emacs-hook 'org-id-locations-save)
  434. (defun org-id-hash-to-alist (hash)
  435. "Turn an org-id hash into an alist, so that it can be written to a file."
  436. (let (res x)
  437. (maphash
  438. (lambda (k v)
  439. (if (setq x (member v res))
  440. (setcdr x (cons k (cdr x)))
  441. (push (list v k) res)))
  442. hash)
  443. res))
  444. (defun org-id-alist-to-hash (list)
  445. "Turn an org-id location list into a hash table."
  446. (let ((res (make-hash-table
  447. :test 'equal
  448. :size (apply '+ (mapcar 'length list))))
  449. f i)
  450. (mapc
  451. (lambda (x)
  452. (setq f (car x))
  453. (mapc (lambda (i) (puthash i f res)) (cdr x)))
  454. list)
  455. res))
  456. (defun org-id-paste-tracker (txt &optional buffer-or-file)
  457. "Update any IDs in TXT and assign BUFFER-OR-FILE to them."
  458. (when org-id-track-globally
  459. (save-match-data
  460. (setq buffer-or-file (or buffer-or-file (current-buffer)))
  461. (when (bufferp buffer-or-file)
  462. (setq buffer-or-file (or (buffer-base-buffer buffer-or-file)
  463. buffer-or-file))
  464. (setq buffer-or-file (buffer-file-name buffer-or-file)))
  465. (when buffer-or-file
  466. (let ((fname (abbreviate-file-name buffer-or-file))
  467. (s 0))
  468. (while (string-match "^[ \t]*:ID:[ \t]+\\([^ \t\n\r]+\\)" txt s)
  469. (setq s (match-end 0))
  470. (org-id-add-location (match-string 1 txt) fname)))))))
  471. ;; Finding entries with specified id
  472. (defun org-id-find-id-file (id)
  473. "Query the id database for the file in which this ID is located."
  474. (unless org-id-locations (org-id-locations-load))
  475. (or (gethash id org-id-locations)
  476. ;; ball back on current buffer
  477. (buffer-file-name (or (buffer-base-buffer (current-buffer))
  478. (current-buffer)))))
  479. (defun org-id-find-id-in-file (id file &optional markerp)
  480. "Return the position of the entry ID in FILE.
  481. If that files does not exist, or if it does not contain this ID,
  482. return nil.
  483. The position is returned as a cons cell (file-name . position). With
  484. optional argument MARKERP, return the position as a new marker."
  485. (let (org-agenda-new-buffers m buf pos)
  486. (cond
  487. ((not file) nil)
  488. ((not (file-exists-p file)) nil)
  489. (t (with-current-buffer (setq buf (org-get-agenda-file-buffer file))
  490. (setq pos (org-find-entry-with-id id))
  491. (when pos
  492. (if markerp
  493. (move-marker (make-marker) pos buf)
  494. (cons file pos))))))))
  495. ;; id link type
  496. ;; Calling the following function is hard-coded into `org-store-link',
  497. ;; so we do have to add it to `org-store-link-functions'.
  498. (defun org-id-store-link ()
  499. "Store a link to the current entry, using it's ID."
  500. (interactive)
  501. (let* ((link (org-make-link "id:" (org-id-get-create)))
  502. (desc (save-excursion
  503. (org-back-to-heading t)
  504. (or (and (looking-at org-complex-heading-regexp)
  505. (if (match-end 4) (match-string 4) (match-string 0)))
  506. link))))
  507. (org-store-link-props :link link :description desc :type "id")
  508. link))
  509. (defun org-id-open (id)
  510. "Go to the entry with id ID."
  511. (org-mark-ring-push)
  512. (let ((m (org-id-find id 'marker)))
  513. (unless m
  514. (error "Cannot find entry with ID \"%s\"" id))
  515. (if (not (equal (current-buffer) (marker-buffer m)))
  516. (switch-to-buffer-other-window (marker-buffer m)))
  517. (goto-char m)
  518. (move-marker m nil)
  519. (org-show-context)))
  520. (org-add-link-type "id" 'org-id-open)
  521. (provide 'org-id)
  522. ;;; org-id.el ends here
  523. ;; arch-tag: e5abaca4-e16f-4b25-832a-540cfb63a712