mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2025-01-05 11:45:52 +00:00
ob-gnuplot: Download remote input files
* lisp/ob-gnuplot.el (org-babel-gnuplot-process-vars): When variables point to remote files, download them and use a local copy instead. TINYCHANGE
This commit is contained in:
parent
7ebb2d5629
commit
95ed6badc0
@ -92,7 +92,21 @@ code."
|
||||
(tablep (or (listp first) (symbolp first))))
|
||||
(if tablep val (mapcar 'list val)))
|
||||
(org-babel-temp-file "gnuplot-") params)
|
||||
val))))
|
||||
(if (and (file-remote-p val) ;; check if val is a remote file
|
||||
(file-exists-p val)) ;; call to file-exists-p is slow, maybe remove it
|
||||
(let* ((local-name (concat ;; create a unique filename to avoid multiple downloads
|
||||
org-babel-temporary-directory
|
||||
"/gnuplot/"
|
||||
(file-remote-p val 'host)
|
||||
(file-local-name val))))
|
||||
(if (and (file-exists-p local-name) ;; only download file if remote is newer
|
||||
(file-newer-than-file-p local-name val))
|
||||
local-name
|
||||
(make-directory (file-name-directory local-name) t)
|
||||
(copy-file val local-name t)
|
||||
))
|
||||
val
|
||||
)))))
|
||||
(org-babel--get-vars params))))
|
||||
|
||||
(defun org-babel-expand-body:gnuplot (body params)
|
||||
|
Loading…
Reference in New Issue
Block a user