org-gnus.el 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. ;;; org-gnus.el --- Support for links to Gnus groups and messages from within Org-mode
  2. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Tassilo Horn <tassilo at member dot fsf dot org>
  5. ;; Keywords: outlines, hypermedia, calendar, wp
  6. ;; Homepage: http://orgmode.org
  7. ;; Version: 6.12trans
  8. ;;
  9. ;; This file is part of GNU Emacs.
  10. ;;
  11. ;; GNU Emacs is free software: you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation, either version 3 of the License, or
  14. ;; (at your option) any later version.
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. ;; GNU General Public License for more details.
  19. ;; You should have received a copy of the GNU General Public License
  20. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  21. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  22. ;;
  23. ;;; Commentary:
  24. ;; This file implements links to Gnus groups and messages from within Org-mode.
  25. ;; Org-mode loads this module by default - if this is not what you want,
  26. ;; configure the variable `org-modules'.
  27. ;;; Code:
  28. (require 'org)
  29. (eval-when-compile
  30. (require 'gnus-sum))
  31. ;; Customization variables
  32. (when (fboundp 'defvaralias)
  33. (defvaralias 'org-usenet-links-prefer-google 'org-gnus-prefer-web-links
  34. "Deprecated name for `org-gnus-prefer-web-links'."))
  35. (defcustom org-gnus-prefer-web-links nil
  36. "Non-nil means, `org-store-link' will create web links to Google groups.
  37. When nil, Gnus will be used for such links.
  38. Using a prefix arg to the command \\[org-store-link] (`org-store-link')
  39. negates this setting for the duration of the command."
  40. :group 'org-link-store
  41. :type 'boolean)
  42. ;; Declare external functions and variables
  43. (declare-function gnus-article-show-summary "gnus-art" ())
  44. (declare-function gnus-summary-last-subject "gnus-sum" ())
  45. (defvar gnus-other-frame-object)
  46. (defvar gnus-group-name)
  47. (defvar gnus-article-current)
  48. ;; Install the link type
  49. (org-add-link-type "gnus" 'org-gnus-open)
  50. (add-hook 'org-store-link-functions 'org-gnus-store-link)
  51. ;; Implementation
  52. (defun org-gnus-group-link (group)
  53. (let ((unprefixed-group (replace-regexp-in-string "^[^:]+:" "" group)))
  54. (if (and (string-match "^nntp" group) ;; Only for nntp groups
  55. (org-xor current-prefix-arg
  56. org-gnus-prefer-web-links))
  57. (concat (if (string-match "gmane" unprefixed-group)
  58. "http://news.gmane.org/"
  59. "http://groups.google.com/group/")
  60. unprefixed-group)
  61. (concat "gnus:" group))))
  62. (defun org-gnus-article-link (group newsgroups message-id x-no-archive)
  63. (if (and (org-xor current-prefix-arg org-gnus-prefer-web-links)
  64. newsgroups ;; Make web links only for nntp groups
  65. (not x-no-archive)) ;; and if X-No-Archive isn't set.
  66. (format (if (string-match "gmane\\." newsgroups)
  67. "http://mid.gmane.org/%s"
  68. "http://groups.google.com/groups/search?as_umsgid=%s")
  69. (org-fixup-message-id-for-http
  70. (replace-regexp-in-string "[<>]" "" message-id)))
  71. (org-make-link "gnus:" group "#" message-id)))
  72. (defun org-gnus-store-link ()
  73. "Store a link to a Gnus folder or message."
  74. (cond
  75. ((eq major-mode 'gnus-group-mode)
  76. (let* ((group (cond ((fboundp 'gnus-group-group-name) ; depending on Gnus
  77. (gnus-group-group-name)) ; version
  78. ((fboundp 'gnus-group-name)
  79. (gnus-group-name))
  80. (t "???")))
  81. desc link)
  82. (unless group (error "Not on a group"))
  83. (org-store-link-props :type "gnus" :group group)
  84. (setq desc (org-gnus-group-link group)
  85. link (org-make-link desc))
  86. (org-add-link-props :link link :description desc)
  87. link))
  88. ((memq major-mode '(gnus-summary-mode gnus-article-mode))
  89. (and (eq major-mode 'gnus-summary-mode) (gnus-summary-show-article))
  90. (let* ((group gnus-newsgroup-name)
  91. (header (with-current-buffer gnus-article-buffer
  92. (gnus-summary-toggle-header 1)
  93. (goto-char (point-min))
  94. (mail-header-extract-no-properties)))
  95. (from (mail-header 'from header))
  96. (message-id (mail-header 'message-id header))
  97. (date (mail-header 'date header))
  98. (to (mail-header 'to header))
  99. (newsgroups (mail-header 'newsgroups header))
  100. (x-no-archive (mail-header 'x-no-archive header))
  101. (subject (gnus-summary-subject-string))
  102. desc link)
  103. (org-store-link-props :type "gnus" :from from :subject subject
  104. :message-id message-id :group group :to to)
  105. (setq desc (org-email-link-description)
  106. link (org-gnus-article-link group newsgroups message-id x-no-archive))
  107. (org-add-link-props :link link :description desc)
  108. link))))
  109. (defun org-gnus-open (path)
  110. "Follow the Gnus message or folder link specified by PATH."
  111. (let (group article)
  112. (if (not (string-match "\\`\\([^#]+\\)\\(#\\(.*\\)\\)?" path))
  113. (error "Error in Gnus link"))
  114. (setq group (match-string 1 path)
  115. article (match-string 3 path))
  116. (org-gnus-follow-link group article)))
  117. (defun org-gnus-follow-link (&optional group article)
  118. "Follow a Gnus link to GROUP and ARTICLE."
  119. (require 'gnus)
  120. (funcall (cdr (assq 'gnus org-link-frame-setup)))
  121. (if gnus-other-frame-object (select-frame gnus-other-frame-object))
  122. (cond ((and group article)
  123. (gnus-group-read-group 1 nil group)
  124. (gnus-summary-goto-article
  125. (if (string-match "[^0-9]" article)
  126. article
  127. (string-to-number article))
  128. nil t))
  129. (group (gnus-group-jump-to-group group))))
  130. (defun org-gnus-no-new-news ()
  131. "Like `M-x gnus' but doesn't check for new news."
  132. (if (not (gnus-alive-p)) (gnus)))
  133. (provide 'org-gnus)
  134. ;; arch-tag: 512e0840-58fa-45b3-b456-71e10fa2376d
  135. ;;; org-gnus.el ends here