[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orgmode] [PATCH 02/16] New unicode aware percent encoding algorithm
From: |
David Maus |
Subject: |
[Orgmode] [PATCH 02/16] New unicode aware percent encoding algorithm |
Date: |
Sun, 13 Feb 2011 13:01:04 +0100 |
* org.el (org-link-escape): New unicode aware percent encoding
algorithm.
---
lisp/org.el | 19 ++++++++-----------
1 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/lisp/org.el b/lisp/org.el
index 0c46eec..9aeeeda 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -8576,17 +8576,14 @@ This is the list that is used before handing over to
the browser.")
(if (and org-url-encoding-use-url-hexify (not table))
(url-hexify-string text)
(setq table (or table org-link-escape-chars))
- (when text
- (let ((re (mapconcat (lambda (x) (regexp-quote
- (char-to-string (car x))))
- table "\\|")))
- (while (string-match re text)
- (setq text
- (replace-match
- (cdr (assoc (string-to-char (match-string 0 text))
- table))
- t t text)))
- text))))
+ (mapconcat
+ (lambda (char)
+ (if (or (assoc char table)
+ (< char 32) (> char 126))
+ (mapconcat (lambda (sequence)
+ (format "%%%.2X" sequence))
+ (encode-coding-char char 'utf-8) "")
+ (char-to-string char))) text "")))
(defun org-link-unescape (text &optional table)
"Reverse the action of `org-link-escape'."
--
1.7.2.3
- Re: [Orgmode] Improve percent escaping links in Org mode (pull request / OK to push), Bastien, 2011/02/12
- [Orgmode] [PATCH 01/16] Decode single byte sequence if decoding unicode failed., David Maus, 2011/02/13
- [Orgmode] [PATCH 02/16] New unicode aware percent encoding algorithm,
David Maus <=
- [Orgmode] [PATCH 03/16] New format of percent escape table, David Maus, 2011/02/13
- [Orgmode] [PATCH 04/16] Fixup doc string, David Maus, 2011/02/13
- [Orgmode] [PATCH 05/16] New optional argument: Merge user table with default table, David Maus, 2011/02/13
- [Orgmode] [PATCH 06/16] Inline function to properly decode utf8 characters in Emacs 22, David Maus, 2011/02/13
- [Orgmode] [PATCH 08/16] Declare obsolete & alias to respective org-link-unescape-* functions, David Maus, 2011/02/13
- [Orgmode] [PATCH 09/16] Remove obsolete argument in call to org-link-unescape, David Maus, 2011/02/13
- [Orgmode] [PATCH 07/16] Unescape functions moved and renamed from org-protocol.el, David Maus, 2011/02/13
- [Orgmode] [PATCH 10/16] Use new percent escape character table format, David Maus, 2011/02/13
- [Orgmode] [PATCH 11/16] Add percent sign to list of escape chars, David Maus, 2011/02/13
- [Orgmode] [PATCH 12/16] Rename lambda argument, David Maus, 2011/02/13