Re: [Bug-wget] [patch] uuid generation in warc.c

2015-02-14 Thread Eli Zaretskii
> Date: Wed, 11 Feb 2015 00:15:32 +0100 > From: Gisle Vanem > > > Do we still want to support the older Windows NT4 and 9X versions? If > > so, we should try loading Rpcrt4.dll dynamically, with LoadLibrary, > > and if that fails, fall back on the current code. > > Seems this issue is dangling

Re: [Bug-wget] [patch] uuid generation in warc.c

2015-02-14 Thread Gisle Vanem
Eli Zaretskii wrote: + if (rpc_uuid_avail == -1) +{ + HMODULE hm_rpcrt4 = LoadLibrary ("Rpcrt4.dll"); + + if (hm_rpcrt4) + { + pfn_UuidCreate = + (UuidCreate_proc) GetProcAddress (hm_rpcrt4, "UuidCreate"); + pfn_UuidToString = + (UuidToStr

[Bug-wget] Support for HDFS:// URLs

2015-02-14 Thread Andrew Pennebaker
Could we add support for downloading HDFS:// files with wget? As a workaround, users can identify a special HTTP:// URL that points to the WebHDFS location, but I'd prefer that wget learn how to do this automatically on behalf of the user. Cheers, Andrew Pennebaker