#2673: Pipe Symbol  i.e  | is converted to %7c
----------------------+-----------------------------------------------------
 Reporter:  Gerald.J  |        Type:  Bug    
   Status:  new       |    Priority:  Normal 
Milestone:            |   Component:  General
  Version:            |    Keywords:         
----------------------+-----------------------------------------------------

Comment(by mosipov):

 This bahavior seems to be correct.

 I wrote a sample code:
 {{{
 package foo;

 import java.net.URI;
 import java.net.URISyntaxException;

 public class Tswt {

         public static void main(String[] args) {

                 try {
                         URI uri = new URI(null,
 "http://forum.textpattern.com/?f=Hi|hello",
                                         null);

                         System.out.println(uri.toASCIIString());
                 } catch (URISyntaxException e) {
                 }

         }
 }
 }}}

 The sysout gave me:
 {{{
 http://forum.textpattern.com/?f=Hi%7Chello
 }}}

 This one gives me the same result:
 http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_encodeURI

 Does not seem as a bug to me.

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/2673#comment:3>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
FCKeditor-Trac mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to