org-w3m.el 6.3 KB

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