Re: Wget function

2008-08-25 Thread karlito
 Hello,

 First of all i would thank you for your great tool

 I have a request

 i use this function to save url with absolute link so it's very good

 wget -k http://www.google.fr/

 but i want to save this file as other name than index.html like for
 example  google-is-good.html

 i have try this

 wget -k –output-document=google-is-good.html http://www.google.fr/

 is work except i lost absolute link and it's terrible

 i don't know how to fix this problem wich combinaison i have to made for
 use wget - k  with another name ??

 can you help me i don't find the solution  also where i can find last
 verssion for windows

 thank you for your time


 regard carlos .



Re: failure notice

2008-08-25 Thread karlito
Hello,

First of all i would thank you for your great tool

I have a request

i use this function to save url with absolute link so it's very good

wget -k http://www.google.fr/

but i want to save this file as other name than index.html like for example
google-is-good.html

i have try this

wget -k –output-document=google-is-good.html http://www.google.fr/

is work except i lost absolute link and it's terrible

i don't know how to fix this problem wich combinaison i have to made for use
wget - k  with another name ??

can you help me i don't find the solution  also where i can find last
verssion for windows

thank you for your time


regard carlos .


Re: Wget function

2008-08-25 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

karlito wrote:
 
 
 Hello,
  
 First of all i would thank you for your great tool
  
 I have a request
  
 i use this function to save url with absolute link so it's very good
  
 wget -k http://www.google.fr/
  
 but i want to save this file as other name than index.html like for
 example  google-is-good.html
  
 i have try this
  
 wget -k –output-document=google-is-good.html http://www.google.fr/
  
 is work except i lost absolute link and it's terrible

Yeah. Conversions won't work with --output-document, which behaves
rather like a shell redirection.

 i don't know how to fix this problem wich combinaison i have to made
 for use wget - k  with another name ??

You could always rename it afterwards.

In your specific case, the current development sources (which will
become Wget 1.12) have a --default-page=google-is-good.html option for
specifying the default page name, thanks to Joao Ferreira. It's not yet
available in any release.

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer.
GNU Maintainer: wget, screen, teseq
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFIsv3N7M8hyUobTrERAskoAJ4lHZK+VEBWYuFzOtbd57wEEvYm0wCdEVSK
el6v3e0TkKpQtOG2b5ZiHcI=
=/+sB
-END PGP SIGNATURE-


[wish] quiet operation yet displaying the progress

2008-08-25 Thread Maciej Pilichowski
Hello,

  I call usually wget from my script in entirely quiet mode however it 
would be useful if wget could still show the progress -- currently 
wget either shows a lot of information (and progress) or does not 
show anything. In short something like this:
--progress=bar -q -nv
is understood as
-q -nv

  Please treat such arguments (the former example) as stating show 
only progress and nothing else.

Kind regards,

PS. Please add me to CC while replying because I am not a subscriber. 
Thank you in advance.
-- 
Maciej Pilichowski


Re: WGET :: [Correction de texte]

2008-08-25 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Tom wrote:
 Téléchargement récursif:
   -r,  --recursive  spécifer un téléchargement récursif.
   -l,  --level=NOMBRE   _*profondeeur*_ maximale de récursion (inf
 ou 0 pour infini).
 
 Juste un e à enlever de profondeeur, et ca sera réglé !

This issue appears to have been fixed with the latest French
translation. It will be released with Wget 1.12.

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer.
GNU Maintainer: wget, screen, teseq
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFIswBE7M8hyUobTrERAufeAKCIl4ghMvo2JolNfsSAYCTd92v9OwCfS89O
iT3urRXKctZuucXnOn9tGLc=
=v5SC
-END PGP SIGNATURE-


Re: [wish] quiet operation yet displaying the progress

2008-08-25 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Maciej Pilichowski wrote:
 Hello,
 
   I call usually wget from my script in entirely quiet mode however it 
 would be useful if wget could still show the progress -- currently 
 wget either shows a lot of information (and progress) or does not 
 show anything. In short something like this:
 --progress=bar -q -nv
 is understood as
 -q -nv
 
   Please treat such arguments (the former example) as stating show 
 only progress and nothing else.

- -q -nv is a nonsensical combination; they say contradictory things. One
says to emit only a little output; the other says to emit no output at all.

A progress bar for -nv has already been requested, and is tracked at

https://savannah.gnu.org/bugs/index.php?22448

I don't mind putting this into 1.12 if someone wants to write the patch;
otherwise, I probably won't get to it for some time. I've got some
doubts as to whether -nv --progress=bar is the right way to achieve
this: is that the behavior we want if the user specified progress=bar
in their wgetrc file and then gave the -nv command-line option? Then
again, who puts progress=bar in their wgetrc?

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer.
GNU Maintainer: wget, screen, teseq
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFIswSO7M8hyUobTrERAnF7AKCFvdBemlyNzH8aq+QcsdOCFOfAKwCdHBft
WADc3rYLGJXpYfgDr/sKS4Q=
=gxKn
-END PGP SIGNATURE-


Re: Wget function

2008-08-25 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please keep the list in the replies.

karlito wrote:
 hi thank you for the reply my problem can be fixed on the next  verssion ?
  
 because it's for batch
  
 i have more 1000 url to made so is that why i need to find a solution
  
 also when you mean rename
  
 what is the function to rename with wget ?

I mean, just use the mv or rename command on your operating system.

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer.
GNU Maintainer: wget, screen, teseq
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFIswfR7M8hyUobTrERAubkAJ0VL2UPnNQtD27waPVwFkeUwbUp9wCfXerh
dZBr4e7ZBKcEE5Kzrjv1mi8=
=GoKL
-END PGP SIGNATURE-