From a84a0f31fb802023edc75e155a1ab5cfd7d81045 Mon Sep 17 00:00:00 2001 From: geby Date: Mon, 11 Jun 2012 14:34:50 +0000 Subject: [PATCH] Modified URLSpecialChar to be compatible with RFC3986 git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@155 7c85be65-684b-0410-a082-b2ed4fbef004 --- synacode.pas | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/synacode.pas b/synacode.pas index 757a838..91fd1af 100644 --- a/synacode.pas +++ b/synacode.pas @@ -1,5 +1,5 @@ {==============================================================================| -| Project : Ararat Synapse | 002.002.001 | +| Project : Ararat Synapse | 002.002.002 | |==============================================================================| | Content: Coding and decoding support | |==============================================================================| @@ -77,8 +77,7 @@ const URLFullSpecialChar: TSpecials = [';', '/', '?', ':', '@', '=', '&', '#', '+']; URLSpecialChar: TSpecials = - [#$00..#$20, '_', '<', '>', '"', '%', '{', '}', '|', '\', '^', '~', '[', ']', - '`', #$7F..#$FF]; + [#$00..#$20, '<', '>', '"', '%', '{', '}', '|', '\', '^', '[', ']', '`', #$7F..#$FF]; TableBase64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; TableBase64mod =