X-Git-Url: https://git.donarmstrong.com/?p=org-ref.git;a=blobdiff_plain;f=arxiv.el;h=783719535f48a44cc58da1b8a0a6735b6a4f268b;hp=66ceafefb02e887f5b27397e81a39afa9c886a20;hb=8fdd53a3bd27b0027513093841036ef2253889b4;hpb=3d258f2f382d98aa73fcf36ab1cb494a7bcd1cc3 diff --git a/arxiv.el b/arxiv.el index 66ceafe..7837195 100644 --- a/arxiv.el +++ b/arxiv.el @@ -93,5 +93,29 @@ (save-buffer))) +(defun arxiv-get-pdf (arxiv-number pdf) + "Retrieve a pdf for ARXIV-NUMBER and save it to PDF." + (interactive "sarxiv: \nsPDF: ") + (let ((pdf-url (with-current-buffer + (url-retrieve-synchronously + (concat + "http://arxiv.org/abs/" arxiv-number)) + ;; + (search-forward-regexp + "name=\\\"citation_pdf_url\\\" content=\\\"\\(.*\\)\\\"") + (match-string 1)))) + (url-copy-file pdf-url pdf) + ;; now check if we got a pdf + (with-temp-buffer + (insert-file-contents pdf-file) + ;; PDFS start with %PDF-1.x as the first few characters. + (if (not (string= (buffer-substring 1 6) "%PDF-")) + (progn + (message "%s" (buffer-string)) + (delete-file pdf-file)) + (message "%s saved" pdf-file))) + + (org-open-file pdf))) + (provide 'arxiv) ;;; arxiv.el ends here