org-browser-url.el 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. ;;; org-browser-url.el --- Bookmark from a browser into org links
  2. ;; Author: Ross Patterson <me@rpatterson.net>
  3. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  4. ;;
  5. ;;; Commentary:
  6. ;; Once a bookmarklet and a app handler are setup in your browser,
  7. ;; the functions here support using the bookmarklet to add links to
  8. ;; the org links ring.
  9. ;;
  10. ;; Much of this is taken from or modeled after
  11. ;; org-annotation-helper.el
  12. ;;
  13. ;; Installation and Activation
  14. ;; ---------------------------
  15. ;;
  16. ;; Step 1: Install this library on your path and enable it in your
  17. ;; $HOME/.emacs:
  18. ;;
  19. ;; (require 'org-browser-url)
  20. ;;
  21. ;; Step 2: Install the handler script
  22. ;;
  23. ;; * Save the following script to an appropriate place and make sure
  24. ;; it is executable:
  25. ;;
  26. ;; #!/bin/sh
  27. ;; # org-browser-url-store - Store URLs in the org links ring
  28. ;; emacsclient --eval "(let ((org-browser-url-args \"$*\"))\
  29. ;; (call-interactively 'org-store-link))"
  30. ;;
  31. ;; * Make sure emacs is running with server mode started:
  32. ;;
  33. ;; (server-start)
  34. ;;
  35. ;; * Test the script from the command line
  36. ;;
  37. ;; $ org-browser-url-store \
  38. ;; 'org-browser-url-store:///Link%20Description/http://foo.com'
  39. ;;
  40. ;; * Insert the link in an org-mode buffer with C-c C-l
  41. ;;
  42. ;; Step 3: Add the handler to your browser
  43. ;;
  44. ;; * For Firefox:
  45. ;; - type in "about:config" in the location bar
  46. ;; - right click, select "New", then "String"
  47. ;; - enter the name:
  48. ;; "network.protocol-handler.app.org-browser-url-store"
  49. ;; - leave the value blank
  50. ;;
  51. ;; See http://kb.mozillazine.org/Register_protocol for more details.
  52. ;;
  53. ;; * For Opera add the protocol in the
  54. ;; Preferences->Advanced->Programs dialog.
  55. ;;
  56. ;; Step 4: Add bookmarklet
  57. ;;
  58. ;; * Create a new bookmark with the following location:
  59. ;;
  60. ;; javascript:location.href='org-browser-url-store:///'+\
  61. ;; escape(document.title)+'/'+location.href
  62. ;;
  63. ;; When you first use the bookmarklet, Firefox will prompt you for
  64. ;; the script. Point it to the full path of the script.
  65. ;;; Code:
  66. (require 'org)
  67. (require 'url)
  68. (defun org-browser-url-store-link ()
  69. "Store a browser URL as an org link from the bookmarklet"
  70. (if (boundp 'org-browser-url-args)
  71. (let* ((stored (url-generic-parse-url org-browser-url-args))
  72. (path (split-string (aref stored 6) "/"))
  73. (parsed (url-generic-parse-url
  74. (mapconcat 'identity (cddr path) "/")))
  75. (type (aref parsed 1))
  76. (link (aset parsed 7 (aref stored 7)))
  77. (link (url-recreate-url parsed))
  78. (description (url-unhex-string (nth 1 path))))
  79. (org-store-link-props
  80. :type type :link link :description description))))
  81. (add-hook 'org-store-link-functions 'org-browser-url-store-link)
  82. (provide 'org-browser-url)