Revert ""cite" link type in contrib/org-bibtex-extras"
[org-mode.git] / contrib / lisp / org-bibtex-extras.el
blob6143fdaf3c8bc0656ad2ad3a51510fd634739f0a
1 ;;; org-bibtex-extras --- extras for working with org-bibtex entries
3 ;; Copyright (C) 2008-2013 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte <eric dot schulte at gmx dot com>
6 ;; Keywords: outlines, hypermedia, bibtex, d3
7 ;; Homepage: http://orgmode.org
8 ;; Version: 0.01
10 ;; This file is not yet part of GNU Emacs.
12 ;; This program 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, or (at your option)
15 ;; any later version.
17 ;; This program is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; Warning: This should certainly be considered EXPERIMENTAL and still
28 ;; in development, feedback is welcome, but don't expect it
29 ;; to work.
31 ;; This file add some extra functionality to your bibtex entries which
32 ;; are stored as Org-mode headlines using org-bibtex.el. Most
33 ;; features expect that you keep all of your reading notes in a single
34 ;; file, set the `obe-bibtex-file' variable to the path to this file.
36 ;; - d3 view :: d3 is a Javascript library which supports interactive
37 ;; display of graphs. To view your citations as a d3
38 ;; graph, execute the following which will create a .json
39 ;; export of your references file, then grab a copy of
40 ;; d3, edit examples/force/force.js to replace
42 ;; var source`"miserables.json";
44 ;; with
46 ;; var source`"your-references.json";
48 ;; then view examples/force/force.html in your browser.
50 ;; - HTML export :: Customize the `obe-html-link-base' variable so
51 ;; that it points to an html export of your
52 ;; references, then add the following to your html
53 ;; export hook, and citations will be resolved during
54 ;; html export.
56 ;; (add-hook 'org-export-first-hook
57 ;; (lambda ()
58 ;; (when (equal org-export-current-backend 'html)
59 ;; (obe-html-export-citations))))
61 ;;; Code:
62 (require 'org-bibtex)
64 (defcustom obe-bibtex-file nil "File holding bibtex entries.")
66 (defcustom obe-html-link-base nil
67 "Base of citation links.
68 For example, to point to your `obe-bibtex-file' use the following.
70 (setq obe-html-link-base (format \"file:%s\" obe-bibtex-file))
73 (defvar obe-citations nil)
74 (defun obe-citations ()
75 "Return all citations from `obe-bibtex-file'."
76 (or obe-citations
77 (save-window-excursion
78 (find-file (or obe-bibtex-file
79 (error "`obe-bibtex-file' has not been configured")))
80 (goto-char (point-min))
81 (while (re-search-forward " :CUSTOM_ID: \\(.+\\)$" nil t)
82 (push (org-no-properties (match-string 1))
83 obe-citations))
84 obe-citations)))
86 (defun obe-goto-citation (&optional citation)
87 "Visit a citation given its ID."
88 (interactive)
89 (let ((citation (or citation
90 (org-icompleting-read "Citation: "
91 (obe-citations)))))
92 (find-file (or obe-bibtex-file
93 (error "`obe-bibtex-file' has not been configured")))
94 (goto-char (point-min))
95 (when (re-search-forward (format " :CUSTOM_ID: %s" citation) nil t)
96 (outline-previous-visible-heading 1)
97 t)))
99 (defun obe-html-export-citations ()
100 "Convert all \\cite{...} citations in the current file into HTML links."
101 (save-excursion
102 (goto-char (point-min))
103 (while (re-search-forward "\\\\cite{\\([^\000}]+\\)}" nil t)
104 (replace-match
105 (save-match-data
106 (mapconcat (lambda (c) (format "[[%s#%s][%s]]" obe-html-link-base c c))
107 (mapcar #'org-babel-trim
108 (split-string (match-string 1) ",")) ", "))))))
110 (defun obe-get-meta-data (citation)
111 "Collect meta-data for CITATION."
112 (save-excursion
113 (when (obe-goto-citation citation)
114 (let ((pt (point)))
115 `((:authors . ,(split-string (org-entry-get pt "AUTHOR") " and " t))
116 (:title . ,(org-no-properties (org-get-heading 1 1)))
117 (:journal . ,(org-entry-get pt "JOURNAL")))))))
119 (defun obe-meta-to-json (meta &optional fields)
120 "Turn a list of META data from citations into a string of json."
121 (let ((counter 1) nodes links)
122 (flet ((id (it) (position it nodes :test #'string= :key #'car))
123 (col (k) (mapcar (lambda (r) (cdr (assoc k r))) meta))
124 (add (lst)
125 (dolist (el lst) (push (cons el counter) nodes))
126 (incf counter)))
127 ;; build the nodes of the graph
128 (add (col :title))
129 (add (remove-if (lambda (author) (string-match "others" author))
130 (remove-duplicates (apply #'append (col :authors))
131 :test #'string=)))
132 (dolist (field fields)
133 (add (remove-duplicates (col field) :test #'string=)))
134 ;; build the links in the graph
135 (dolist (citation meta)
136 (let ((dest (id (cdr (assoc :title citation)))))
137 (dolist (author (mapcar #'id (cdr (assoc :authors citation))))
138 (when author (push (cons author dest) links)))
139 (let ((jid (id (cdr (assoc :journal citation)))))
140 (when jid (push (cons jid dest) links)))
141 (let ((cid (id (cdr (assoc :category citation)))))
142 (when cid (push (cons cid dest) links)))))
143 ;; build the json string
144 (format "{\"nodes\":[%s],\"links\":[%s]}"
145 (mapconcat
146 (lambda (pair)
147 (format "{\"name\":%S,\"group\":%d}"
148 (car pair) (cdr pair)))
149 nodes ",")
150 (mapconcat
151 (lambda (link)
152 (format "{\"source\":%d,\"target\":%d,\"value\":1}"
153 (car link) (cdr link)))
154 (meta-to-links meta nodes) ",")))))
156 (provide 'org-bibtex-extras)
157 ;;; org-bibtex-extras ends here