emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 280b909f2d9da4ff442ef467a8101429930d3c4a 2503 bytes (raw)
name: lisp/ol-arxiv.el 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
 
;;; ol-arxiv.el --- ARXIV links support in Org           -*- lexical-binding: t; -*-

;; Copyright (C) 2023-2023 Free Software Foundation, Inc.

;; Author: Zhengfei Hu <hammer@posteo.net>

;; This file is part of GNU Emacs.

;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; This library introduces the "arxiv" link type in Org, and provides
;; code for opening and exporting such links.

;;; Code:

(require 'org-macs)
(org-assert-version)

(require 'ol)

(defcustom org-link-arxiv-server-url "https://arxiv.org/abs/"
  "The URL of the ARXIV server."
  :group 'org-link-follow
  :version "24.3"
  :type 'string
  :safe #'stringp)

(defun org-link-arxiv-open (path arg)
  "Open a \"arxiv\" type link.
PATH is a the path to search for, as a string.
ARG is passed to `browse-url'."
  (browse-url (url-encode-url (concat org-link-arxiv-server-url path)) arg))

(defun org-link-arxiv-export (path desc backend info)
  "Export a \"arxiv\" type link.
PATH is the ARXIV name.  DESC is the description of the link, or
nil.  BACKEND is a symbol representing the backend used for
export.  INFO is a plist containing the export parameters."
  (let ((uri (concat org-link-arxiv-server-url path)))
    (pcase backend
      (`html
       (format "<a href=\"%s\">%s</a>" uri (or desc uri)))
      (`latex
       (if desc (format "\\href{%s}{%s}" uri desc)
	 (format "\\url{%s}" uri)))
      (`ascii
       (if (not desc) (format "<%s>" uri)
         (concat (format "[%s]" desc)
		 (and (not (plist-get info :ascii-links-to-notes))
		      (format " (<%s>)" uri)))))
      (`texinfo
       (if (not desc) (format "@uref{%s}" uri)
         (format "@uref{%s, %s}" uri desc)))
      (_ uri))))

(org-link-set-parameters "arxiv"
                         :follow #'org-link-arxiv-open
                         :export #'org-link-arxiv-export)


(provide 'org-link-arxiv)
(provide 'ol-arxiv)
;;; ol-arxiv.el ends here

debug log:

solving 280b909f2 ...
found 280b909f2 in https://list.orgmode.org/orgmode/egjr423fnphv6hn2xphe5eui6ghzkz4l4eexdh4uhqwihmoxoz@qi4ylh66itz6/

applying [1/1] https://list.orgmode.org/orgmode/egjr423fnphv6hn2xphe5eui6ghzkz4l4eexdh4uhqwihmoxoz@qi4ylh66itz6/
diff --git a/lisp/ol-arxiv.el b/lisp/ol-arxiv.el
new file mode 100644
index 000000000..280b909f2

Checking patch lisp/ol-arxiv.el...
Applied patch lisp/ol-arxiv.el cleanly.

index at:
100644 280b909f2d9da4ff442ef467a8101429930d3c4a	lisp/ol-arxiv.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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