]> sjero.net Git - wget/commitdiff
Convert correctly URLs that need to be encoded to local files.
authorGiuseppe Scrivano <gscrivano@gnu.org>
Fri, 20 Aug 2010 01:11:07 +0000 (03:11 +0200)
committerGiuseppe Scrivano <gscrivano@gnu.org>
Fri, 20 Aug 2010 01:11:07 +0000 (03:11 +0200)
src/ChangeLog
src/convert.c

index f9e1d552f379610637dd89f76a4b9ca203c45874..1793b0756fcd5fb711e6eefde2cbfb73cdd6c580 100644 (file)
@@ -1,3 +1,11 @@
+2010-08-20  Giuseppe Scrivano  <gscrivano@gnu.org>
+
+       * convert.c: Include "iri.h".
+       (convert_links_in_hashtable): Parse the url, if
+       necessary, before check if it is present in the dowloaded url
+       map.
+       Reported by: <sk.random@gmail.com>.
+
 2010-08-09  Giuseppe Scrivano  <gscrivano@gnu.org>
 
        Fix a problem with HTTP/1.0 proxies.
index fc858787f43fda92ebe7ce79572131eb8a0e434e..3459edada8d1ec3ca081ab9183583a2fa3dcea2a 100644 (file)
@@ -47,6 +47,7 @@ as that of the covered work.  */
 #include "res.h"
 #include "html-url.h"
 #include "css-url.h"
+#include "iri.h"
 
 static struct hash_table *dl_file_url_map;
 struct hash_table *dl_url_file_map;
@@ -105,7 +106,8 @@ convert_links_in_hashtable (struct hash_table *downloaded_set,
       for (cur_url = urls; cur_url; cur_url = cur_url->next)
         {
           char *local_name;
-          struct url *u = cur_url->url;
+          struct url *u;
+          struct iri *pi;
 
           if (cur_url->link_base_p)
             {
@@ -119,6 +121,11 @@ convert_links_in_hashtable (struct hash_table *downloaded_set,
           /* We decide the direction of conversion according to whether
              a URL was downloaded.  Downloaded URLs will be converted
              ABS2REL, whereas non-downloaded will be converted REL2ABS.  */
+
+          pi = iri_new ();
+          set_uri_encoding (pi, opt.locale, true);
+
+          u = url_parse (cur_url->url->url, NULL, pi, true);
           local_name = hash_table_get (dl_url_file_map, u->url);
 
           /* Decide on the conversion type.  */
@@ -144,6 +151,9 @@ convert_links_in_hashtable (struct hash_table *downloaded_set,
               cur_url->local_name = NULL;
               DEBUGP (("will convert url %s to complete\n", u->url));
             }
+
+          url_free (u);
+          iri_free (pi);
         }
 
       /* Convert the links in the file.  */