org-w3m.el 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. ;;; org-w3m.el --- Support from copy and paste from w3m to Org-mode
  2. ;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
  3. ;; Author: Andy Stewart <lazycat dot manatee at gmail dot com>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file implements copying HTML content from a w3m buffer and
  23. ;; transforming the text on the fly so that it can be pasted into
  24. ;; an org-mode buffer with hot links. It will also work for regions
  25. ;; in gnus buffers that have been washed with w3m.
  26. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  27. ;;
  28. ;;; Acknowledgments:
  29. ;; Richard Riley <rileyrgdev at googlemail dot com>
  30. ;;
  31. ;; The idea of transforming the HTML content with org-mode style is
  32. ;; proposed by Richard, I'm just coding it.
  33. ;;
  34. ;;; Code:
  35. (require 'org)
  36. (defun org-w3m-copy-for-org-mode ()
  37. "Copy current buffer content or active region with `org-mode' style links.
  38. This will encode `link-title' and `link-location' with
  39. `org-make-link-string', and insert the transformed test into the kill ring,
  40. so that it can be yanked into an Org-mode buffer with links working correctly."
  41. (interactive)
  42. (let* ((regionp (org-region-active-p))
  43. (transform-start (point-min))
  44. (transform-end (point-max))
  45. return-content
  46. link-location link-title
  47. temp-position out-bound)
  48. (when regionp
  49. (setq transform-start (region-beginning))
  50. (setq transform-end (region-end))
  51. ;; Deactivate mark if current mark is activate.
  52. (if (fboundp 'deactivate-mark) (deactivate-mark)))
  53. (message "Transforming links...")
  54. (save-excursion
  55. (goto-char transform-start)
  56. (while (and (not out-bound) ; still inside region to copy
  57. (not (org-w3m-no-next-link-p))) ; no next link current buffer
  58. ;; store current point before jump next anchor
  59. (setq temp-position (point))
  60. ;; move to next anchor when current point is not at anchor
  61. (or (get-text-property (point) 'w3m-href-anchor) (org-w3m-get-next-link-start))
  62. (if (<= (point) transform-end) ; if point is inside transform bound
  63. (progn
  64. ;; get content between two links.
  65. (if (> (point) temp-position)
  66. (setq return-content (concat return-content
  67. (buffer-substring
  68. temp-position (point)))))
  69. ;; get link location at current point.
  70. (setq link-location (get-text-property (point) 'w3m-href-anchor))
  71. ;; get link title at current point.
  72. (setq link-title (buffer-substring (point)
  73. (org-w3m-get-anchor-end)))
  74. ;; concat `org-mode' style url to `return-content'.
  75. (setq return-content (concat return-content
  76. (org-make-link-string
  77. link-location link-title))))
  78. (goto-char temp-position) ; reset point before jump next anchor
  79. (setq out-bound t) ; for break out `while' loop
  80. ))
  81. ;; add the rest until end of the region to be copied
  82. (if (< (point) transform-end)
  83. (setq return-content
  84. (concat return-content
  85. (buffer-substring (point) transform-end))))
  86. (org-kill-new return-content)
  87. (message "Transforming links...done, use C-y to insert text into Org-mode file")
  88. (message "Copy with link transformation complete."))))
  89. (defun org-w3m-get-anchor-start ()
  90. "Move cursor to the start of current anchor. Return point."
  91. ;; get start position of anchor or current point
  92. (goto-char (or (previous-single-property-change (point) 'w3m-anchor-sequence)
  93. (point))))
  94. (defun org-w3m-get-anchor-end ()
  95. "Move cursor to the end of current anchor. Return point."
  96. ;; get end position of anchor or point
  97. (goto-char (or (next-single-property-change (point) 'w3m-anchor-sequence)
  98. (point))))
  99. (defun org-w3m-get-next-link-start ()
  100. "Move cursor to the start of next link. Return point."
  101. (catch 'reach
  102. (while (next-single-property-change (point) 'w3m-anchor-sequence)
  103. ;; jump to next anchor
  104. (goto-char (next-single-property-change (point) 'w3m-anchor-sequence))
  105. (when (get-text-property (point) 'w3m-href-anchor)
  106. ;; return point when current is valid link
  107. (throw 'reach nil))))
  108. (point))
  109. (defun org-w3m-get-prev-link-start ()
  110. "Move cursor to the start of previous link. Return point."
  111. (catch 'reach
  112. (while (previous-single-property-change (point) 'w3m-anchor-sequence)
  113. ;; jump to previous anchor
  114. (goto-char (previous-single-property-change (point) 'w3m-anchor-sequence))
  115. (when (get-text-property (point) 'w3m-href-anchor)
  116. ;; return point when current is valid link
  117. (throw 'reach nil))))
  118. (point))
  119. (defun org-w3m-no-next-link-p ()
  120. "Whether there is no next link after the cursor.
  121. Return t if there is no next link; otherwise, return nil."
  122. (save-excursion
  123. (equal (point) (org-w3m-get-next-link-start))))
  124. (defun org-w3m-no-prev-link-p ()
  125. "Whether there is no previous link after the cursor.
  126. Return t if there is no previous link; otherwise, return nil."
  127. (save-excursion
  128. (equal (point) (org-w3m-get-prev-link-start))))
  129. ;; Install keys into the w3m keymap
  130. (defvar w3m-mode-map)
  131. (defvar w3m-minor-mode-map)
  132. (when (and (boundp 'w3m-mode-map)
  133. (keymapp w3m-mode-map))
  134. (define-key w3m-mode-map "\C-c\C-x\M-w" 'org-w3m-copy-for-org-mode)
  135. (define-key w3m-mode-map "\C-c\C-x\C-w" 'org-w3m-copy-for-org-mode))
  136. (when (and (boundp 'w3m-minor-mode-map)
  137. (keymapp w3m-minor-mode-map))
  138. (define-key w3m-minor-mode-map "\C-c\C-x\M-w" 'org-w3m-copy-for-org-mode)
  139. (define-key w3m-minor-mode-map "\C-c\C-x\C-w" 'org-w3m-copy-for-org-mode))
  140. (add-hook
  141. 'w3m-mode-hook
  142. (lambda ()
  143. (define-key w3m-mode-map "\C-c\C-x\M-w" 'org-w3m-copy-for-org-mode)
  144. (define-key w3m-mode-map "\C-c\C-x\C-w" 'org-w3m-copy-for-org-mode)))
  145. (add-hook
  146. 'w3m-minor-mode-hook
  147. (lambda ()
  148. (define-key w3m-minor-mode-map "\C-c\C-x\M-w" 'org-w3m-copy-for-org-mode)
  149. (define-key w3m-minor-mode-map "\C-c\C-x\C-w" 'org-w3m-copy-for-org-mode)))
  150. (provide 'org-w3m)
  151. ;;; org-w3m.el ends here