From: MORIOKA Tomohiko Date: Fri, 15 Mar 2019 08:56:37 +0000 (+0900) Subject: (est-uri-decode-feature-name-body): Decode "._." into `+'. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=adc2cf7a5c0fcae17ef625567636e886429a4028;p=chise%2Ftomoyo-tools.git (est-uri-decode-feature-name-body): Decode "._." into `+'. (est-uri-encode-feature-name-body): Encode `+' into "._.". --- diff --git a/chiset-common.el b/chiset-common.el index ee1ee8b..e13cc36 100644 --- a/chiset-common.el +++ b/chiset-common.el @@ -1,6 +1,6 @@ ;;; chiset-common.el --- CHISET common utility -*- coding: utf-8-er; -*- -;; Copyright (C) 2010,2011,2012,2013,2014,2015,2016,2017,2018 MORIOKA Tomohiko. +;; Copyright (C) 2010,2011,2012,2013,2014,2015,2016,2017,2018,2019 MORIOKA Tomohiko. ;; Author: MORIOKA Tomohiko ;; Keywords: CHISE, RDF, Turtle, WWW @@ -66,6 +66,8 @@ "/") ((eq ch ?-) "*") + ((eq ch ?_) + "+") (t (substring uri-feature i (+ i 3)) )) @@ -83,6 +85,8 @@ ".-.") ((eq c ?/) "...") + ((eq c ?+) + "._.") (t (char-to-string c)))) feature ""))