Re: Transcribing non-ascii URLs [was: revised "generic syntax" internet draft]

Bert Bos <bert@w3.org> Wed, 16 April 1997 18:58 UTC

Received: from cnri by ietf.org id aa14810; 16 Apr 97 14:58 EDT
Received: from services.Bunyip.Com by CNRI.Reston.VA.US id aa18449; 16 Apr 97 14:58 EDT
Received: (from daemon@localhost) by services.bunyip.com (8.8.5/8.8.5) id OAA11326 for uri-out; Wed, 16 Apr 1997 14:22:59 -0400 (EDT)
Received: from www44.inria.fr (www44.inria.fr [138.96.10.6]) by services.bunyip.com (8.8.5/8.8.5) with ESMTP id OAA11321 for <uri@services.bunyip.com>; Wed, 16 Apr 1997 14:22:55 -0400 (EDT)
Received: by www44.inria.fr (8.8.5/8.6.12) id UAA06034; Wed, 16 Apr 1997 20:22:52 +0200 (MET DST)
To: uri@services.bunyip.com
Path: usenet
From: Bert Bos <bert@w3.org>
Newsgroups: w3c.uri
Subject: Re: Transcribing non-ascii URLs [was: revised "generic syntax" internet draft]
Date: Wed, 16 Apr 1997 20:22:38 +0200
Organization: I.N.R.I.A. Unite de Recherche de Sophia Antipolis (France)
Lines: 176
Message-ID: <335518EE.49CD@w3.org>
References: <Your message of "Sun, 13 Apr 1997 23:54:47 EDT." <3.0.1.32.19970413235447.006e2e48@genstar.alis.com> <3.0.1.32.19970414121551.00cc2d70@genstar.alis.com> <DSTApr14.203319.9798@sophia.inria.fr>
NNTP-Posting-Host: mygale.inria.fr
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 3.01 (X11; I; SunOS 5.5 sun4m)
Sender: owner-uri@bunyip.com
Precedence: bulk

Dan Connolly wrote:
[...]
> Regarding Jigsaw and Amaya... Support in Jigsaw should be easy.
> I'll look into it. Anybody want to do it for me? Should
> be a quick hack.

It was indeed easy. (At least for the server proper. The forms-based
Admin interface of Jigsaw needs some bug-fixes before it is practical to
register non-ASCII names by that means.)

If you have Jigsaw (otherwise download it from
http://www.w3.org/pub/WWW/Jigsaw/), you can insert the following routine
in the file src/classes/w3c/jigsaw/http/LookupState.java, replacing the
existing routine. Then recompile and you are able to name your resources
anything you want. (The name of a resource in Jigsaw has always been an
arbitrary Unicode string, but without this routine Jigsaw was only able
to serve a subset of its resources...)


    public static String unescape (String s) {
	StringBuffer sbuf = new StringBuffer () ;
	int l  = s.length() ;
	int ch = -1 ;
	int b, sumb = 0;
	for (int i = 0 ; i < l ; i++) {
	    /* Get next byte b from URL segment s */
	    switch (ch = s.charAt(i)) {
	      case '%':
		ch = s.charAt (++i) ;
		int hb = (Character.isDigit ((char) ch) 
			  ? ch - '0'
			  : 10+Character.toLowerCase((char) ch) - 'a') & 0xF ;
		ch = s.charAt (++i) ;
		int lb = (Character.isDigit ((char) ch)
			  ? ch - '0'
			  : 10+Character.toLowerCase ((char) ch)-'a') & 0xF ;
		b = (hb << 4) | lb ;
		break ;
	      case '+':
		b = ' ' ;
		break ;
	      default:
		b = ch ;
	    }
	    /* Decode byte b as UTF-8, sumb collects incomplete chars */
	    if ((b & 0xc0) == 0x80) {		// 10xxxxxx (continuation byte)
	      sumb = (sumb << 6) | (b & 0x3f) ;	// Add to 6 bits to sumb
	    } else {				// Start of new sequence
	      if (i != 0)			// Not on 1st cycle
		sbuf.append((char) sumb) ;	// Add previous char to sbuf
	      if ((b & 0x80) == 0x00) {		// 0xxxxxxx (yields 7 bits)
		sumb = b;			// Store in sbuf
	      } else {				// 110xxxxx or 1110xxxx
		sumb = b & 0x1f;		// (yields 5 or 4 bits)
	      }
	      /* No need to test if the UTF-8 encoding is well-formed */
	    }
	}
	if (sumb != 0) sbuf.append((char) sumb) ;
	return sbuf.toString() ;
    }


This can be used to show that the scheme does indeed give access to
resources with non-ASCII names, and that it is not very hard to
implement (just 10 lines longer than what was already there.) Of course,
since this gives access to URLs that are "owned" by the server, any
proprietary encoding could have been used instead. There will only be a
benefit to this scheme over others if browsers start using it, too.

I've also written the inverse routine, the one that creates a URL path
segment from an arbitrary Unicode string. One could build a simple
program or applet to generate URLs around this routine:


/**
 * Provides a method to encode any string into a URL-safe
 * form, the so-called "x-www-form-urlencoded" form.
 * Non-ASCII characters are first encoded as sequences of
 * two or three bytes, using the UTF-8 algorithm, before being
 * encoded in "x-www-form-urlencoded".
 */
public class URLUTF8Encoder
{

  final static String[] hex = {
    "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
    "%08", "%09", "%0A", "%0B", "%0C", "%0D", "%0E", "%0F",
    "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
    "%18", "%19", "%1A", "%1B", "%1C", "%1D", "%1E", "%1F",
    "%20", "%21", "%22", "%23", "%24", "%25", "%26", "%27",
    "%28", "%29", "%2A", "%2B", "%2C", "%2D", "%2E", "%2F",
    "%30", "%31", "%32", "%33", "%34", "%35", "%36", "%37",
    "%38", "%39", "%3A", "%3B", "%3C", "%3D", "%3E", "%3F",
    "%40", "%41", "%42", "%43", "%44", "%45", "%46", "%47",
    "%48", "%49", "%4A", "%4B", "%4C", "%4D", "%4E", "%4F",
    "%50", "%51", "%52", "%53", "%54", "%55", "%56", "%57",
    "%58", "%59", "%5A", "%5B", "%5C", "%5D", "%5E", "%5F",
    "%60", "%61", "%62", "%63", "%64", "%65", "%66", "%67",
    "%68", "%69", "%6A", "%6B", "%6C", "%6D", "%6E", "%6F",
    "%70", "%71", "%72", "%73", "%74", "%75", "%76", "%77",
    "%78", "%79", "%7A", "%7B", "%7C", "%7D", "%7E", "%7F",
    "%80", "%81", "%82", "%83", "%84", "%85", "%86", "%87",
    "%88", "%89", "%8A", "%8B", "%8C", "%8D", "%8E", "%8F",
    "%90", "%91", "%92", "%93", "%94", "%95", "%96", "%97",
    "%98", "%99", "%9A", "%9B", "%9C", "%9D", "%9E", "%9F",
    "%A0", "%A1", "%A2", "%A3", "%A4", "%A5", "%A6", "%A7",
    "%A8", "%A9", "%AA", "%AB", "%AC", "%AD", "%AE", "%AF",
    "%B0", "%B1", "%B2", "%B3", "%B4", "%B5", "%B6", "%B7",
    "%B8", "%B9", "%BA", "%BB", "%BC", "%BD", "%BE", "%BF",
    "%C0", "%C1", "%C2", "%C3", "%C4", "%C5", "%C6", "%C7",
    "%C8", "%C9", "%CA", "%CB", "%CC", "%CD", "%CE", "%CF",
    "%D0", "%D1", "%D2", "%D3", "%D4", "%D5", "%D6", "%D7",
    "%D8", "%D9", "%DA", "%DB", "%DC", "%DD", "%DE", "%DF",
    "%E0", "%E1", "%E2", "%E3", "%E4", "%E5", "%E6", "%E7",
    "%E8", "%E9", "%EA", "%EB", "%EC", "%ED", "%EE", "%EF",
    "%F0", "%F1", "%F2", "%F3", "%F4", "%F5", "%F6", "%F7",
    "%F8", "%F9", "%FA", "%FB", "%FC", "%FD", "%FE", "%FF"
  };

  /**
   * Encode a string to the "x-www-form-urlencoded" form, enhanced
   * with the UTF-8-in-URL proposal. This is what happens:
   *
   * <ul>
   * <li><p>The ASCII characters 'a' through 'z', 'A' through 'Z',
   *        and '0' through '9' remain the same.
   *
   * <li><p>The space character ' ' is converted into a plus sign '+'.
   *
   * <li><p>All other ASCII characters are converted into the
   *        3-character string "%xy", where xy is
   *        the two-digit hexadecimal representation of the character
   *        code
   *
   * <li><p>All non-ASCII characters are encoded in two steps: first
   *        to a sequence of 2 or 3 bytes, using the UTF-8 algorithm;
   *        secondly each of these bytes is encoded as "%xx".
   * </ul>
   *
   * @param s The string to be encoded
   * @return The encoded string
   */
  public static String encode(String s)
  {
    StringBuffer sbuf = new StringBuffer();
    int len = s.length();
    for (int i = 0; i < len; i++) {
      int ch = s.charAt(i);
      if ('A' <= ch && ch <= 'Z') {		// 'A'..'Z'
	sbuf.append((char)ch);
      } else if ('a' <= ch && ch <= 'z') {	// 'a'..'z'
	sbuf.append((char)ch);
      } else if ('0' <= ch && ch <= '9') {	// '0'..'9'
	sbuf.append((char)ch);
      } else if (ch == ' ') {			// space
	sbuf.append('+');
      } else if (ch <= 0x007f) {		// other ASCII
	sbuf.append(hex[ch]);
      } else if (ch <= 0x07FF) {		// non-ASCII <= 0x7FF
	sbuf.append(hex[0xc0 | (ch >> 6)]);
	sbuf.append(hex[0x80 | (ch & 0x3F)]);
      } else {					// 0x7FF < ch <= 0xFFFF
	sbuf.append(hex[0xc0 | (ch >> 12)]);
	sbuf.append(hex[0x80 | ((ch >> 6) & 0x3F)]);
	sbuf.append(hex[0x80 | (ch & 0x3F)]);
      }
    }
    return sbuf.toString();
  }

}



Bert