~ubuntu-branches/ubuntu/maverick/libsoup2.4/maverick

« back to all changes in this revision

Viewing changes to tests/uri-parsing.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-09-13 23:29:17 UTC
  • mfrom: (1.3.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20100913232917-9ql1b2tds02cf6vu
Tags: 2.31.92-0ubuntu1
* New upstream release:
  - Percent-encoded characters in URIs are no longer
    automatically normalized to uppercase, since apparently some
    servers are stupid. (Sergio Villar Senin)
  - Fixed a crash when resolving a URI containing both spaces
    and non-UTF8 8bit characters. (LP: #624896)
* add debian/patches/89_revert_new_gi.patch:
  - don't use new gir for maverick
* add debian/patches/90_autoreconf.patch to take previous patch into account

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
static struct {
141
141
        const char *one, *two;
142
142
} eq_tests[] = {
143
 
        { "example://a/b/c/%7Bfoo%7D", "eXAMPLE://a/./b/../b/%63/%7bfoo%7d" },
 
143
        { "example://a/b/c/%7Bfoo%7D", "eXAMPLE://a/./b/../b/%63/%7Bfoo%7D" },
144
144
        { "http://example.com", "http://example.com/" },
145
145
        /* From RFC 2616 */
146
146
        { "http://abc.com:80/~smith/home.html", "http://abc.com:80/~smith/home.html" },