1 ;;; rfc2368.el --- support for rfc2368
3 ;; Copyright (C) 1998, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Sen Nagata <sen@eccosys.com>
9 ;; This file is part of GNU Emacs.
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.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;; -repeat after me: "the colon is not part of the header name..."
29 ;; -if w3 becomes part of emacs, then it may make sense to have this
30 ;; file depend on w3 -- the maintainer of w3 says merging w/ Emacs
35 ;; this is intended as a replacement for mailto.el
39 ;; the functions that deal w/ unhexifying in this file were basically
40 ;; taken from w3 -- i hope to replace them w/ something else soon OR
41 ;; perhaps if w3 becomes a part of emacs soon, use the functions from w3.
47 ;; added the constant rfc2368-version
48 ;; implemented first potential fix for a bug in rfc2368-mailto-regexp
49 ;; implemented first potential fix for a bug in rfc2368-parse-mailto
50 ;; (both bugs reported by Kenichi OKADA)
54 ;; started to use checkdoc
58 ;; initial implementation
62 ;; only an approximation?
64 (defconst rfc2368-mailto-regexp
65 "^\\(mailto:\\)\\([^?]+\\)*\\(\\?\\(.*\\)\\)*"
66 "Regular expression to match and aid in parsing a mailto url.")
68 ;; describes 'mailto:'
69 (defconst rfc2368-mailto-scheme-index
1
70 "Describes the 'mailto:' portion of the url.")
71 ;; i'm going to call this part the 'prequery'
72 (defconst rfc2368-mailto-prequery-index
2
73 "Describes the portion of the url between 'mailto:' and '?'.")
74 ;; i'm going to call this part the 'query'
75 (defconst rfc2368-mailto-query-index
4
76 "Describes the portion of the url after '?'.")
78 (defun rfc2368-unhexify-string (string)
79 "Unhexify STRING -- e.g. 'hello%20there' -> 'hello there'."
80 (replace-regexp-in-string "%[[:xdigit:]]\\{2\\}"
82 (string (string-to-number (substring match
1)
86 (defun rfc2368-parse-mailto-url (mailto-url)
87 "Parse MAILTO-URL, and return an alist of header-name, header-value pairs.
88 MAILTO-URL should be a RFC 2368 (mailto) compliant url. A cons cell w/ a
89 key of 'Body' is a special case and is considered a header for this purpose.
90 The returned alist is intended for use w/ the `compose-mail' interface.
91 Note: make sure MAILTO-URL has been 'unhtmlized' (e.g. & -> &), before
92 calling this function."
93 (let ((case-fold-search t
)
94 prequery query headers-alist
)
96 (if (string-match rfc2368-mailto-regexp mailto-url
)
100 (match-string rfc2368-mailto-prequery-index mailto-url
))
103 (match-string rfc2368-mailto-query-index mailto-url
))
105 ;; build alist of header name-value pairs
106 (if (not (null query
))
110 (let* ((temp-list (split-string x
"="))
111 (header-name (car temp-list
))
112 (header-value (cadr temp-list
)))
113 ;; return ("Header-Name" . "header-value")
115 (capitalize (rfc2368-unhexify-string header-name
))
116 (rfc2368-unhexify-string header-value
))))
117 (split-string query
"&"))))
119 ;; deal w/ multiple 'To' recipients
122 (setq prequery
(rfc2368-unhexify-string prequery
))
123 (if (assoc "To" headers-alist
)
124 (let* ((our-cons-cell
125 (assoc "To" headers-alist
))
127 (cdr our-cons-cell
)))
128 (setcdr our-cons-cell
(concat prequery
", " our-cdr
)))
130 (cons (cons "To" prequery
) headers-alist
)))))
134 (error "Failed to match a mailto: url"))
139 ;; arch-tag: ea804934-ad96-4f69-957b-857a76e4fd95
140 ;;; rfc2368.el ends here