]> sjero.net Git - wget/commitdiff
Automated merge.
authorXavier Saint <wget@sxav.eu>
Thu, 14 Aug 2008 16:45:26 +0000 (18:45 +0200)
committerXavier Saint <wget@sxav.eu>
Thu, 14 Aug 2008 16:45:26 +0000 (18:45 +0200)
1  2 
src/ChangeLog
src/main.c

diff --combined src/ChangeLog
index 28ce4499e5d457896531edc91358baca8dc29a48,8acab925089c3d1f4608a2a2a587478bd5fdc638..5e3a88938143b925feabfec5c2956796f3ada430
@@@ -1,3 -1,7 +1,7 @@@
+ 2008-08-08  Steven Schubiger  <stsc@members.fsf.org>
+       * main.c, utils.h: Removed some dead conditional DEBUG_MALLOC code.
  2008-08-03  Micah Cowan  <micah@cowan.name>
  
        * main.c (print_help): Added --default-page.
        * init.c (cleanup): Free the memory associated with the base
        option (when DEBUG_MALLOC is defined).
  
 +2008-07-02  Xavier Saint  <wget@sxav.eu>
 +
 +      * iri.c, iri.h  : New function idn_decode() to decode ASCII
 +      encoded hostname to the locale.
 +
 +      * host.c : Show hostname to be resolved both in locale and
 +      ASCII encoded.
 +
  2008-06-28  Steven Schubiger  <stsc@members.fsf.org>
  
        * retr.c (retrieve_from_file): Allow for reading the links from
        an external file (HTTP/FTP).
  
 +2008-06-26  Xavier Saint  <wget@sxav.eu>
 +
 +      * iri.c, iri.h : New functions locale_to_utf8() and
 +      idn_encode() adding basic capabilities of IRI/IDN.
 +
 +      * url.c : Convert URLs from locale to UTF-8 allowing a basic
 +      support of IRI/IDN
 +
  2008-06-25  Steven Schubiger  <stsc@members.fsf.org>
  
        * ftp.c (getftp): When spidering a FTP URL, emit a diagnostic
@@@ -73,7 -61,7 +77,7 @@@
  
        * http.c: Make -nv --spider include the file's name when it
        exists.
 -      
 +
  2008-06-22  Micah Cowan  <micah@cowan.name>
  
        * Makefile.am (version.c): Fixed version string invocation so it
        string vars pointers-to-const, and moved line lengths
        below 80 (in Makefile.am, not in version.c).
  
 +2008-06-19  Xavier Saint  <wget@sxav.eu>
 +
 +      * iri.c, iri.h : New function check_encoding_name() as
 +      a preliminary encoding name check.
 +
 +      * main.c, iri.c : Make use of check_encoding_name().
 +
 +2008-06-19  Xavier Saint  <wget@sxav.eu>
 +
 +      * iri.c : Include missing stringprep.h file and add a
 +      cast.
 +
 +      * init.c : set a default initial value for opt.enable_iri,
 +      opt.locale and opt.encoding_remote.
 +
 +2008-06-19  Xavier Saint  <wget@sxav.eu>
 +
 +      * iri.c, iri.h : Add a new function find_locale() to find
 +      out the local system encoding.
 +
 +      * main.c : Make use of find_locale().
 +
 +2008-06-19  Xavier Saint  <wget@sxav.eu>
 +
 +      * html-url.c : Add "content-type" meta tag parsing for
 +      retrieving page encoding.
 +
 +      * iri.h : Make no-op version of parse_charset() return
 +      NULL.
 +
  2008-06-16  Micah Cowan  <micah@cowan.name>
  
        * http.c (http_loop): When hstat.len is higher than the
        successfully completed content's length, but it's because we
        _set_ it that way, don't abort.
  
 +2008-06-14  Xavier Saint  <wget@sxav.eu>
 +
 +      * iri.c, iri.h : New files.
 +
 +      * Makefile.am : Add files iri.h and conditional iri.c.
 +
 +      * build_info.c : Add compiled feature "iri".
 +
 +      * http.c : include iri.h and parse charset from Content-Type
 +      header.
 +
 +      * init.c, main.c, options.h : if an options isn't supported
 +      at compiled time, don't get rid off it and show a dummy
 +      message instead if they are used.
 +
  2008-06-13  Micah Cowan  <micah@cowan.name>
  
        * build_info.c: ENABLE_NTLM, not HAVE_NTLM; distinguish OpenSSL
        default.
  
  2008-05-17  Kenny Parnell  <k.parnell@gmail.com>
 -      
 +
        (cmd_spec_prefer_family): Initialize prefer_family to prefer_none.
  
  2008-05-17  Micah Cowan  <micah@cowan.name>
 -      
 +
        * main.c (main): Handle Ctrl-D on command-line.
  
  2008-05-15  Steven Schubiger  <schubiger@gmail.com>
  
        * options.h: Add an according boolean member to the options
        struct.
 -      
 +
        * sysdep.h: Comment the defines __EXTENSIONS__ and _GNU_SOURCE
        out, because they're now defined independently by config.h.
  
diff --combined src/main.c
index 7c7be1c740484192bac7235d113ed5c2f06d1c6d,3896afd005a349d5f190e8b50ed93bf8572adce1..c080394e16e62345f82be82f594a8659373a0ce5
@@@ -201,12 -201,10 +201,12 @@@ static struct cmdline_option option_dat
      { "inet6-only", '6', OPT_BOOLEAN, "inet6only", -1 },
  #endif
      { "input-file", 'i', OPT_VALUE, "input", -1 },
 +    { "iri", 0, OPT_BOOLEAN, "iri", -1 },
      { "keep-session-cookies", 0, OPT_BOOLEAN, "keepsessioncookies", -1 },
      { "level", 'l', OPT_VALUE, "reclevel", -1 },
      { "limit-rate", 0, OPT_VALUE, "limitrate", -1 },
      { "load-cookies", 0, OPT_VALUE, "loadcookies", -1 },
 +    { "locale", 0, OPT_VALUE, "locale", -1 },
      { "max-redirect", 0, OPT_VALUE, "maxredirect", -1 },
      { "mirror", 'm', OPT_BOOLEAN, "mirror", -1 },
      { "no", 'n', OPT__NO, NULL, required_argument },
      { "referer", 0, OPT_VALUE, "referer", -1 },
      { "reject", 'R', OPT_VALUE, "reject", -1 },
      { "relative", 'L', OPT_BOOLEAN, "relativeonly", -1 },
 +    { "remote-encoding", 0, OPT_VALUE, "remoteencoding", -1},
      { "remove-listing", 0, OPT_BOOLEAN, "removelisting", -1 },
      { "restrict-file-names", 0, OPT_BOOLEAN, "restrictfilenames", -1 },
      { "retr-symlinks", 0, OPT_BOOLEAN, "retrsymlinks", -1 },
@@@ -1065,29 -1062,6 +1065,29 @@@ for details.\n\n"))
        exit (1);
      }
  
 +#ifdef ENABLE_IRI
 +  if (opt.enable_iri)
 +    {
 +      if (opt.locale && !check_encoding_name (opt.locale))
 +        opt.locale = NULL;
 +
 +      if (!opt.locale)
 +        opt.locale = find_locale ();
 +
 +      if (opt.encoding_remote && !check_encoding_name (opt.encoding_remote))
 +        opt.encoding_remote = NULL;
 +
 +      /*logprintf (LOG_VERBOSE, "Locale = %s\n", quote (opt.locale));*/
 +    }
 +#else
 +  if (opt.enable_iri || opt.locale || opt.encoding_remote)
 +    {
 +      /* sXXXav : be more specific... */
 +      printf(_("This version does not have support for IRIs\n"));
 +      exit(1);
 +    }
 +#endif
 +
    if (opt.ask_passwd)
      {
        opt.passwd = prompt_for_password ();
@@@ -1197,21 -1171,15 +1197,21 @@@ WARNING: Can't reopen standard output i
            int old_follow_ftp = opt.follow_ftp;
  
            /* Turn opt.follow_ftp on in case of recursive FTP retrieval */
 -          if (url_scheme (*t) == SCHEME_FTP) 
 +          if (url_scheme (*t) == SCHEME_FTP)
              opt.follow_ftp = 1;
 -          
 -          status = retrieve_tree (*t);
 +
 +          status = retrieve_tree (*t, NULL);
  
            opt.follow_ftp = old_follow_ftp;
          }
        else
 -        status = retrieve_url (*t, &filename, &redirected_URL, NULL, &dt, opt.recursive);
 +        {
 +          struct iri *i = iri_new ();
 +          set_uri_encoding (i, opt.locale, true);
 +          status = retrieve_url (*t, &filename, &redirected_URL, NULL, &dt,
 +                                 opt.recursive, i);
 +          iri_free (i);
 +        }
  
        if (opt.delete_after && file_exists_p(filename))
          {
      xfree (url[i]);
    cleanup ();
  
- #ifdef DEBUG_MALLOC
-   print_malloc_debug_stats ();
- #endif
    if (status == RETROK)
      return 0;
    else