aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorCarsten Dominik2008-03-13 08:53:48 +0000
committerCarsten Dominik2008-03-13 08:53:48 +0000
commit0fc0f17869bb4d7f8ef303d6960665a0638b6912 (patch)
treebe90e811db84402db8223df5f0092857bd3da97b /lisp/textmodes
parent28a16a1bf0f8a302d13c30bfe49f785068edde95 (diff)
downloademacs-0fc0f17869bb4d7f8ef303d6960665a0638b6912.tar.gz
emacs-0fc0f17869bb4d7f8ef303d6960665a0638b6912.zip
New file
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/org-irc.el232
-rw-r--r--lisp/textmodes/org-mac-message.el77
2 files changed, 309 insertions, 0 deletions
diff --git a/lisp/textmodes/org-irc.el b/lisp/textmodes/org-irc.el
new file mode 100644
index 00000000000..8bbd5000f26
--- /dev/null
+++ b/lisp/textmodes/org-irc.el
@@ -0,0 +1,232 @@
1;;; org-irc.el --- Store links to IRC sessions
2;;
3;; Copyright (C) 2008 Free Software Foundation, Inc.
4;;
5;; Author: Philip Jackson <emacs@shellarchive.co.uk>
6;; Keywords: erc, irc, link, org
7;; Version: 1.3
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, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
25;;
26;;; Commentary:
27;;
28;; Link to an IRC session. Only ERC has been implemented at the
29;; moment.
30;;
31;; This file is loaded by default whenever org.el is loaded. Please
32;; customize the variable `org-default-extensions' to select extensions
33;; you would like to use, and to deselect those which you don't want.
34;;
35;; Please note that at the moment only ERC is supported. Other clients
36;; shouldn't be diffficult to add though.
37;;
38;; Then set `org-irc-link-to-logs' to non-nil if you would like a
39;; file:/ type link to be created to the current line in the logs or
40;; to t if you would like to create an irc:/ style link.
41;;
42;; Links within an org buffer might look like this:
43;;
44;; [[irc:/irc.freenode.net/#emacs/bob][chat with bob in #emacs on freenode]]
45;; [[irc:/irc.freenode.net/#emacs][#emacs on freenode]]
46;; [[irc:/irc.freenode.net/]]
47;;
48;; If, when the resulting link is visited, there is no connection to a
49;; requested server then one will be created.
50;;
51;;; Code:
52
53
54(eval-when-compile
55 (require 'cl))
56
57(require 'org)
58(require 'erc)
59(require 'erc-log)
60
61(defvar org-irc-client 'erc
62 "The IRC client to act on")
63(defvar org-irc-link-to-logs nil
64 "non-nil will store a link to the logs, nil will store an irc: style link")
65
66(defvar erc-default-port) ; dynamically scoped from erc.el
67(defvar erc-session-port) ; dynamically scoped form erc-backend.el
68(defvar erc-server-announced-name) ; dynamically scoped form erc-backend.el
69
70;; Generic functions/config (extend these for other clients)
71
72(add-to-list 'org-store-link-functions
73 'org-irc-store-link)
74
75(org-add-link-type "irc" 'org-irc-visit nil)
76
77(defun org-irc-visit (link)
78 "Dispatch to the correct visit function based on the client"
79 (let ((link (org-irc-parse-link link)))
80 (cond
81 ((eq org-irc-client 'erc)
82 (org-irc-visit-erc link))
83 (t
84 (error "erc only known client")))))
85
86(defun org-irc-parse-link (link)
87 "Get a of irc link attributes where `link' looks like
88server:port/chan/user (port, chan and user being optional)."
89 (let* ((parts (split-string link "/" t))
90 (len (length parts)))
91 (when (or (< len 1) (> len 3))
92 (error "Failed to parse link needed 1-3 parts, got %d." len))
93 (setcar parts (split-string (car parts) ":" t))
94 parts))
95
96;;;###autoload
97(defun org-irc-store-link ()
98 "Dispatch to the appropreate function to store a link to
99something IRC related"
100 (cond
101 ((eq major-mode 'erc-mode)
102 (org-irc-erc-store-link))))
103
104(defun org-irc-elipsify-description (string &optional after)
105 "Strip starting and ending whitespace and replace any chars
106that appear after the value in `after' with '...'"
107 (let* ((after (number-to-string (or after 30)))
108 (replace-map (list (cons "^[ \t]*" "")
109 (cons "[ \t]*$" "")
110 (cons (concat "^\\(.\\{" after
111 "\\}\\).*") "\\1..."))))
112 (mapc (lambda (x)
113 (when (string-match (car x) string)
114 (setq string (replace-match (cdr x) nil nil string))))
115 replace-map)
116 string))
117
118;; ERC specific functions
119
120(defun org-irc-erc-get-line-from-log (erc-line)
121 "Find the most suitable line to link to from the erc logs. If
122the user is on the erc-prompt then search backward for the first
123non-blank line, otherwise return the current line. The result is
124a cons of the filename and search string."
125 (erc-save-buffer-in-logs)
126 (with-current-buffer (find-file-noselect (erc-current-logfile))
127 (goto-char (point-max))
128 (list
129 (abbreviate-file-name buffer-file-name)
130 ;; can we get a '::' part?
131 (if (string= erc-line (erc-prompt))
132 (progn
133 (goto-char (point-at-bol))
134 (when (search-backward-regexp "^[^ ]" nil t)
135 (buffer-substring-no-properties (point-at-bol)
136 (point-at-eol))))
137 (when (search-backward erc-line nil t)
138 (buffer-substring-no-properties (point-at-bol)
139 (point-at-eol)))))))
140
141(defun org-irc-erc-store-link ()
142 "Depending on the variable `org-irc-link-to-logs' store either
143a link to the log file for the current session or an irc: link to
144the session itself."
145 (if org-irc-link-to-logs
146 (let* ((erc-line (buffer-substring-no-properties
147 (point-at-bol) (point-at-eol)))
148 (parsed-line (org-irc-erc-get-line-from-log erc-line)))
149 (if (erc-logging-enabled nil)
150 (progn
151 (org-store-link-props
152 :type "file"
153 :description (concat "'" (org-irc-elipsify-description
154 (cadr parsed-line) 20)
155 "' from an IRC conversation")
156 :link (concat "file:" (car parsed-line) "::"
157 (cadr parsed-line)))
158 t)
159 (error "This ERC session is not being logged")))
160 (let* ((link-text (org-irc-get-erc-link))
161 (link (org-irc-parse-link link-text)))
162 (if link-text
163 (progn
164 (org-store-link-props
165 :type "irc"
166 :link (org-make-link "irc:/" link-text)
167 :description (concat "irc session '" link-text "'")
168 :server (car (car link))
169 :port (or (cadr (pop link)) erc-default-port)
170 :nick (pop link))
171 t)
172 (error "Failed to create ('irc:/' style) ERC link")))))
173
174(defun org-irc-get-erc-link ()
175 "Return an org compatible irc:/ link from an ERC buffer"
176 (let ((link (concat erc-server-announced-name ":"
177 (number-to-string erc-session-port))))
178 (concat link "/"
179 (if (and (erc-default-target)
180 (erc-channel-p (erc-default-target))
181 (car (get-text-property (point) 'erc-data)))
182 ;; we can get a nick
183 (let ((nick (car (get-text-property (point) 'erc-data))))
184 (concat (erc-default-target) "/" nick))
185 (erc-default-target)))))
186
187(defun org-irc-visit-erc (link)
188 "Visit an ERC buffer based on criteria from the followed link"
189 (let* ((server (car (car link)))
190 (port (or (cadr (pop link)) erc-default-port))
191 (server-buffer)
192 (buffer-list
193 (erc-buffer-filter
194 (lambda nil
195 (let ((tmp-server-buf (erc-server-buffer)))
196 (and tmp-server-buf
197 (with-current-buffer tmp-server-buf
198 (and
199 (string= erc-session-port port)
200 (string= erc-server-announced-name server)
201 (setq server-buffer tmp-server-buf)))))))))
202 (if buffer-list
203 (let ((chan-name (pop link)))
204 ;; if we got a channel name then switch to it or join it
205 (if chan-name
206 (let ((chan-buf (find-if
207 (lambda (x)
208 (string= (buffer-name x) chan-name))
209 buffer-list)))
210 (if chan-buf
211 (progn
212 (switch-to-buffer chan-buf)
213 ;; if we got a nick, and they're in the chan,
214 ;; then start a chat with them
215 (let ((nick (pop link)))
216 (when nick
217 (if (find nick (erc-get-server-nickname-list)
218 :test 'string=)
219 (progn
220 (goto-char (point-max))
221 (insert (concat nick ": ")))
222 (error "%s not found in %s" nick chan-name)))))
223 (progn
224 (switch-to-buffer server-buffer)
225 (erc-cmd-JOIN chan-name))))
226 (switch-to-buffer server-buffer)))
227 ;; no server match, make new connection
228 (erc-select :server server :port port))))
229
230(provide 'org-irc)
231
232;;; org-irc.el ends here
diff --git a/lisp/textmodes/org-mac-message.el b/lisp/textmodes/org-mac-message.el
new file mode 100644
index 00000000000..1e9fabc8862
--- /dev/null
+++ b/lisp/textmodes/org-mac-message.el
@@ -0,0 +1,77 @@
1;;; org-mac-message.el - Support for links to Apple Mail messages by Message-ID
2;; Carstens outline-mode for keeping track of everything.
3;; Copyright (C) 2008 Free Software Foundation, Inc.
4;;
5;; Author: John Wiegey <johnw@gnu.org>
6;; Version: 1.2
7;; Keywords: outlines, hypermedia, calendar, wp
8;;
9;; This file is part of GNU Emacs.
10;;
11;; 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, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26
27(require 'org)
28
29(org-add-link-type "message" 'org-mac-message-open)
30
31(declare-function do-applescript "mac.c" (string))
32(unless (fboundp 'do-applescript)
33 ;; Need to fake this using shell-command-to-string
34 (defun do-applescript (script)
35 (let (start cmd return)
36 (while (string-match "\n" script)
37 (setq script (replace-match "\r" t t script)))
38 (while (string-match "'" script start)
39 (setq start (+ 2 (match-beginning 0))
40 script (replace-match "\\'" t t script)))
41 (setq cmd (concat "osascript -e '" script "'"))
42 (setq return (shell-command-to-string cmd))
43 (concat "\"" (org-trim return) "\""))))
44
45(defun org-mac-message-open (message-id)
46 "Visit the message with the given Message-ID.
47This will use the command `open' with the message url."
48 (start-process (concat "open message:" message-id) nil
49 "open" (concat "message://<" (substring message-id 2) ">")))
50
51(defun org-mac-message-insert-link ()
52 "Insert a link to the messages currently selected in Apple Mail.
53This will use applescript to get the message-id and the subject of the
54active mail in AppleMail and make a link out of it."
55 (interactive)
56 (insert (org-mac-message-get-link)))
57
58(defun org-mac-message-get-link ()
59 "Insert a link to the messages currently selected in Apple Mail.
60This will use applescript to get the message-id and the subject of the
61active mail in AppleMail and make a link out of it."
62 (let ((subject (do-applescript "tell application \"Mail\"
63 set theMessages to selection
64 subject of beginning of theMessages
65end tell"))
66 (message-id (do-applescript "tell application \"Mail\"
67 set theMessages to selection
68 message id of beginning of theMessages
69end tell")))
70 (org-make-link-string
71 (concat "message://"
72 (substring message-id 1 (1- (length message-id))))
73 (substring subject 1 (1- (length subject))))))
74
75(provide 'org-mac-message)
76
77;;; org-mac-message.el ends here