1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

Support shorthand URLs in an input file

This commit is contained in:
Rohit Mathulla 2012-11-04 22:02:30 +01:00 committed by Giuseppe Scrivano
parent 242ddfc74e
commit 5dcb116087
3 changed files with 13 additions and 0 deletions

2
NEWS
View File

@ -13,6 +13,8 @@ Please send GNU Wget bug reports to <bug-wget@gnu.org>.
** Support FTP listing for the FTP Server on Windows Server 2008 R2.
** Fix a regression when -c and --content-disposition are used together.
** Support shorthand URLs in an input file.
* Changes in Wget 1.14

View File

@ -1,3 +1,7 @@
2012-08-29 Rohit Mathulla <rohit_mathulla@yahoo.com> (tiny change)
* html-url.c (get_urls_file): Convert shorthand URLs.
2012-10-07 Ray Satiro <raysatiro@yahoo.com>
* url.c: Change the functions of a growable string object to null

View File

@ -804,6 +804,13 @@ get_urls_file (const char *file)
url_text = merged;
}
char *new_url = rewrite_shorthand_url (url_text);
if (new_url)
{
xfree (url_text);
url_text = new_url;
}
url = url_parse (url_text, &up_error_code, NULL, false);
if (!url)
{