Remove `org-maybe-intangible'
[org-mode/org-tableheadings.git] / lisp / org-protocol.el
blobaa3b4da24b721516fdf584785dc2cc7eae7f77e1
1 ;;; org-protocol.el --- Intercept Calls from Emacsclient to Trigger Custom Actions -*- lexical-binding: t; -*-
2 ;;
3 ;; Copyright (C) 2008-2016 Free Software Foundation, Inc.
4 ;;
5 ;; Authors: Bastien Guerry <bzg@gnu.org>
6 ;; Daniel M German <dmg AT uvic DOT org>
7 ;; Sebastian Rose <sebastian_rose AT gmx DOT de>
8 ;; Ross Patterson <me AT rpatterson DOT net>
9 ;; Maintainer: Sebastian Rose <sebastian_rose AT gmx DOT de>
10 ;; Keywords: org, emacsclient, wp
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
28 ;;; Commentary:
30 ;; Intercept calls from emacsclient to trigger custom actions.
32 ;; This is done by advising `server-visit-files' to scan the list of filenames
33 ;; for `org-protocol-the-protocol' and sub-protocols defined in
34 ;; `org-protocol-protocol-alist' and `org-protocol-protocol-alist-default'.
36 ;; Any application that supports calling external programs with an URL
37 ;; as argument may be used with this functionality.
40 ;; Usage:
41 ;; ------
43 ;; 1.) Add this to your init file (.emacs probably):
45 ;; (add-to-list 'load-path "/path/to/org-protocol/")
46 ;; (require 'org-protocol)
48 ;; 3.) Ensure emacs-server is up and running.
49 ;; 4.) Try this from the command line (adjust the URL as needed):
51 ;; $ emacsclient \
52 ;; org-protocol://store-link?url=http:%2F%2Flocalhost%2Findex.html&title=The%20title
54 ;; 5.) Optionally add custom sub-protocols and handlers:
56 ;; (setq org-protocol-protocol-alist
57 ;; '(("my-protocol"
58 ;; :protocol "my-protocol"
59 ;; :function my-protocol-handler-function)))
61 ;; A "sub-protocol" will be found in URLs like this:
63 ;; org-protocol://sub-protocol?key=val&key2=val2
65 ;; If it works, you can now setup other applications for using this feature.
68 ;; As of March 2009 Firefox users follow the steps documented on
69 ;; http://kb.mozillazine.org/Register_protocol, Opera setup is described here:
70 ;; http://www.opera.com/support/kb/view/535/
73 ;; Documentation
74 ;; -------------
76 ;; org-protocol.el comes with and installs handlers to open sources of published
77 ;; online content, store and insert the browser's URLs and cite online content
78 ;; by clicking on a bookmark in Firefox, Opera and probably other browsers and
79 ;; applications:
81 ;; * `org-protocol-open-source' uses the sub-protocol \"open-source\" and maps
82 ;; URLs to local filenames defined in `org-protocol-project-alist'.
84 ;; * `org-protocol-store-link' stores an Org-link (if Org-mode is present) and
85 ;; pushes the browsers URL to the `kill-ring' for yanking. This handler is
86 ;; triggered through the sub-protocol \"store-link\".
88 ;; * Call `org-protocol-capture' by using the sub-protocol \"capture\". If
89 ;; Org-mode is loaded, Emacs will pop-up a capture buffer and fill the
90 ;; template with the data provided. I.e. the browser's URL is inserted as an
91 ;; Org-link of which the page title will be the description part. If text
92 ;; was select in the browser, that text will be the body of the entry.
94 ;; You may use the same bookmark URL for all those standard handlers and just
95 ;; adjust the sub-protocol used:
97 ;; location.href='org-protocol://sub-protocol?url='+
98 ;; encodeURIComponent(location.href)+'&title='+
99 ;; encodeURIComponent(document.title)+'&body='+
100 ;; encodeURIComponent(window.getSelection())
102 ;; The handler for the sub-protocol \"capture\" detects an optional template
103 ;; char that, if present, triggers the use of a special template.
104 ;; Example:
106 ;; location.href='org-protocol://capture?template=x'+ ...
108 ;; uses template ?x.
110 ;; Note that using double slashes is optional from org-protocol.el's point of
111 ;; view because emacsclient squashes the slashes to one.
114 ;; provides: 'org-protocol
116 ;;; Code:
118 (require 'org)
120 (declare-function org-publish-get-project-from-filename "ox-publish"
121 (filename &optional up))
122 (declare-function server-edit "server" (&optional arg))
124 (define-obsolete-function-alias
125 'org-protocol-unhex-compound 'org-link-unescape-compound
126 "2011-02-17")
128 (define-obsolete-function-alias
129 'org-protocol-unhex-string 'org-link-unescape
130 "2011-02-17")
132 (define-obsolete-function-alias
133 'org-protocol-unhex-single-byte-sequence
134 'org-link-unescape-single-byte-sequence
135 "2011-02-17")
137 (defvar org-capture-link-is-already-stored)
139 (defgroup org-protocol nil
140 "Intercept calls from emacsclient to trigger custom actions.
142 This is done by advising `server-visit-files' to scan the list of filenames
143 for `org-protocol-the-protocol' and sub-protocols defined in
144 `org-protocol-protocol-alist' and `org-protocol-protocol-alist-default'."
145 :version "22.1"
146 :group 'convenience
147 :group 'org)
150 ;;; Variables:
152 (defconst org-protocol-protocol-alist-default
153 '(("org-capture" :protocol "capture" :function org-protocol-capture :kill-client t)
154 ("org-store-link" :protocol "store-link" :function org-protocol-store-link)
155 ("org-open-source" :protocol "open-source" :function org-protocol-open-source))
156 "Default protocols to use.
157 See `org-protocol-protocol-alist' for a description of this variable.")
159 (defconst org-protocol-the-protocol "org-protocol"
160 "This is the protocol to detect if org-protocol.el is loaded.
161 `org-protocol-protocol-alist-default' and `org-protocol-protocol-alist' hold
162 the sub-protocols that trigger the required action. You will have to define
163 just one protocol handler OS-wide (MS-Windows) or per application (Linux).
164 That protocol handler should call emacsclient.")
166 ;;; User variables:
168 (defcustom org-protocol-reverse-list-of-files t
169 "Non-nil means re-reverse the list of filenames passed on the command line.
170 The filenames passed on the command line are passed to the emacs-server in
171 reverse order. Set to t (default) to re-reverse the list, i.e. use the
172 sequence on the command line. If nil, the sequence of the filenames is
173 unchanged."
174 :group 'org-protocol
175 :type 'boolean)
177 (defcustom org-protocol-project-alist nil
178 "Map URLs to local filenames for `org-protocol-open-source' (open-source).
180 Each element of this list must be of the form:
182 (module-name :property value property: value ...)
184 where module-name is an arbitrary name. All the values are strings.
186 Possible properties are:
188 :online-suffix - the suffix to strip from the published URLs
189 :working-suffix - the replacement for online-suffix
190 :base-url - the base URL, e.g. http://www.example.com/project/
191 Last slash required.
192 :working-directory - the local working directory. This is, what base-url will
193 be replaced with.
194 :redirects - A list of cons cells, each of which maps a regular
195 expression to match to a path relative to :working-directory.
197 Example:
199 (setq org-protocol-project-alist
200 \\='((\"http://orgmode.org/worg/\"
201 :online-suffix \".php\"
202 :working-suffix \".org\"
203 :base-url \"http://orgmode.org/worg/\"
204 :working-directory \"/home/user/org/Worg/\")
205 (\"http://localhost/org-notes/\"
206 :online-suffix \".html\"
207 :working-suffix \".org\"
208 :base-url \"http://localhost/org/\"
209 :working-directory \"/home/user/org/\"
210 :rewrites ((\"org/?$\" . \"index.php\")))))
212 The last line tells `org-protocol-open-source' to open
213 /home/user/org/index.php, if the URL cannot be mapped to an existing
214 file, and ends with either \"org\" or \"org/\".
216 Consider using the interactive functions `org-protocol-create' and
217 `org-protocol-create-for-org' to help you filling this variable with valid contents."
218 :group 'org-protocol
219 :type 'alist)
221 (defcustom org-protocol-protocol-alist nil
222 "Register custom handlers for org-protocol.
224 Each element of this list must be of the form:
226 (module-name :protocol protocol :function func :kill-client nil)
228 protocol - protocol to detect in a filename without trailing
229 colon and slashes. See rfc1738 section 2.1 for more
230 on this. If you define a protocol \"my-protocol\",
231 `org-protocol-check-filename-for-protocol' will search
232 filenames for \"org-protocol:/my-protocol\" and
233 trigger your action for every match. `org-protocol'
234 is defined in `org-protocol-the-protocol'. Double and
235 triple slashes are compressed to one by emacsclient.
237 function - function that handles requests with protocol and takes
238 one argument. If a new-style link (key=val&key2=val2)
239 is given, the argument will be a property list with
240 the values from the link. If an old-style link is
241 given (val1/val2), the argument will be the filename
242 with all protocols stripped.
244 If the function returns nil, emacsclient and -server
245 do nothing. Any non-nil return value is considered a
246 valid filename and thus passed to the server.
248 `org-protocol.el' provides some support for handling
249 old-style filenames, if you follow the conventions
250 used for the standard handlers in
251 `org-protocol-protocol-alist-default'. See
252 `org-protocol-parse-parameters'.
254 kill-client - If t, kill the client immediately, once the sub-protocol is
255 detected. This is necessary for actions that can be interrupted by
256 `C-g' to avoid dangling emacsclients. Note that all other command
257 line arguments but the this one will be discarded. Greedy handlers
258 still receive the whole list of arguments though.
260 Here is an example:
262 (setq org-protocol-protocol-alist
263 \\='((\"my-protocol\"
264 :protocol \"my-protocol\"
265 :function my-protocol-handler-function)
266 (\"your-protocol\"
267 :protocol \"your-protocol\"
268 :function your-protocol-handler-function)))"
269 :group 'org-protocol
270 :type '(alist))
272 (defcustom org-protocol-default-template-key nil
273 "The default template key to use.
274 This is usually a single character string but can also be a
275 string with two characters."
276 :group 'org-protocol
277 :type '(choice (const nil) (string)))
279 (defcustom org-protocol-data-separator "/+\\|\\?"
280 "The default data separator to use.
281 This should be a single regexp string."
282 :group 'org-protocol
283 :version "24.4"
284 :package-version '(Org . "8.0")
285 :type 'string)
287 ;;; Helper functions:
289 (defun org-protocol-sanitize-uri (uri)
290 "Sanitize slashes to double-slashes in URI.
291 Emacsclient compresses double and triple slashes."
292 (when (string-match "^\\([a-z]+\\):/" uri)
293 (let* ((splitparts (split-string uri "/+")))
294 (setq uri (concat (car splitparts) "//" (mapconcat 'identity (cdr splitparts) "/")))))
295 uri)
297 (defun org-protocol-split-data (data &optional unhexify separator)
298 "Split the DATA argument for an org-protocol handler function.
299 If UNHEXIFY is non-nil, hex-decode each split part. If UNHEXIFY
300 is a function, use that function to decode each split part. The
301 string is split at each occurrence of SEPARATOR (regexp). If no
302 SEPARATOR is specified or SEPARATOR is nil, assume \"/+\". The
303 results of that splitting are returned as a list."
304 (let* ((sep (or separator "/+\\|\\?"))
305 (split-parts (split-string data sep)))
306 (if unhexify
307 (if (fboundp unhexify)
308 (mapcar unhexify split-parts)
309 (mapcar 'org-link-unescape split-parts))
310 split-parts)))
312 (defun org-protocol-flatten-greedy (param-list &optional strip-path replacement)
313 "Transform PARAM-LIST into a flat list for greedy handlers.
315 Greedy handlers might receive a list like this from emacsclient:
316 \((\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\"))
317 where \"/dir/\" is the absolute path to emacsclient's working directory. This
318 function transforms it into a flat list using `org-protocol-flatten' and
319 transforms the elements of that list as follows:
321 If STRIP-PATH is non-nil, remove the \"/dir/\" prefix from all members of
322 param-list.
324 If REPLACEMENT is string, replace the \"/dir/\" prefix with it.
326 The first parameter, the one that contains the protocols, is always changed.
327 Everything up to the end of the protocols is stripped.
329 Note, that this function will always behave as if
330 `org-protocol-reverse-list-of-files' was set to t and the returned list will
331 reflect that. emacsclient's first parameter will be the first one in the
332 returned list."
333 (let* ((l (org-protocol-flatten (if org-protocol-reverse-list-of-files
334 param-list
335 (reverse param-list))))
336 (trigger (car l))
337 (len 0)
339 ret)
340 (when (string-match "^\\(.*\\)\\(org-protocol:/+[a-zA-z0-9][-_a-zA-z0-9]*:/+\\)\\(.*\\)" trigger)
341 (setq dir (match-string 1 trigger))
342 (setq len (length dir))
343 (setcar l (concat dir (match-string 3 trigger))))
344 (if strip-path
345 (progn
346 (dolist (e l ret)
347 (setq ret
348 (append ret
349 (list
350 (if (stringp e)
351 (if (stringp replacement)
352 (setq e (concat replacement (substring e len)))
353 (setq e (substring e len)))
354 e)))))
355 ret)
356 l)))
358 (defun org-protocol-flatten (list)
359 "Transform LIST into a flat list.
361 Greedy handlers might receive a list like this from emacsclient:
362 \((\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\"))
363 where \"/dir/\" is the absolute path to emacsclients working directory.
364 This function transforms it into a flat list."
365 (if (null list) ()
366 (if (listp list)
367 (append (org-protocol-flatten (car list)) (org-protocol-flatten (cdr list)))
368 (list list))))
370 (defun org-protocol-parse-parameters (info &optional new-style default-order)
371 "Return a property list of parameters from INFO.
372 If NEW-STYLE is non-nil, treat INFO as a query string (ex:
373 url=URL&title=TITLE). If old-style links are used (ex:
374 org-protocol://store-link/url/title), assign them to attributes
375 following DEFAULT-ORDER.
377 If no DEFAULT-ORDER is specified, return the list of values.
379 If INFO is already a property list, return it unchanged."
380 (if (listp info)
381 info
382 (if new-style
383 (let ((data (org-protocol-convert-query-to-plist info))
384 result)
385 (while data
386 (setq result
387 (append
388 result
389 (list
390 (pop data)
391 (org-link-unescape (pop data))))))
392 result)
393 (let ((data (org-protocol-split-data info t org-protocol-data-separator)))
394 (if default-order
395 (org-protocol-assign-parameters data default-order)
396 data)))))
398 (defun org-protocol-assign-parameters (data default-order)
399 "Return a property list of parameters from DATA.
400 Key names are taken from DEFAULT-ORDER, which should be a list of
401 symbols. If DEFAULT-ORDER is shorter than the number of values
402 specified, the rest of the values are treated as :key value pairs."
403 (let (result)
404 (while default-order
405 (setq result
406 (append result
407 (list (pop default-order)
408 (pop data)))))
409 (while data
410 (setq result
411 (append result
412 (list (intern (concat ":" (pop data)))
413 (pop data)))))
414 result))
416 ;;; Standard protocol handlers:
418 (defun org-protocol-store-link (fname)
419 "Process an org-protocol://store-link style url.
420 Additionally store a browser URL as an org link. Also pushes the
421 link's URL to the `kill-ring'.
423 Parameters: url, title (optional), body (optional)
425 Old-style links such as org-protocol://store-link://URL/TITLE are
426 also recognized.
428 The location for a browser's bookmark has to look like this:
430 javascript:location.href = \\
431 \\='org-protocol://store-link?url=\\=' + \\
432 encodeURIComponent(location.href) + \\='&title=\\=' + \\
433 encodeURIComponent(document.title);
435 Don't use `escape()'! Use `encodeURIComponent()' instead. The
436 title of the page could contain slashes and the location
437 definitely will.
439 The sub-protocol used to reach this function is set in
440 `org-protocol-protocol-alist'.
442 FNAME should be a property list. If not, an old-style link of the
443 form URL/TITLE can also be used."
444 (let* ((splitparts (org-protocol-parse-parameters fname nil '(:url :title)))
445 (uri (org-protocol-sanitize-uri (plist-get splitparts :url)))
446 (title (plist-get splitparts :title)))
447 (when (boundp 'org-stored-links)
448 (push (list uri title) org-stored-links))
449 (kill-new uri)
450 (message "`%s' to insert new org-link, `%s' to insert `%s'"
451 (substitute-command-keys"\\[org-insert-link]")
452 (substitute-command-keys"\\[yank]")
453 uri))
454 nil)
456 (defun org-protocol-capture (info)
457 "Process an org-protocol://capture style url with INFO.
459 The sub-protocol used to reach this function is set in
460 `org-protocol-protocol-alist'.
462 This function detects an URL, title and optional text, separated
463 by `/'. The location for a browser's bookmark looks like this:
465 javascript:location.href = \\='org-protocol://capture?url=\\='+ \\
466 encodeURIComponent(location.href) + \\='&title=\\=' \\
467 encodeURIComponent(document.title) + \\='&body=\\=' + \\
468 encodeURIComponent(window.getSelection())
470 By default, it uses the character `org-protocol-default-template-key',
471 which should be associated with a template in `org-capture-templates'.
472 You may specify the template with a template= query parameter, like this:
474 javascript:location.href = \\='org-protocol://capture?template=b\\='+ ...
476 Now template ?b will be used."
477 (if (and (boundp 'org-stored-links)
478 (org-protocol-do-capture info))
479 (message "Item captured."))
480 nil)
482 (defun org-protocol-convert-query-to-plist (query)
483 "Convert QUERY key=value pairs in the URL to a property list."
484 (if query
485 (apply 'append (mapcar (lambda (x)
486 (let ((c (split-string x "=")))
487 (list (intern (concat ":" (car c))) (cadr c))))
488 (split-string query "&")))))
490 (defun org-protocol-do-capture (info)
491 "Perform the actual capture based on INFO."
492 (let* ((temp-parts (org-protocol-parse-parameters info))
493 (parts
494 (cond
495 ((and (listp info) (symbolp (car info))) info)
496 ((= (length (car temp-parts)) 1) ;; First parameter is exactly one character long
497 (org-protocol-assign-parameters temp-parts '(:template :url :title :body)))
499 (org-protocol-assign-parameters temp-parts '(:url :title :body)))))
500 (template (or (plist-get parts :template)
501 org-protocol-default-template-key))
502 (url (and (plist-get parts :url) (org-protocol-sanitize-uri (plist-get parts :url))))
503 (type (and url (if (string-match "^\\([a-z]+\\):" url)
504 (match-string 1 url))))
505 (title (or (plist-get parts :title) ""))
506 (region (or (plist-get parts :body) ""))
507 (orglink (if url
508 (org-make-link-string
509 url (if (string-match "[^[:space:]]" title) title url))
510 title))
511 (org-capture-link-is-already-stored t)) ;; avoid call to org-store-link
512 (setq org-stored-links
513 (cons (list url title) org-stored-links))
514 (kill-new orglink)
515 (org-store-link-props :type type
516 :link url
517 :description title
518 :annotation orglink
519 :initial region
520 :query parts)
521 (raise-frame)
522 (funcall 'org-capture nil template)))
524 (defun org-protocol-open-source (fname)
525 "Process an org-protocol://open-source?url= style URL with FNAME.
527 Change a filename by mapping URLs to local filenames as set
528 in `org-protocol-project-alist'.
530 The location for a browser's bookmark should look like this:
532 javascript:location.href = \\='org-protocol://open-source?url=\\=' + \\
533 encodeURIComponent(location.href)"
534 ;; As we enter this function for a match on our protocol, the return value
535 ;; defaults to nil.
536 (let ((result nil)
537 (f (plist-get (org-protocol-parse-parameters fname nil '(:url)) :url)))
538 (catch 'result
539 (dolist (prolist org-protocol-project-alist)
540 (let* ((base-url (plist-get (cdr prolist) :base-url))
541 (wsearch (regexp-quote base-url)))
543 (when (string-match wsearch f)
544 (let* ((wdir (plist-get (cdr prolist) :working-directory))
545 (strip-suffix (plist-get (cdr prolist) :online-suffix))
546 (add-suffix (plist-get (cdr prolist) :working-suffix))
547 ;; Strip "[?#].*$" if `f' is a redirect with another
548 ;; ending than strip-suffix here:
549 (f1 (substring f 0 (string-match "\\([\\?#].*\\)?$" f)))
550 (start-pos (+ (string-match wsearch f1) (length base-url)))
551 (end-pos (string-match
552 (regexp-quote strip-suffix) f1))
553 ;; We have to compare redirects without suffix below:
554 (f2 (concat wdir (substring f1 start-pos end-pos)))
555 (the-file (concat f2 add-suffix)))
557 ;; Note: the-file may still contain `%C3' et al here because browsers
558 ;; tend to encode `&auml;' in URLs to `%25C3' - `%25' being `%'.
559 ;; So the results may vary.
561 ;; -- start redirects --
562 (unless (file-exists-p the-file)
563 (message "File %s does not exist.\nTesting for rewritten URLs." the-file)
564 (let ((rewrites (plist-get (cdr prolist) :rewrites)))
565 (when rewrites
566 (message "Rewrites found: %S" rewrites)
567 (dolist (rewrite rewrites)
568 ;; Try to match a rewritten URL and map it to
569 ;; a real file. Compare redirects without
570 ;; suffix.
571 (when (string-match-p (car rewrite) f2)
572 (throw 'result (concat wdir (cdr rewrite))))))))
573 ;; -- end of redirects --
575 (if (file-readable-p the-file)
576 (throw 'result the-file))
577 (if (file-exists-p the-file)
578 (message "%s: permission denied!" the-file)
579 (message "%s: no such file or directory." the-file))))))
580 result)))
583 ;;; Core functions:
585 (defun org-protocol-check-filename-for-protocol (fname restoffiles _client)
586 "Check if `org-protocol-the-protocol' and a valid protocol are used in FNAME.
587 Sub-protocols are registered in `org-protocol-protocol-alist' and
588 `org-protocol-protocol-alist-default'. This is how the matching is done:
590 (string-match \"protocol:/+sub-protocol\\\\(://\\\\|\\\\?\\\\)\" ...)
592 protocol and sub-protocol are regexp-quoted.
594 Old-style links such as \"protocol://sub-protocol://param1/param2\" are
595 also recognized.
597 If a matching protocol is found, the protocol is stripped from
598 fname and the result is passed to the protocol function as the
599 first parameter. The second parameter will be non-nil if FNAME
600 uses key=val&key2=val2-type arguments, or nil if FNAME uses
601 val/val2-type arguments. If the function returns nil, the
602 filename is removed from the list of filenames passed from
603 emacsclient to the server. If the function returns a non-nil
604 value, that value is passed to the server as filename.
606 If the handler function is greedy, RESTOFFILES will also be passed to it.
608 CLIENT is ignored."
609 (let ((sub-protocols (append org-protocol-protocol-alist
610 org-protocol-protocol-alist-default)))
611 (catch 'fname
612 (let ((the-protocol (concat (regexp-quote org-protocol-the-protocol) ":/+")))
613 (when (string-match the-protocol fname)
614 (dolist (prolist sub-protocols)
615 (let ((proto (concat the-protocol
616 (regexp-quote (plist-get (cdr prolist) :protocol)) "\\(:/+\\|\\?\\)")))
617 (when (string-match proto fname)
618 (let* ((func (plist-get (cdr prolist) :function))
619 (greedy (plist-get (cdr prolist) :greedy))
620 (split (split-string fname proto))
621 (result (if greedy restoffiles (cadr split)))
622 (new-style (string= (match-string 1 fname) "?")))
623 (when (plist-get (cdr prolist) :kill-client)
624 (message "Greedy org-protocol handler. Killing client.")
625 (server-edit))
626 (when (fboundp func)
627 (unless greedy
628 (throw 'fname
629 (condition-case nil
630 (funcall func (org-protocol-parse-parameters result new-style))
631 (error
632 (warn "Please update your org protocol handler to deal with new-style links.")
633 (funcall func result)))))
634 ;; Greedy protocol handlers are responsible for parsing their own filenames
635 (funcall func result)
636 (throw 'fname t))))))))
637 fname)))
639 (defadvice server-visit-files (before org-protocol-detect-protocol-server activate)
640 "Advice server-visit-flist to call `org-protocol-modify-filename-for-protocol'."
641 (let ((flist (if org-protocol-reverse-list-of-files
642 (reverse (ad-get-arg 0))
643 (ad-get-arg 0)))
644 (client (ad-get-arg 1)))
645 (catch 'greedy
646 (dolist (var flist)
647 ;; `\' to `/' on windows. FIXME: could this be done any better?
648 (let ((fname (expand-file-name (car var))))
649 (setq fname (org-protocol-check-filename-for-protocol
650 fname (member var flist) client))
651 (if (eq fname t) ;; greedy? We need the t return value.
652 (progn
653 (ad-set-arg 0 nil)
654 (throw 'greedy t))
655 (if (stringp fname) ;; probably filename
656 (setcar var fname)
657 (ad-set-arg 0 (delq var (ad-get-arg 0))))))))))
659 ;;; Org specific functions:
661 (defun org-protocol-create-for-org ()
662 "Create a org-protocol project for the current file's Org-mode project.
663 The visited file needs to be part of a publishing project in
664 `org-publish-project-alist' for this to work. The function
665 delegates most of the work to `org-protocol-create'."
666 (interactive)
667 (require 'org-publish)
668 (let ((all (or (org-publish-get-project-from-filename buffer-file-name))))
669 (if all (org-protocol-create (cdr all))
670 (message "Not in an org-project. Did you mean `%s'?"
671 (substitute-command-keys"\\[org-protocol-create]")))))
673 (defun org-protocol-create (&optional project-plist)
674 "Create a new org-protocol project interactively.
675 An org-protocol project is an entry in
676 `org-protocol-project-alist' which is used by
677 `org-protocol-open-source'. Optionally use PROJECT-PLIST to
678 initialize the defaults for this project. If PROJECT-PLIST is
679 the cdr of an element in `org-publish-project-alist', reuse
680 :base-directory, :html-extension and :base-extension."
681 (interactive)
682 (let ((working-dir (expand-file-name
683 (or (plist-get project-plist :base-directory)
684 default-directory)))
685 (base-url "http://orgmode.org/worg/")
686 (strip-suffix (or (plist-get project-plist :html-extension) ".html"))
687 (working-suffix (if (plist-get project-plist :base-extension)
688 (concat "." (plist-get project-plist :base-extension))
689 ".org"))
690 (insert-default-directory t)
691 (minibuffer-allow-text-properties nil))
693 (setq base-url (read-string "Base URL of published content: " base-url nil base-url t))
694 (if (not (string-match "\\/$" base-url))
695 (setq base-url (concat base-url "/")))
697 (setq working-dir
698 (expand-file-name
699 (read-directory-name "Local working directory: " working-dir working-dir t)))
700 (if (not (string-match "\\/$" working-dir))
701 (setq working-dir (concat working-dir "/")))
703 (setq strip-suffix
704 (read-string
705 (concat "Extension to strip from published URLs (" strip-suffix "): ")
706 strip-suffix nil strip-suffix t))
708 (setq working-suffix
709 (read-string
710 (concat "Extension of editable files (" working-suffix "): ")
711 working-suffix nil working-suffix t))
713 (when (yes-or-no-p "Save the new org-protocol-project to your init file? ")
714 (setq org-protocol-project-alist
715 (cons `(,base-url . (:base-url ,base-url
716 :working-directory ,working-dir
717 :online-suffix ,strip-suffix
718 :working-suffix ,working-suffix))
719 org-protocol-project-alist))
720 (customize-save-variable 'org-protocol-project-alist org-protocol-project-alist))))
722 (provide 'org-protocol)
724 ;;; org-protocol.el ends here