Re: [Bug-wget] Regression in git master branch (commit 8e6de1fb5ff0ca0c749da7db634a1b1e3a1215a2)

2014-10-22 Thread Giuseppe Scrivano
Tim Rühsen tim.rueh...@gmx.de writes: Am Mittwoch, 22. Oktober 2014, 01:20:17 schrieb Ángel González: On 21/10/14 09:50, Giuseppe Scrivano wrote: Ángel, thanks for the debugging effort! Would you mind to send a separate patch that doesn't use strncpy (so to make make dist-check happy

Re: [Bug-wget] Send Content-Length with POST 0 length body

2014-10-21 Thread Giuseppe Scrivano
Matthew Atkinson mutley...@ntlworld.com writes: On 20/10/14 21:16, Tim Rühsen wrote: Since Wget does not explicitly support PUT, we may just care for the POST request. Since servers may reject a POST without Content-Length, we are better off with supplying one. Since PUT (and also

Re: [Bug-wget] [PATCH] Failing tests

2014-10-20 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Hi Tim, Thanks for the patch. This patch fixes the issues with the tests failing when make check was run from the tests/ directory. Seems to pass all my initial tests. Maybe we should push this? Giuseppe? sorry for the delay. I've just pushed it.

Re: [Bug-wget] [Bug-Wget] Summary of Pending Patches

2014-10-20 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: I was going through my local repository and noticed that the following patches are currently pending. I wanted a final round of reviews on them so that we may merge them into mainline. I've tried to explain the context behind each patch below and have

Re: [Bug-wget] Send Content-Length with POST 0 length body

2014-10-20 Thread Giuseppe Scrivano
Matthew Atkinson mutley...@ntlworld.com writes: diff --git a/src/ChangeLog b/src/ChangeLog index 1c4e2d5..447179e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2014-10-19 Matthew Atkinson mutley...@ntlworld.com + + * http.c (gethttp): Always send Content-Length

Re: [Bug-wget] [PATCH] V2 removed 'auto' SSLv3 also from OpenSSL code

2014-10-19 Thread Giuseppe Scrivano
Tim Rühsen tim.rueh...@gmx.de writes: patch V2 - removed SSLv3 from --secure-protocol=auto|pfs (GnuTLS code) - removed SSLv3 from --secure-protocol=auto (OpenSSL code) - amended the docs I am not an OpenSSL expert... please feel free to suggest improvements. same here,

Re: [Bug-wget] [PATCH] Small fix for limited number of strings (and potential garbage value) in arguments to concat_strings

2014-10-19 Thread Giuseppe Scrivano
Pär Karlsson feino...@gmail.com writes: Hi, I fould a potential gotcha when playing with clang's code analysis tool. The concat_strings function silently stopped counting string lengths when given more than 5 arguments. clang warned about potential garbage values in the saved_lengths array,

Re: [Bug-wget] [PATCH] Using parallel test harness

2014-10-02 Thread Giuseppe Scrivano
Tim Ruehsen tim.rueh...@gmx.de writes: I am sorry to say there is another little problem with dist-check. run-px is still mentioned in tests/Makefile.am but already removed. Here is a small patch to fix this. Tim From 7a072b76e0af26b723330beb9a73be620bce4faf Mon Sep 17 00:00:00 2001

Re: [Bug-wget] Using test filenames as default test name

2014-10-02 Thread Giuseppe Scrivano
Tim Ruehsen tim.rueh...@gmx.de writes: -my $the_test = HTTPTest-new (name = Test--spider-r-HTTP-Content-Disposition, +my $the_test = HTTPTest-new ( input = \%urls, cmdline = $cmdline, errcode =

Re: [Bug-wget] [PATCH] Using parallel test harness

2014-10-01 Thread Giuseppe Scrivano
Tim Ruehsen tim.rueh...@gmx.de writes: While there might be more than one problem, at least one is the naming of the tests. The name given to HTTPServer-new() should always be unique because is is taken as a temporary working directory. Some tests have wrong name (copypaste I guess) and

Re: [Bug-wget] Timeouts need 'page' and 'byte' options

2014-09-30 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Can you add a --page-timeout which will exit wget after n secs loading a single page? Honestly, I'm unable to see any major use-case for such a functionality. Why would you want to download a page for only a constant number of seconds? Anyhow, if you do

Re: [Bug-wget] wget/gnutls TOFU certificate authentication?

2014-09-30 Thread Giuseppe Scrivano
Daniel Kahn Gillmor d...@fifthhorseman.net writes: when wget is built with gnutls, it has the opportunity to use gnutls' TOFU (trust on first use) style of certificate verification [0]. This has the potential to make wget behave similarly to ssh. Is there any interest in exposing this

Re: [Bug-wget] wget/gnutls TOFU certificate authentication?

2014-09-30 Thread Giuseppe Scrivano
Daniel Kahn Gillmor d...@fifthhorseman.net writes: On 09/30/2014 10:47 AM, Tim Ruehsen wrote: 1. if e.g. --ssh-style-verification is given on the command line (or within wgetrc). 2. --no-check-certificate is given AND the cert check (which we always perform) fails AND wget is in

Re: [Bug-wget] [Bug-Wget][BUG] Progress bar does not support multibyte characters

2014-09-18 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Any updates? I'll push this patch if there are no objections. sorry for the delay, the patch looks fine, feel free to push it. Thanks, Giuseppe

Re: [Bug-wget] [Bug-Wget][BUG] Progress bar does not support multibyte characters

2014-09-04 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Yes, I guess I'm looking for UTF-8 strings, because other character encodings wouldn't create this problem, (I think?) I'll look at the Wiki page again and see of GNULib has anything, Right now, I'm trying to implement a solution based on wide characters

Re: [Bug-wget] [PATCH] Add wrapper for using wget with a socks proxy.

2014-08-25 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: On Sat, Aug 23, 2014 at 9:57 PM, Giuseppe Scrivano gscriv...@gnu.org wrote: Darshit Shah dar...@gmail.com writes: Hi Angel, I was wondering if the WGET variable should always contain the absolute path to the executable. That way we do nopt rely

Re: [Bug-wget] Dangling info-lfilename

2014-08-25 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: I don't think we've pushed this patch yet. @Guiseppe: It's your patch, could you please take a look at it? this patch should be already in: commit ca402e2f816b1b58c378defc084315498cd9918b Author: Giuseppe Scrivano gscriv...@gnu.org Date: Thu Jun 19 19

Re: [Bug-wget] [Bug-Wget][PATH} Cleanup the test suite and add documentation

2014-08-08 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Ugh. Missed adding a file to the commit. Here's an updated patch On Fri, Aug 8, 2014 at 11:27 AM, Darshit Shah dar...@gmail.com wrote: Hi, I've spent some time cleaning up the test suite and adding some extra documentation so that it is easier for

Re: [Bug-wget] can't reject robots.txt in recursive mode

2014-08-06 Thread Giuseppe Scrivano
Ilya Basin basini...@gmail.com writes: Here's my script to download IBM javadocs: ( rm -rf wget-test mkdir wget-test cd wget-test starturl=http://www-01.ibm.com/support/knowledgecenter/api/content/SSZLC2_7.0.0/com.ibm.commerce.api.doc/allclasses-noframe.html; wget -d

Re: [Bug-wget] [Bug-Wget] Global gitignore

2014-07-25 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: I've attached another patch with the files in the project root prefixed with a /. As stated in my last mail, I believe that splitting the .gitignore file into multiple small ones across directories isn't worth the effort and any speedup it may provide

Re: [Bug-wget] Script providing SOCKS proxy support

2014-07-24 Thread Giuseppe Scrivano
Ángel González keis...@gmail.com writes: Sure. Do I also include a patch renaming util to contrib? as you prefer, I personally don't see contrib/ clearer than util/, perhaps only because I am used to see util/ in the source tree :-) Regards, Giuseppe

Re: [Bug-wget] [bug-wget][PATCH] Fix memory leaks

2014-07-23 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Hi, I found and plugged around 5 memory leaks in Wget in various HTTP related code paths. The patch file is attached. IN the next couple of days I'll run the updated version of the code base through a static analyzer, just to be sure this doesn't break

Re: [Bug-wget] [Bug-Wget][PATCH] Add valgrind based testing too test suite

2014-07-23 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Hi, I've attached a patch which enables all the tests in our test suite to run through valgrind This behaviour can be invoked by setting the environment variable: VALGRIND_TESTS. Simultaneously, I also propose that we merge the new python based test

Re: [Bug-wget] Script providing SOCKS proxy support

2014-07-21 Thread Giuseppe Scrivano
Ángel González keis...@gmail.com writes: On 19/07/14 18:39, Darshit Shah wrote: Maybe we can maintain a contrib/ directory like other projects? This directory could ship extensions and wrapper scripts that make of Wget in common use cases. That was my first thought, although I then noticed

Re: [Bug-wget] [Bug-Wget] Misc. patches

2014-07-21 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: From a44841cbe2abe712de84d7413c31fc14b44225a7 Mon Sep 17 00:00:00 2001 From: Darshit Shah dar...@gmail.com Date: Mon, 21 Jul 2014 13:25:54 +0530 Subject: [PATCH] Fix potential memory leak and libpsl configure --- ChangeLog | 4 configure.ac

Re: [Bug-wget] Error in building source code

2014-07-17 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: @Guiseppe: could you please merge the last change(s) from master ? Guiseppe, I guess we can safely merge master into parallel-wget for now. Could you please make the merge whenever possible? done. I've just pushed it. Regards, Giuseppe

Re: [Bug-wget] [PATCH] Allow to redefine ciphers list for OpenSSL

2014-07-17 Thread Giuseppe Scrivano
Tomas Hozza tho...@redhat.com writes: I agree. The patch didn't take any configuration possibility from the user. The users would be able to configure whatever in the same way they were before. Please really see some of those patches I sent. The discussion was little bit confusing at some

Re: [Bug-wget] [PATCH] Allow to redefine ciphers list for OpenSSL

2014-07-15 Thread Giuseppe Scrivano
Tomas Hozza tho...@redhat.com writes: - Original Message - On Thursday 10 July 2014 08:37:23 Tomas Hozza wrote: - Original Message - On Tuesday 08 July 2014 16:14:42 Petr Pisar wrote: On Tue, Jul 08, 2014 at 10:00:24AM -0400, Tomas Hozza wrote: I'm afraid this is

Re: [Bug-wget] [Bug-Wget] Misc. patches

2014-07-05 Thread Giuseppe Scrivano
..7962213 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2014-07-03 Darshit Shah dar...@gmail.com + + * wget.h (uerr_t): Remove unused error codes + * http.c: (http_loop): Remove reference to unused error code + 2014-06-30 Giuseppe Scrivano gscriv...@gnu.org

Re: [Bug-wget] [Bug-Wget] Misc. patches

2014-07-05 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: static bool check_domain_match (const char *cookie_domain, const char *host) @@ -509,6 +519,7 @@ check_domain_match (const char *cookie_domain, const char *host) #ifdef HAVE_LIBPSL DEBUGP ((cdm: 1)); + char * cookie_domain_lower, * host_lower;

Re: [Bug-wget] Can resume aborted downloads, using REST and RANGE

2014-07-02 Thread Giuseppe Scrivano
Sergi Anastasia sergi.ana...@gmail.com writes: what does REST and RANGE mean? an option or an cron option or an app? it is a HTTP feature that allows clients to request only a part of a resource. E.g. you've already downloaded 90Mb of a 100Mb file and your connection drops, with a Range

Re: [Bug-wget] glibc detected

2014-06-28 Thread Giuseppe Scrivano
Martin Jašek martlin...@gmail.com writes: Hi, when I run wget like: wget -q -O spoje.html www.idos.cz/olomouc/odjezdy/\?f=Trnkova\t=Hlavní%20nádraží\submit=true http://www.idos.cz/olomouc/odjezdy/%5C?f=Trnkova%5Ct=Hlavn%C3%AD%20n%C3%A1dra%C5%BE%C3%AD%5Csubmit=true I've tried this command

Re: [Bug-wget] Why is wget appending a .1 on the first download attempt?

2014-06-23 Thread Giuseppe Scrivano
Jerry Cheung jollyje...@gmail.com writes: I ran the following: wget -N -E http://whatcodecraves.com/articles The output was saved to `articles.1.html`. Why is there a `.1` on this initial run? I've tried the command here and it works for me, wget writes to articles.html. What version of

Re: [Bug-wget] [PATCH] Better align download percentage status

2014-06-22 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com (tiny change) + + * progress.c (create_image): Align percentage download output better. + 2014-06-21 Giuseppe Scrivano gscri...@redhat.com * mswindows.c (fake_fork_child): Fix build error. diff --git a/src/progress.c b/src/progress.c index df36e2c

Re: [Bug-wget] [PATCH] Add GOST94-GOST89-GOST89 support and another ciphers support via one-time call OPENSSL_config. It will fix this error `OpenSSL: error:140920F8:SSL routines:SSL3_GET_SERVER_HELLO

2014-06-20 Thread Giuseppe Scrivano
thanks for your patch, some comments below: Никита Ветров ad...@kanaria.ru writes: From 9e81ba108532ebacadd07c170f5d494b62c40bfb Mon Sep 17 00:00:00 2001 From: Nikita Vetrov ad...@kanaria.ru Date: Mon, 16 Jun 2014 04:27:18 +0200 Subject: [PATCH] Add GOST94-GOST89-GOST89 support and another

Re: [Bug-wget] Dangling info-lfilename

2014-06-17 Thread Giuseppe Scrivano
Hello, Gisle Vanem gva...@yahoo.no writes: Hello Giuseppe. You patch to mswindows.c at http://git.savannah.gnu.org/cgit/wget.git/commit/src/mswindows.c?id=8e6de1fb5ff0ca0c749da7db634a1b1e3a1215a2 @@ -123,7 +123,7 @@ struct fake_fork_info { HANDLE event; bool logfile_changed; - char

Re: [Bug-wget] wget - cntlm incompatibility (wget 1.13 onwards)

2014-06-16 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: In wget-1.13 if I replace the two request_set_header calls in http.c (line 1683,1684) with one for Connection Keep-Alive then the download is successful: if (inhibit_keep_alive) request_set_header (req, Connection, Close, rel_none); else {

Re: [Bug-wget] [PATCH 02/14] Do not use exit() with a magic number

2014-06-14 Thread Giuseppe Scrivano
Gisle Vanem gva...@yahoo.no writes: gscriv...@gnu.org wrote: ... diff --git a/src/mswindows.c b/src/mswindows.c index 179773e..c0d9be6 100644 --- a/src/mswindows.c +++ b/src/mswindows.c @@ -308,7 +308,7 @@ cleanup: /* We're the parent. If all is well, terminate. */ if (rv) -

Re: [Bug-wget] [PATCH 01/14] main: make program_name not static

2014-06-12 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: diff --git a/src/ChangeLog b/src/ChangeLog index 5ebeaf3..f93cd70 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2014-06-08 Giuseppe Scrivano gscri...@redhat.com + * main.c: Make `program_name' not static

Re: [Bug-wget] [PATCH 10/14] Do not depend on always defined macros

2014-06-12 Thread Giuseppe Scrivano
Steven M. Schweda s...@antinode.info writes: diff --git a/vms/vms.h b/vms/vms.h index d65aeda..19efdef 100644 --- a/vms/vms.h +++ b/vms/vms.h @@ -54,8 +54,6 @@ int utime( const char *path, const struct utimbuf *times); */ #if defined(__VAX) || __CRTL_VER 70301000 -#define lstat(

Re: [Bug-wget] [bug-wget] Libpsl for cookie domain checking in Wget

2014-06-12 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: On Wed, Jun 11, 2014 at 5:20 PM, Tim Rühsen tim.rueh...@gmx.de wrote: Am Freitag, 6. Juni 2014, 13:39:32 schrieb Darshit Shah: I'm facing an issue with the patch I submitted for libpsl and would be glad if someone could help me. The configure.ac file

Re: [Bug-wget] [PATCH 02/14] Do not use exit() with a magic number

2014-06-12 Thread Giuseppe Scrivano
Gisle Vanem gva...@yahoo.no writes: gscriv...@gnu.org wrote: ... diff --git a/src/mswindows.c b/src/mswindows.c index 179773e..c0d9be6 100644 --- a/src/mswindows.c +++ b/src/mswindows.c @@ -308,7 +308,7 @@ cleanup: /* We're the parent. If all is well, terminate. */ if (rv) -

Re: [Bug-wget] Update VMS Info?

2014-06-11 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: There's another request too. `make syntax-check` gives a few issues with the config.h_vms file. Now I'm not sure if those declarations are indeed required or not. If not, can we please get rid of them? slightly related, I've started to work on fixing make

Re: [Bug-wget] Contribute to New Wget Test Suite.

2014-06-09 Thread Giuseppe Scrivano
Hi Sagar! Sagar sagar.srivastava4...@gmail.com writes: Hello,all! I'm Sagar,from India currently pursuing B.E in Computer Sc. from BITS Pilani. New to the open source community,I'm eager to contribute. I've been learning Python for quite some time, and i'm quite comfortable with it. I

[Bug-wget] [PATCH wget] Fix build when libpsl is not available

2014-06-08 Thread Giuseppe Scrivano
--- FYI, I've pushed this: src/ChangeLog | 4 src/cookies.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 10dd42b..5ebeaf3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2014-06-08 Giuseppe Scrivano gscri

Re: [Bug-wget] [GSoC] Refactoring the Test Suite

2014-06-07 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: With Zihang's copyright assignment process over, is there anything that is still blocking the process of merging this set of patches? Nothing really, I am going to push this series soon. Zihang, thanks for your contribution! Regards, Giuseppe

Re: [Bug-wget] [bug-wget] Libpsl for cookie domain checking in Wget

2014-06-06 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Not sure about using pkg-config in Wget's configure.ac. That would be an option for detecting libpsl (and other libs as well, I guess). We can work also on that later if there are no complaints against that. I'm not sure about using pkg-config. I don't

Re: [Bug-wget] [bug-wget] Libpsl for cookie domain checking in Wget

2014-06-06 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: I'm facing an issue with the patch I submitted for libpsl and would be glad if someone could help me. The configure.ac file does not work as expected. When libpsl is not installed on a system, the LDFLAGS does not contain -lpsl flag, but the configure

Re: [Bug-wget] multiple constant parameters

2014-06-04 Thread Giuseppe Scrivano
Szépe Viktor vik...@szepe.net writes: Good morning! I'd like to use multiple constant parameters like wget -U $UA --header=Secret-Key: ${HC_SECRETKEY} etc. Is there a way to set defaults WITHOUT a wgetrc file? I resist to put a secret key ibto a file. I use wget a lot in a shell script.

Re: [Bug-wget] [Bug-Wget][RFC] Even more changes to the progress bar

2014-05-30 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: From b557d9635ddffe749c93f154dafe9b229560a34b Mon Sep 17 00:00:00 2001 From: Darshit Shah dar...@gmail.com Date: Tue, 20 May 2014 00:15:45 +0530 Subject: [PATCH] More progress bar aesthetic changes This commit introduces two new changes to how the

Re: [Bug-wget] Implementation suggestion for JavaScript execution

2014-05-29 Thread Giuseppe Scrivano
Tony Lewis tle...@exelana.com writes: Yes, implementing document.location is a reasonable place to start, but once JavaScript support has been added to wget, I expect the floodgates will quickly open with bug reports of pages where wget didn't retrieve all the requisite content. in any case

Re: [Bug-wget] [Bug-Wget][RFC] Even more changes to the progress bar

2014-05-29 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Has anyone tested out this patch yet? I'd really like some feedback on this before it gets merged. I prefer this implementation of the progress bar over the original one. Does anybody have any issues / suggestions? it looks very nice, thanks to have

Re: [Bug-wget] [Bug-Wget][RFC] Even more changes to the progress bar

2014-05-29 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: On Thu, May 29, 2014 at 4:30 PM, Giuseppe Scrivano gscriv...@gnu.org wrote: Darshit Shah dar...@gmail.com writes: Has anyone tested out this patch yet? I'd really like some feedback on this before it gets merged. I prefer this implementation

Re: [Bug-wget] Implementation suggestion for JavaScript execution

2014-05-26 Thread Giuseppe Scrivano
Andrew Pennebaker andrew.penneba...@gmail.com writes: Tumblr and other websites delay loading some of their content (images) through JavaScript events like *onload*. It would be nice if wget supported a *-j* flag for executing this, in order to access these dynamically loaded resources.

Re: [Bug-wget] [RFC] Extend concurrency support

2014-05-21 Thread Giuseppe Scrivano
Jure Grabnar grabna...@gmail.com writes: On Tue, 20 May 2014 12:56:48 +0200 Giuseppe Scrivano gscriv...@gnu.org wrote: Tim Ruehsen tim.rueh...@gmx.de writes: most of this is already solved in https://github.com/rockdaboot/mget which was originally thought as a 'modern' Wget. I would

Re: [Bug-wget] [RFC] Extend concurrency support

2014-05-21 Thread Giuseppe Scrivano
Tim Ruehsen tim.rueh...@gmx.de writes: AFAIK, it is more a 'would be nice'. Guiseppe as the maintainer should know or at least is in the right position to ask someone of the GNU 'organization'. I guess that nobody in the FSF knows better than us what is the best technical decision to take

Re: [Bug-wget] [Bug-Wget][RFC] Even more changes to the progress bar

2014-05-20 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: On Tue, May 20, 2014 at 1:26 AM, Ángel González keis...@gmail.com wrote: On 19/05/14 21:17, Darshit Shah wrote: 2. I am not aware of anyone parsing the output of Wget's progress bar. Do you think changing the default output would cause a problem? No.

Re: [Bug-wget] [RFC] Extend concurrency support

2014-05-20 Thread Giuseppe Scrivano
Tim Ruehsen tim.rueh...@gmx.de writes: most of this is already solved in https://github.com/rockdaboot/mget which was originally thought as a 'modern' Wget. I would like to see Mget and Wget merge into something like 'Wget2'. At least, feel free to move code from Mget into Wget as you

Re: [Bug-wget] [Bug-Wget] It's spring cleaning time!

2014-05-12 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Not too hard. Here it is. Thank you both, pushed now! Regards, Giuseppe

Re: [Bug-wget] Combining domains with directories when filtering

2014-05-11 Thread Giuseppe Scrivano
george boukeas bouk...@gmail.com writes: Hello everyone. As far as I can tell, when I use wget like this: wget -r -H -D domain1,domain2 -I dir1,dir2 ... I get everything from domain1/dir1, domain1/dir2, as well as domain2/dir1 and domain2/dir2. I have not been able to figure out how to

Re: [Bug-wget] [Bug-Wget] It's spring cleaning time!

2014-05-11 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Subject: [PATCH] Fix LOTS of compiler warnings great work! Just some minor comments: * http.c: Fix small memory leak diff --git a/src/css-url.c b/src/css-url.c index f97690d..51e43b4 100644 --- a/src/css-url.c +++ b/src/css-url.c @@ -64,8

Re: [Bug-wget] [Bug-Wget][Patch] Implement --show-progress

2014-04-29 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Recently we received a feature request fromt he good guys at RedHat. I've personally wanted this feature implemented in master for a while now and was maintaining a hacked up version of the patch to do so myself. After some cleaning up, I submitted a

Re: [Bug-wget] [PATCH] wget hangs on HTTP 204

2014-04-24 Thread Giuseppe Scrivano
Tim Ruehsen tim.rueh...@gmx.de writes: On Tuesday 22 April 2014 18:08:08 Giuseppe Scrivano wrote: Tim Ruehsen tim.rueh...@gmx.de writes: Attached is a patch including a new test case. Guiseppe, I made it for a clone of Darshit's clone of Wget. Not sure if it fits into master. thanks

Re: [Bug-wget] [PATCH] wget hangs on HTTP 204

2014-04-22 Thread Giuseppe Scrivano
Tim Ruehsen tim.rueh...@gmx.de writes: Attached is a patch including a new test case. Guiseppe, I made it for a clone of Darshit's clone of Wget. Not sure if it fits into master. thanks for your patch. It applies to master. Do you mind if I amend this change in the patch before pushing it

Re: [Bug-wget] [Bug-Wget] Enable SSL access to savannah

2014-04-22 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: I just noticed that the git repository for Wget on Savannah does not have SSL enabled on it. Hence, the only way to access both the cgit interface and the git repository is through http which isn't too secure. Could we have HTTPS access enabled on those

Re: [Bug-wget] [PATCH] wget hangs on HTTP 204

2014-04-22 Thread Giuseppe Scrivano
Yousong Zhou yszhou4t...@gmail.com writes: On 22 April 2014 21:02, Tim Ruehsen tim.rueh...@gmx.de wrote: Attached is a patch including a new test case. Guiseppe, I made it for a clone of Darshit's clone of Wget. Not sure if it fits into master. Hi, Giuseppe. Just noticed that my previous

Re: [Bug-wget] statically link wget on mingw32 with win-builds

2014-04-06 Thread Giuseppe Scrivano
Szépe Viktor vik...@szepe.net writes: Good morning! - Windows 7 Pro 64 bit - wget-1.15 - mingw32 + MSYS 1.0.18(0.48/3/2) - win-builds-bundle 1.3.0 - ./configure --disable-ipv6 make I'd like to compile wget into a single exe file. I've searched the source and the FAQ. Please help me

Re: [Bug-wget] warning about unknown .wgetrc directives

2014-04-04 Thread Giuseppe Scrivano
Hi Karl, k...@freefriends.org (Karl Berry) writes: Giuseppe et al., I suggest making unknown .wgetrc directives a warning (and just ignore them, proceeding on normally), rather than a failure. For purposes of compatibility - a person might have a brand-new wget on system A, but for

Re: [Bug-wget] warning about unknown .wgetrc directives

2014-04-04 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Unless we add something like --ignore-wgetrc-errors... I think that's over-engineering the problem. Some time ago, Tim, if I remember correctly proposed using version lines. So, newer commands can be marked as valid under a certain version only. The

Re: [Bug-wget] first press a button

2014-03-31 Thread Giuseppe Scrivano
Peter Maljers p.a.malj...@gmail.com writes: If i get the next page the first time on a day i get a screen with a button to press first to agree with the rules. How can i press that button when i get the page with wget? https://www.ingsprinters.nl/markten/indices/AEX you should fake the POST

Re: [Bug-wget] Compiler warning fix

2014-03-26 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Hi all, There were a total of two compiler warnings I'd get on master when using clang. I've attached a patch to rectify them. These warnings occur when compiled with no extra CFLAGS. Thanks, I have just pushed the patch. Giuseppe

Re: [Bug-wget] [PATCH] url: remove shorten_string

2014-03-25 Thread Giuseppe Scrivano
Daniel Stenberg dan...@haxx.se writes: The function wasn't used and caused a compiler warning: url.c:1288:1: warning: 'shorten_length' defined but not used [-Wunused-function] --- src/url.c | 10 -- 1 file changed, 10 deletions(-) thanks for the patch. I've amended the

Re: [Bug-wget] (no subject)

2014-03-13 Thread Giuseppe Scrivano
Marouane Hmaidi cherif.fis...@gmail.com writes: Hi, im using ctorrent , can i use wget to download torrent using wget? Thanks. no, wget has no support for BitTorrent. Giuseppe

Re: [Bug-wget] Debug symbols

2014-03-06 Thread Giuseppe Scrivano
Jeff Janes jeff.ja...@gmail.com writes: I am building from a git checkout. After running ./bootstrap, the resulting ./configure --help advertises a --disable-debug option. To me this suggests that debugging symbols are included by default. But they are not, there are no debugging symbols

Re: [Bug-wget] [bug-wget] Please upgrade gnulib version

2014-03-05 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Hi, Giuseppe, could you also please merge master into parallel-wget? As of now, I cannot compile the parallel-wget branch due to the old gnulib submodule. I locally merged master into parallel-wget and everything works just fine. done :-) Giuseppe

Re: [Bug-wget] GSOC Project Proposal

2014-03-03 Thread Giuseppe Scrivano
Siddhartha Sahai siddharthasaha...@gmail.com writes: I am a student interested in working with GNU wget this summer for #gsoc. I was browsing various options and one feature that excited me was adding IMAP/POP3 support to wget. This feature would enable users to schedule downloading of their

Re: [Bug-wget] Submitting a patch fixing the --content-disposition option of wget

2014-03-03 Thread Giuseppe Scrivano
Vladimír Pýcha vpy...@gmail.com writes: Ok, attached is the new patch file with all edits mentioned in ChangeLog. thanks for your contribution. I've applied this small fixup (just aesthetic) on your patch and pushed it: diff --git a/src/http.c b/src/http.c index 690fcde..8306f99 100644 ---

Re: [Bug-wget] [bug-wget] Please upgrade gnulib version

2014-02-24 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Git recently updated to v1.9.0. This version changes a few things such that certain gnulib scripts broke. As a result, those running the latest version of git are unable to compile wget from the git sources. The problem was reported upstream to gnulib

Re: [Bug-wget] [PATCH] add support for --bindport to choose the TCP source port

2014-02-01 Thread Giuseppe Scrivano
Alban Crequy alban.cre...@collabora.co.uk writes: It was useful for my tests on traffic control and I am not sure it makes sense in other use cases. --- src/connect.c | 4 ++-- src/init.c| 1 + src/main.c| 1 + src/options.h | 1 + 4 files changed, 5 insertions(+), 2 deletions(-)

Re: [Bug-wget] [PATCH] Don't use --debug in Test--post-file.px

2014-01-27 Thread Giuseppe Scrivano
Mike Frysinger vap...@gentoo.org writes: On Thursday 23 January 2014 09:15:36 Lars Wendler wrote: On Thu, 23 Jan 2014 18:56:06 +0530 Darshit Shah wrote: @Lars: It would be great if you could kindly generate a patch file with `git format-patch` and also add a ChangeLog entry along with it.

[Bug-wget] GNU wget 1.15 released

2014-01-22 Thread Giuseppe Scrivano
Hello, I am pleased to announce the new version of GNU wget. It is available for download here: ftp://ftp.gnu.org/gnu/wget/wget-1.15.tar.gz ftp://ftp.gnu.org/gnu/wget/wget-1.15.tar.xz and the GPG detached signatures using the key E163E1EA: ftp://ftp.gnu.org/gnu/wget/wget-1.15.tar.gz.sig

Re: [Bug-wget] libssl-prefix and wget 1.15

2014-01-22 Thread Giuseppe Scrivano
Hi Karl, k...@freefriends.org (Karl Berry) writes: Hi Giuseppe and anyone, Congratulations on the new release. You have noticed the release before I made the announcement (I did that just to give some time to the mirrors to sync) :-) Thanks for your report, I am going to look at these

Re: [Bug-wget] General Testsuite issue

2014-01-22 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Till we decide on a restructure, here is the patch for --no-config. This patch is made against master, but is required in parallel-wget too. @Giuseppe: Maybe you could cherry pick this? Or merge master into parallel-wget, especially since we've just

Re: [Bug-wget] [PATCH] Bug #40908

2014-01-07 Thread Giuseppe Scrivano
Håkon Vågsether hauk...@gmail.com writes: Oh, yes of course! Should be fixed now. :) pushed now! Thanks. Giuseppe

Re: [Bug-wget] [PATCH] Bug #40908

2014-01-04 Thread Giuseppe Scrivano
Hi Håkon, thanks for your contribution, I have a few comments: Håkon Vågsether hauk...@gmail.com writes: From dd9370f6362650a1f1a2b38577a87776da020547 Mon Sep 17 00:00:00 2001 From: H¥kon V¥gsether hauk...@gmail.com Date: Sun, 29 Dec 2013 13:27:18 +0100 Subject: [PATCH] Fixed bug #40908

Re: [Bug-wget] [Bug-Wget][PATCH] Additions to new Python based Tests

2014-01-03 Thread Giuseppe Scrivano
Hi Darshit, Darshit Shah dar...@gmail.com writes: Please let me know your thoughts on this series of commits and if any changes are required. thanks for your work, I've just pushed the patches. Regards, Giuseppe

Re: [Bug-wget] [PATCH] Re: ping (Re: I am seeing problems with wget-1.14.96-38327 doing gnutls secure sessions.)

2013-12-29 Thread Giuseppe Scrivano
Tim Rühsen tim.rueh...@gmx.de writes: I attached a fix. thanks for the patch, I've applied it and pushed now. Giuseppe

Re: [Bug-wget] wget alpha release 1.14.96-38327

2013-12-25 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: @Giuseppe: It's upto you to decide if #709637 should be a blocking bug. The logs do seem to show an error on Wget's part, but I haven't had a chance to create an isolated test case for it yet. With all the headers available, it shouldn't be too great an

Re: [Bug-wget] [PATCH] sample.wgetrc: add links tot he manual

2013-12-24 Thread Giuseppe Scrivano
Mike Frysinger vap...@gentoo.org writes: --- doc/sample.wgetrc | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) thanks, applied. Giuseppe

Re: [Bug-wget] wget alpha release 1.14.96-38327

2013-12-24 Thread Giuseppe Scrivano
Noël Köthe n...@debian.org writes: I could drop 3 documentation patches. The Debian bugtracker does not have additional patches. I don't track which wget upstream patch fixed which Debian bug if this is your request. would you mind to send the patches to the ML, either by git send-email or

Re: [Bug-wget] wget alpha release 1.14.96-38327

2013-12-22 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: @Noel: Could you please elaborate on the patches that fixes bugs in your bugtracker? @Giuseppe: Do we have any blocking bugs that need fixing? If not, would it be possible to make a release before the end of the year? If anything needs fixing, I'd like

Re: [Bug-wget] wget alpha release 1.14.96-38327

2013-12-22 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: I can't think of any bug/feature request that we absolutely need to address in the next release. There is the new patch for adding a --start-pos command, but I would prefer to test it out first, before adding it as part of a new release. yes, it is too

Re: [Bug-wget] [Bug-Wget][RFC] Improvements to parallel-wget branch

2013-12-04 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: I have been working on making a few changes to the parallel-wget branch. Currently, I am focused on getting all the tests implemented for parallel wget and detection of race conditions. For this, I submit two patches. The first patch, is merely a little

Re: [Bug-wget] Broken 'DEBUG_MALLOC' code

2013-11-23 Thread Giuseppe Scrivano
Gisle Vanem gva...@yahoo.no writes: would you mind adding a src/ChangeLog file entry and send the patch as git format-patch or git send-email? I don't know git, but attached are my attempt. what command did you use to generate these files? I suggest you also to squash the two patches into

Re: [Bug-wget] [Patch] src/build_info.c.in for Windows

2013-11-23 Thread Giuseppe Scrivano
Gisle Vanem gva...@yahoo.no writes: commit 21d33c85fb72ef6518bdbf331cabc3056eda8561 Author: Gisle Vanem gva...@yahoo.no Date: Mon Nov 18 14:50:01 2013 + On Windows we always support large files always since 'wgint' is set to 64-bit in mswindows.h. how did you generate this

Re: [Bug-wget] [Patch] src/build_info.c.in for zlib

2013-11-23 Thread Giuseppe Scrivano
Gisle Vanem gva...@yahoo.no writes: commit b950d30bc50d5e52ac1a0ab7050e5ce0b6a35e82 Author: Gisle Vanem gva...@yahoo.no Date: Mon Nov 18 15:01:37 2013 + Add {+|-}zlib to 'compiled_features[]'. diff --git a/src/build_info.c.in b/src/build_info.c.in index 7298149..471ba40 100644

Re: [Bug-wget] Broken 'DEBUG_MALLOC' code

2013-11-18 Thread Giuseppe Scrivano
Gisle Vanem gva...@yahoo.no writes: Tim Ruehsen tim.rueh...@gmx.de wrote: init.c:1738:12: error: 'url' undeclared (first use in this function) xfree (url[i]); Thatnks for pointing this out. Are you going to create a patch ? Attached are my diffs. would you mind adding a

Re: [Bug-wget] wget alpha release 1.14.96-38327

2013-11-04 Thread Giuseppe Scrivano
Darshit Shah dar...@gmail.com writes: Simply need to add those to the EXTRA_DIST variable in Makefile.am. I've attached a patch for this. Thanks for your patch. I am going to push it. Giuseppe

Re: [Bug-wget] Host header for CONNECT method

2013-11-02 Thread Giuseppe Scrivano
Ángel González keis...@gmail.com writes: There are no exceptions for CONNECT. I guess rfc2817 should have mention that in examples. However, the rationale for Host: doesn't stand for the CONNECT method. I'm ok with the change, I only wanted it noted in a comment. This patch was on the

[Bug-wget] wget alpha release 1.14.96-38327

2013-11-02 Thread Giuseppe Scrivano
Hi, I have just uploaded an alpha release for wget. If no blocking errors are found, then I will make an official release in the coming weeks (that is, wget 1.15). Please test it! :-) http://alpha.gnu.org/gnu/wget/wget-1.14.96-38327.tar.gz

<    1   2   3   4   5   6   7   >