Update all packages

This commit is contained in:
Mateus Pinto Rodrigues
2018-07-17 19:34:58 -03:00
parent 3c61003537
commit 25baa00351
259 changed files with 1404 additions and 4340 deletions

View File

@@ -0,0 +1,20 @@
;;; org-ref-worldcat.el --- Worldcat library
;;; Commentary:
;; Provides a function to query world cat
;; See:
;; https://www.worldcat.org/wcpa/content/affiliate/default.jsp
;; https://www.worldcat.org/affiliate/tools?atype=text
;;; Code:
(defun worldcat-query-all (query)
"Open browser to Worldcat QUERY."
(browse-url
(format
"http://www.worldcat.org/search?qt=worldcat_org_all&q=%s"
query)))
(provide 'org-ref-worldcat)
;;; org-ref-worldcat.el ends here