From: Max Nikulin <manikulin@gmail.com>
To: emacs-orgmode@gnu.org
Subject: [PATCH] org-protocol: Add void() to bookmarklets
Date: Mon, 16 Dec 2024 23:01:56 +0700 [thread overview]
Message-ID: <vjpitn$12cj$1@ciao.gmane.io> (raw)
In-Reply-To: <878qsk68ma.fsf@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 335 bytes --]
On 13/12/2024 01:47, Rehan Deen wrote:
>> javascript:void(location.href='org-protocol:...)
>>
>> The idea is to discard a string returned by the assignment operator.
[...]
> Thanks, that works and is consistent with what I thought was happening
A patch updating org-protocol.el comments, docstrings, and the manual is
attached.
[-- Attachment #2: 0001-org-protocol-Add-void-to-bookmarklets.patch --]
[-- Type: text/x-patch, Size: 7684 bytes --]
From 84de1aec4532d36d24002ad2dcbc67993ff5c3c4 Mon Sep 17 00:00:00 2001
From: Max Nikulin <manikulin@gmail.com>
Date: Mon, 16 Dec 2024 21:46:49 +0700
Subject: [PATCH] org-protocol: Add void() to bookmarklets
* doc/org-manual.org (The store-link protocol):
(The capture protocol, The open-source protocol):
* lisp/org-protocol.el (org-protocol-store-link):
(org-protocol-capture, org-protocol-open-source): Update javascript:
bookmarklets to discard assigned value.
Firefox-133 may treat expression value as document content to render.
Reported by: Rehan Deen. [BUG] Org-protocol bookmarklets in Firefox
behaving badly after recent upgrade. Thu, 12 Dec 2024 13:42:34 +0530.
Link: <https://list.orgmode.org/87pllx7219.fsf@gmail.com>
---
doc/org-manual.org | 20 ++++++++++----------
lisp/org-protocol.el | 34 +++++++++++++++++-----------------
2 files changed, 27 insertions(+), 27 deletions(-)
diff --git a/doc/org-manual.org b/doc/org-manual.org
index 0f6d6a067..10900f738 100644
--- a/doc/org-manual.org
+++ b/doc/org-manual.org
@@ -21318,15 +21318,15 @@ *** The ~store-link~ protocol
name, e.g., =Org: store-link= and enter this as /Location/:
#+begin_example
-javascript:location.href='org-protocol://store-link?' +
- new URLSearchParams({url:location.href, title:document.title});
+javascript:void(location.href='org-protocol://store-link?' +
+ new URLSearchParams({url:location.href, title:document.title}));
#+end_example
Title is an optional parameter. Another expression was recommended earlier:
#+begin_example
-javascript:location.href='org-protocol://store-link?url='+
- encodeURIComponent(location.href);
+javascript:void(location.href='org-protocol://store-link?url='+
+ encodeURIComponent(location.href));
#+end_example
The latter form is compatible with older Org versions from 9.0 to 9.4.
@@ -21347,19 +21347,19 @@ *** The ~capture~ protocol
=Org: capture=, and enter this as =Location=:
#+begin_example
-javascript:location.href='org-protocol://capture?' +
+javascript:void(location.href='org-protocol://capture?' +
new URLSearchParams({
template: 'x', url: window.location.href,
- title: document.title, body: window.getSelection()});
+ title: document.title, body: window.getSelection()}));
#+end_example
You might have seen another expression:
#+begin_example
-javascript:location.href='org-protocol://capture?template=x'+
+javascript:void(location.href='org-protocol://capture?template=x'+
'&url='+encodeURIComponent(window.location.href)+
'&title='+encodeURIComponent(document.title)+
- '&body='+encodeURIComponent(window.getSelection());
+ '&body='+encodeURIComponent(window.getSelection()));
#+end_example
It is a bit more cluttered than the former one, but it is compatible
@@ -21391,8 +21391,8 @@ *** The ~open-source~ protocol
a bookmark with the following location:
#+begin_example
-javascript:location.href='org-protocol://open-source?&url='+
- encodeURIComponent(location.href)
+javascript:void(location.href='org-protocol://open-source?&url='+
+ encodeURIComponent(location.href))
#+end_example
#+vindex: org-protocol-project-alist
diff --git a/lisp/org-protocol.el b/lisp/org-protocol.el
index 85c9a0cc5..c9ef10f31 100644
--- a/lisp/org-protocol.el
+++ b/lisp/org-protocol.el
@@ -97,19 +97,19 @@ ;;; Commentary:
;; You may use the same bookmark URL for all those standard handlers and just
;; adjust the sub-protocol used:
;;
-;; javascript:location.href='org-protocol://sub-protocol?'+
+;; javascript:void(location.href='org-protocol://sub-protocol?'+
;; new URLSearchParams({
;; url: location.href,
;; title: document.title,
-;; body: window.getSelection()})
+;; body: window.getSelection()}))
;;
;; Alternatively use the following expression that encodes space as \"%20\"
;; instead of \"+\", so it is compatible with Org versions from 9.0 to 9.4:
;;
-;; location.href='org-protocol://sub-protocol?url='+
+;; javascript:void(location.href='org-protocol://sub-protocol?url='+
;; encodeURIComponent(location.href)+'&title='+
;; encodeURIComponent(document.title)+'&body='+
-;; encodeURIComponent(window.getSelection())
+;; encodeURIComponent(window.getSelection()))
;;
;; The handler for the sub-protocol \"capture\" detects an optional template
;; char that, if present, triggers the use of a special template.
@@ -436,15 +436,15 @@ (defun org-protocol-store-link (fname)
The location for a browser's bookmark may look like this:
- javascript:location.href = \\='org-protocol://store-link?\\=' +
- new URLSearchParams({url:location.href, title:document.title});
+ javascript:void(location.href = \\='org-protocol://store-link?\\=' +
+ new URLSearchParams({url:location.href, title:document.title}));
or to keep compatibility with Org versions from 9.0 to 9.4 it may be:
- javascript:location.href = \\
+ javascript:void(location.href = \\
\\='org-protocol://store-link?url=\\=' + \\
encodeURIComponent(location.href) + \\='&title=\\=' + \\
- encodeURIComponent(document.title);
+ encodeURIComponent(document.title));
Don't use `escape()'! Use `encodeURIComponent()' instead. The
title of the page could contain slashes and the location
@@ -478,24 +478,24 @@ (defun org-protocol-capture (info)
This function detects an URL, title and optional text, separated
by `/'. The location for a browser's bookmark looks like this:
- javascript:location.href = \\='org-protocol://capture?\\=' +
+ javascript:void(location.href = \\='org-protocol://capture?\\=' +
new URLSearchParams({
url: location.href,
title: document.title,
- body: window.getSelection()})
+ body: window.getSelection()}))
or to keep compatibility with Org versions from 9.0 to 9.4:
- javascript:location.href = \\='org-protocol://capture?url=\\='+ \\
+ javascript:void(location.href = \\='org-protocol://capture?url=\\='+ \\
encodeURIComponent(location.href) + \\='&title=\\=' + \\
encodeURIComponent(document.title) + \\='&body=\\=' + \\
- encodeURIComponent(window.getSelection())
+ encodeURIComponent(window.getSelection()))
By default, it uses the character `org-protocol-default-template-key',
which should be associated with a template in `org-capture-templates'.
You may specify the template with a template= query parameter, like this:
- javascript:location.href = \\='org-protocol://capture?template=b\\='+ ...
+ javascript:void(location.href = \\='org-protocol://capture?template=b\\='+ ...)
Now template ?b will be used."
(let* ((parts
@@ -555,14 +555,14 @@ (defun org-protocol-open-source (fname)
The location for a browser's bookmark should look like this:
- javascript:location.href = \\='org-protocol://open-source?\\=' +
- new URLSearchParams({url: location.href})
+ javascript:void(location.href = \\='org-protocol://open-source?\\=' +
+ new URLSearchParams({url: location.href}))
or if you prefer to keep compatibility with older Org versions (9.0 to 9.4),
consider the following expression:
- javascript:location.href = \\='org-protocol://open-source?url=\\=' + \\
- encodeURIComponent(location.href)"
+ javascript:void(location.href = \\='org-protocol://open-source?url=\\=' + \\
+ encodeURIComponent(location.href)")
;; As we enter this function for a match on our protocol, the return value
;; defaults to nil.
(let (;; (result nil)
--
2.39.5
next prev parent reply other threads:[~2024-12-16 16:04 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-12 8:12 [BUG] Org-protocol bookmarklets in Firefox behaving badly after recent upgrade [9.6.15 (release_9.6.15 @ /usr/share/emacs/29.4/lisp/org/)] Rehan Deen
2024-12-12 10:34 ` Max Nikulin
2024-12-12 14:14 ` Max Nikulin
2024-12-12 18:47 ` Rehan Deen
2024-12-13 11:09 ` Max Nikulin
2024-12-16 16:01 ` Max Nikulin [this message]
2024-12-16 16:40 ` [PATCH] org-protocol: Add void() to bookmarklets Max Nikulin
[not found] ` <875xnp6qin.fsf@gmail.com>
2024-12-12 17:15 ` [BUG] Org-protocol bookmarklets in Firefox behaving badly after recent upgrade [9.6.15 (release_9.6.15 @ /usr/share/emacs/29.4/lisp/org/)] Rehan Deen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='vjpitn$12cj$1@ciao.gmane.io' \
--to=manikulin@gmail.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).