[Ttssh2-commit] [3414] RFC3986 において、URI文字に | は許可されていないため、認識不可に戻した。

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2009年 5月 19日 (火) 23:20:03 JST


Revision: 3414
          http://svn.sourceforge.jp/view?root=ttssh2&view=rev&rev=3414
Author:   yutakapon
Date:     2009-05-19 23:20:03 +0900 (Tue, 19 May 2009)

Log Message:
-----------
RFC3986 において、URI文字に | は許可されていないため、認識不可に戻した。
http://www.ietf.org/rfc/rfc3986.txt

Modified Paths:
--------------
    trunk/teraterm/teraterm/buffer.c


-------------- next part --------------
Modified: trunk/teraterm/teraterm/buffer.c
===================================================================
--- trunk/teraterm/teraterm/buffer.c	2009-05-19 13:28:06 UTC (rev 3413)
+++ trunk/teraterm/teraterm/buffer.c	2009-05-19 14:20:03 UTC (rev 3414)
@@ -1338,6 +1338,7 @@
 static void markURL(int x)
 {
 #ifdef URL_EMPHASIS
+	// RFC3986(Uniform Resource Identifier (URI): Generic Syntax)‚ɏ€‹’‚·‚é
 	// by sakura editor 1.5.2.1: etc_uty.cpp
 	static const char	url_char[] = {
 	  /* +0  +1  +2  +3  +4  +5  +6  +7  +8  +9  +A  +B  +C  +D  +E  +F */
@@ -1348,7 +1349,7 @@
 		 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,	/* +40: "@ABCDEFGHIJKLMNO" */
 		 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  0, -1,  0,  0, -1,	/* +50: "PQRSTUVWXYZ[\]^_" */
 		  0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,	/* +60: "`abcdefghijklmno" */
-		 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  0, -1,  0, -1,  0,	/* +70: "pqrstuvwxyz{|}~ " */
+		 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  0,  0,  0, -1,  0,	/* +70: "pqrstuvwxyz{|}~ " */
 		/* 0    : not url char
 		 * -1   : url char
 		 * other: url head char --> url_table array number + 1



Ttssh2-commit メーリングリストの案内
Back to archive index