bug-wget archive search

Search String: Display: Description: Sort:

Results:

References: [ warc: 295 ]

Total 295 documents matching your query.

101. [Bug-wget] [Patch] fix bug #39175 Header value length limited with 256 (score: 2)
Author: HIDDEN
Date: Thu, 12 Mar 2015 22:02:46 +0100
Increased the header buffer to 8Kb, as there are no limits to the size of field name, values or headers themselves. While the current value is big enough, other projects such as Apache [1] or nginx h
/archive/html/bug-wget/2015-03/msg00065.html (5,783 bytes)

102. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 34)
Author: HIDDEN
Date: Mon, 23 Feb 2015 23:37:59 +0100
I went ahead and pushed the patch. Thanks, Giuseppe
/archive/html/bug-wget/2015-02/msg00059.html (6,897 bytes)

103. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 38)
Author: HIDDEN
Date: Sun, 15 Feb 2015 20:27:31 +0200
[Please CC me directly, as I'm not subscribed to the list.] Yes, thanks. Updated patch is attached. 2015-02-14 Eli Zaretskii <address@hidden> Gisle Vanem <address@hidden> * warc.c (windows_uuid_str)
/archive/html/bug-wget/2015-02/msg00046.html (9,024 bytes)

104. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 33)
Author: HIDDEN
Date: Sat, 14 Feb 2015 14:33:20 +0100
+ if (rpc_uuid_avail == -1) + { + HMODULE hm_rpcrt4 = LoadLibrary ("Rpcrt4.dll"); + + if (hm_rpcrt4) + { + pfn_UuidCreate = + (UuidCreate_proc) GetProcAddress (hm_rpcrt4, "UuidCreate"); + pfn_UuidTo
/archive/html/bug-wget/2015-02/msg00044.html (6,130 bytes)

105. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 38)
Author: HIDDEN
Date: Sat, 14 Feb 2015 13:10:07 +0200
The patch I suggest is below. It uses the fallback method if Rpcrt4.dll cannot be loaded, or if the functions from that DLL fail for some reason. 2015-02-14 Eli Zaretskii <address@hidden> Gisle Vane
/archive/html/bug-wget/2015-02/msg00043.html (8,262 bytes)

106. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 34)
Author: HIDDEN
Date: Thu, 08 Jan 2015 10:39:17 +0100
I didn't mean it, but yes, that would be the best solution. Eli Zaretskii already already stated that. IMO, best place would be in warc_init(). That would avoid loading the library if the user does n
/archive/html/bug-wget/2015-01/msg00025.html (5,987 bytes)

107. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 33)
Author: HIDDEN
Date: Tue, 06 Jan 2015 18:28:43 +0200
That's not really friendly to those who download precompiled binaries, since the situation on the machine where wget was built and where it will be used can be very different. Anyway, Rpcrt4.dll com
/archive/html/bug-wget/2015-01/msg00021.html (5,551 bytes)

108. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 35)
Author: HIDDEN
Date: Tue, 06 Jan 2015 18:25:08 +0200
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. Thanks.
/archive/html/bug-wget/2015-01/msg00020.html (6,366 bytes)

109. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 36)
Author: HIDDEN
Date: Tue, 06 Jan 2015 14:28:03 +0100
I would prefer dynamic linking (-lrpcrt4). If rpcrt4.lib/.dll is *not* a basic windows library, you should check for the library in configure.ac (case "$host_os" in ...). There is an example check: d
/archive/html/bug-wget/2015-01/msg00018.html (7,339 bytes)

110. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 36)
Author: HIDDEN
Date: Mon, 05 Jan 2015 16:40:15 +0000
And for Windows? I guess the 'UuidCreate()' or 'UuidCreateSequential()' functions from Rpcrt4.dll could be used? I could write a patch for loading Rpcrt4.dll at run-time if there's some interest. Do
/archive/html/bug-wget/2015-01/msg00015.html (6,214 bytes)

111. Re: [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 3)
Author: HIDDEN
Date: Sun, 21 Dec 2014 18:24:19 +0100
Am Sonntag, 21. Dezember 2014, 18:33:06 schrieb Eli Zaretskii: base_name() is a similar function (but I couldn't find a documentation). https://www.gnu.org/software/gnulib/manual/html_node/basename.h
/archive/html/bug-wget/2014-12/msg00128.html (10,246 bytes)

112. Re: [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 3)
Author: HIDDEN
Date: Sun, 21 Dec 2014 18:33:06 +0200
Shouldn't this use base_name? AFAICS, this is what gnulib provides. And likewise here. Otherwise, looks good, except that you need to leave fcntl.h there, as I wrote earlier. Thanks!
/archive/html/bug-wget/2014-12/msg00126.html (8,732 bytes)

113. Re: [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 2)
Author: HIDDEN
Date: Fri, 19 Dec 2014 18:28:53 +0200
I don't think you can drop it, because warc.c uses O_TEMPORARY, which is defined on fcntl.h, and its value is not zero. Will do. I meant in "Wgetrc Commands" node in the Info manual. IOW, this is no
/archive/html/bug-wget/2014-12/msg00114.html (8,028 bytes)

114. Re: [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 9)
Author: HIDDEN
Date: Fri, 19 Dec 2014 16:32:29 +0100
Hi Eli, \usr\bin\../lib/gcc/mingw32/4.7.2/../../../../include/string.h:92:39: Right, we have two issues. But using basename from gnulib increases overall compatibility *AND* also fixes your issue reg
/archive/html/bug-wget/2014-12/msg00112.html (12,622 bytes)

115. Re: [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 9)
Author: HIDDEN
Date: Fri, 19 Dec 2014 17:02:53 +0200
The MinGW implementation indeed writes into its argument string. However, warc.c already handles this contingency, and works on a copy of the argument passed to warc_write_record. So I see no proble
/archive/html/bug-wget/2014-12/msg00111.html (10,279 bytes)

116. Re: [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 9)
Author: HIDDEN
Date: Fri, 19 Dec 2014 12:53:13 +0100
Hi Eli, thanks for your detailed report(s) ! See my answers inline. Tim The man page for basename says that there is a POSIX-2001 and a GNU version. The POSIX version does not allow string literals -
/archive/html/bug-wget/2014-12/msg00109.html (15,924 bytes)

117. [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 9)
Author: HIDDEN
Date: Fri, 19 Dec 2014 13:12:22 +0200
(I'm not subscribed to the list, so please CC me on any replies and discussions. Thanks in advance.) I've built wget 1.16.1 with mingw.org's toolchain, and encountered a few issues, described below.
/archive/html/bug-wget/2014-12/msg00108.html (12,067 bytes)

118. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 33)
Author: HIDDEN
Date: Thu, 18 Dec 2014 10:44:51 +0100
Thanks for feedback. It's pushed now. Tim Attachment: signature.asc Description: This is a digitally signed message part.
/archive/html/bug-wget/2014-12/msg00101.html (5,995 bytes)

119. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 33)
Author: HIDDEN
Date: Thu, 18 Dec 2014 01:45:14 +0100
[...] Great! Patch reads fine and behaves as advertized on OpenBSD-current. -- jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF DDCC 0DFA 74AE 1524 E7EE Attachment: signature.asc Description: PGP si
/archive/html/bug-wget/2014-12/msg00097.html (5,931 bytes)

120. Re: [Bug-wget] [patch] uuid generation in warc.c (score: 34)
Author: HIDDEN
Date: Wed, 17 Dec 2014 10:37:08 +0100
Thanks, your patch has been pushed to git. On top of it I created the attached patch that implements my suggestion from above. Please review and test on OpenBSD if possible. Tim Attachment: 0001-conf
/archive/html/bug-wget/2014-12/msg00088.html (8,838 bytes)


This search system is powered by Namazu