RE: 1.11 Alpha 1 Win32 files

2006-06-27 Thread Herold Heiko
FWIW, the alpha1 build runs fine on NT4sp6a, too.
Heiko

-- 
-- PREVINET S.p.A. www.previnet.it
-- Heiko Herold [EMAIL PROTECTED] [EMAIL PROTECTED]
-- +39-041-5907073 / +39-041-5917073 ph
-- +39-041-5907472 / +39-041-5917472 fax

 -Original Message-
 From: bruce [mailto:[EMAIL PROTECTED]
 Sent: Monday, June 26, 2006 5:05 PM
 To: 'Christopher G. Lewis'; 'www.mail'; wget@sunsite.dk
 Subject: RE: 1.11 Alpha 1 Win32 files
 
 
 hi...
 
 as you guys create/go forth in dealing with windows.. are you 
 focused on XP, or 2000 as well... keep in mind, there are a 
 lot of 2000 users still around!!
 
 -bruce
 
 
 -Original Message-
 From: Christopher G. Lewis [mailto:[EMAIL PROTECTED]
 Sent: Monday, June 26, 2006 7:27 AM
 To: www.mail; wget@sunsite.dk
 Subject: RE: 1.11 Alpha 1 Win32 files
 
 
 http://support.microsoft.com/default.aspx?scid=kb;en-us;326922
 
 Using the ResKit tool Depends on the SSL libs, it looks like the
 MSVCR80.dll will need to be included.  However, WGET itself 
 doesn't have
 the dependancy.
 
 I'm researching this, and should be able to have an answer today.
 
 Chris
 
 Christopher G. Lewis
 http://www.ChristopherLewis.com
  
 
  -Original Message-
  From: www.mail [mailto:[EMAIL PROTECTED] 
  Sent: Monday, June 26, 2006 5:12 AM
  To: Christopher G. Lewis; wget@sunsite.dk
  Subject: Re: 1.11 Alpha 1 Win32 files
  
  Hi Chris,
  
  Thanks for the new binaries.
  
  The new SSL libraries, v0.9.8b, on your site require msvcr80.dll, 
  which v0.9.7g didn't.  Please could you tell me where to get this 
  DLL.  I tried the one from
  
  http://www.dll-files.com/dllindex/pop.php?msvcr80
  
  but wget gave the error:
  
  The procedure entry point _encode_pointer could not be 
 located in the 
  dynamic link library MSVCR80.dll
  
  Regards,
  Jonny
  
  At 21:30 25/06/2006, you wrote:
  
  Hi all -
  
 I've published the latest alpha Win32 binaries using a 
  similar format
  to Heiko's Win32 page.  Hopefully I'll be able to keep up with what
  Heiko's done in the past, which has been excellent.  Heiko 
 deserves a
  big round of cheers for his work.
  
  The location for the downloads will be
  http://www.christopherlewis.com/wget/default.htm.  Right 
 now this is
  just a page off my personal web site, hopefully we'll just 
 be able to
  add these to the normal wget site.
  
  Christopher G. Lewis
  http://www.ChristopherLewis.com
  
  
 


RE: 1.11 Alpha 1 Win32 files

2006-06-27 Thread www.mail

Hi Chris,

Thanks for the update.

I've tested it on Windows 2000 and it works.

Regards,
Jonny


At 03:10 27/06/2006, Christopher G. Lewis wrote:


Jonny  -

  I've updated the wget-1.11-alpha-1b.zip and the ssllibs.098b.b.zip to
include the MSVCR80.DLL file. http://www.ChristopherLewis.com/WGet

  I'm not sure when I'll have the ability to check on Windows 2000, but
since it's so similar to XP/2003 I don't think it will be a problem.

  The current compile passed a smoke test on Win98 - I really should
have a test script :-)

Chris

Christopher G. Lewis
http://www.ChristopherLewis.com


 -Original Message-
 From: www.mail [mailto:[EMAIL PROTECTED]
 Sent: Monday, June 26, 2006 5:12 AM
 To: Christopher G. Lewis; wget@sunsite.dk
 Subject: Re: 1.11 Alpha 1 Win32 files

 Hi Chris,

 Thanks for the new binaries.

 The new SSL libraries, v0.9.8b, on your site require msvcr80.dll,
 which v0.9.7g didn't.  Please could you tell me where to get this
 DLL.  I tried the one from

 http://www.dll-files.com/dllindex/pop.php?msvcr80

 but wget gave the error:

 The procedure entry point _encode_pointer could not be located in the
 dynamic link library MSVCR80.dll

 Regards,
 Jonny

 At 21:30 25/06/2006, you wrote:

 Hi all -
 
I've published the latest alpha Win32 binaries using a
 similar format
 to Heiko's Win32 page.  Hopefully I'll be able to keep up with what
 Heiko's done in the past, which has been excellent.  Heiko deserves a
 big round of cheers for his work.
 
 The location for the downloads will be
 http://www.christopherlewis.com/wget/default.htm.  Right now this is
 just a page off my personal web site, hopefully we'll just be able to
 add these to the normal wget site.
 
 Christopher G. Lewis
 http://www.ChristopherLewis.com






wget build/debugging!! -debugger tool

2006-06-27 Thread bruce
hi heiko!

when you guys are building/testing wget, are you ever using any kind of IDE?
if so, which one? i can get wget to build on my linux box using the
configure/make process

and while i can get it to build using Eclipse on my linux box, i cant' seem
to figure out what i need to do within the settings to actually be able to
step into various functions once i'm in the main () function. and if you
can't step into/through functions.. debugging gets to be a pain!!!


on the windows side, i can't really get the app into the ms visual studio at
all.. not without chopping up vars, guessing at which defs should be
defined, etc...

-bruce




wget css parsing

2006-06-27 Thread Ted Mielczarek
Hello,I have implemented a simple CSS parser in wget to handle things like @import rules and background-image: url(). It is mostly just a lexical scanner (implemented using flex) with a very dumb parser on top of that. The flex source comes directly from the 
CSS2.1 spec: http://www.w3.org/TR/CSS21/grammar.html#q2, so it should handle almost anything (unicode excluded). It definitely needs more testing. It works for my simple testcases, but I'm sure there are plenty of ways to break it. You will find my source tree, a diff, and an explanation of my changes here:
http://ted.mielczarek.org/code/wget-modified/I made my changes against the 1.10 branch, because I intend to use this on a machine running Debian stable and I wanted minimal other problems. If there is interest I will port the changes to trunk. The diff does not include the few new files I created, but they're in the src directory: 
css-tokens.h - an enum of css lexical tokens, css-url.c - analogous to html-url.c, css-url.h - its header file, and css.lex - the flex source.I did have to hack the html parser a bit to make this work properly, I added a tag stack to keep track of opening tags so I could handle the contents of style tags.
There's probably some mess left over from debugging and whatnot, but I'd appreciate it if people would take a look at this, play with it, and give me some feedback. Please CC me on any replies as I'm not subscribed to this mailing list.
Regards,-Ted


wget problem

2006-06-27 Thread Paula
Hello GNU, when I type in C:\wget http://.com I get the message:
Wget is not recognized as an internal or external command, operable program
or batch file.
What am I doing wrong?
I start out from the C prompt.
Thank you.
Paula Van Berkom





RE: wget problem

2006-06-27 Thread Sandhu, Ranjit
Paula,

Go to the directory where you have WGET installed, ie. The directory in
which wget.exe is located.  The error is saying windows cannot find the
wget program.

Ranjit Sandhu
SRA

-Original Message-
From: Paula [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 12:31 PM
To: [EMAIL PROTECTED]
Subject: wget problem

Hello GNU, when I type in C:\wget http://.com I get the
message:
Wget is not recognized as an internal or external command, operable
program or batch file.
What am I doing wrong?
I start out from the C prompt.
Thank you.
Paula Van Berkom






RE: wget problem

2006-06-27 Thread Willener, Pat
...OR... specify the full path name - C:\ C:\Program Files\wget\wget 
parameters

...OR... add the path to the %PATH% - C:\ PATH %PATH%;C:\Program Files\wget

...OR... drag and drop a shortcut to the C: root

-Original Message-
From: Sandhu, Ranjit [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 28, 2006 2:00 AM
To: Paula; [EMAIL PROTECTED]
Subject: RE: wget problem

Paula,

Go to the directory where you have WGET installed, ie. The directory in
which wget.exe is located.  The error is saying windows cannot find the
wget program.

Ranjit Sandhu
SRA

-Original Message-
From: Paula [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 12:31 PM
To: [EMAIL PROTECTED]
Subject: wget problem

Hello GNU, when I type in C:\wget http://.com I get the
message:
Wget is not recognized as an internal or external command, operable
program or batch file.
What am I doing wrong?
I start out from the C prompt.
Thank you.
Paula Van Berkom






RE: [SPAM] RE: wget problem

2006-06-27 Thread Paula
Thanks Pat, yes I understand, but I thought that wget was a built-in DOS
command, but it is not. 
So I am trying to find where I can download it from.
I am looking at your GNU.org website.
Any suggestion or direction you can give me about the download?
Thanks..
Paula 

-Original Message-
From: Willener, Pat [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 8:26 PM
To: [EMAIL PROTECTED]
Cc: Paula
Subject: [SPAM] RE: wget problem

..OR... specify the full path name - C:\ C:\Program Files\wget\wget
parameters

..OR... add the path to the %PATH% - C:\ PATH %PATH%;C:\Program Files\wget

..OR... drag and drop a shortcut to the C: root

-Original Message-
From: Sandhu, Ranjit [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 28, 2006 2:00 AM
To: Paula; [EMAIL PROTECTED]
Subject: RE: wget problem

Paula,

Go to the directory where you have WGET installed, ie. The directory in
which wget.exe is located.  The error is saying windows cannot find the
wget program.

Ranjit Sandhu
SRA

-Original Message-
From: Paula [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 12:31 PM
To: [EMAIL PROTECTED]
Subject: wget problem

Hello GNU, when I type in C:\wget http://.com I get the
message:
Wget is not recognized as an internal or external command, operable
program or batch file.
What am I doing wrong?
I start out from the C prompt.
Thank you.
Paula Van Berkom






RE: [SPAM] RE: wget problem

2006-06-27 Thread Willener, Pat
Yes, wget is not a DOS command, but you can download the Windows version from
http://xoomer.alice.it/hherold/

Regards,
Pat 

-Original Message-
From: Paula [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 28, 2006 12:37 PM
To: Willener, Pat; [EMAIL PROTECTED]
Subject: RE: [SPAM] RE: wget problem

Thanks Pat, yes I understand, but I thought that wget was a built-in DOS
command, but it is not. 
So I am trying to find where I can download it from.
I am looking at your GNU.org website.
Any suggestion or direction you can give me about the download?
Thanks..
Paula 

-Original Message-
From: Willener, Pat [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 8:26 PM
To: [EMAIL PROTECTED]
Cc: Paula
Subject: [SPAM] RE: wget problem

..OR... specify the full path name - C:\ C:\Program Files\wget\wget
parameters

..OR... add the path to the %PATH% - C:\ PATH %PATH%;C:\Program Files\wget

..OR... drag and drop a shortcut to the C: root

-Original Message-
From: Sandhu, Ranjit [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 28, 2006 2:00 AM
To: Paula; [EMAIL PROTECTED]
Subject: RE: wget problem

Paula,

Go to the directory where you have WGET installed, ie. The directory in
which wget.exe is located.  The error is saying windows cannot find the
wget program.

Ranjit Sandhu
SRA

-Original Message-
From: Paula [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 12:31 PM
To: [EMAIL PROTECTED]
Subject: wget problem

Hello GNU, when I type in C:\wget http://.com I get the
message:
Wget is not recognized as an internal or external command, operable
program or batch file.
What am I doing wrong?
I start out from the C prompt.
Thank you.
Paula Van Berkom






RE: wget problem

2006-06-27 Thread Paula
Thanks a lot Pat.
I will try it out. 
Paula

-Original Message-
From: Willener, Pat [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 8:40 PM
To: Paula; [EMAIL PROTECTED]
Subject: [SPAM] RE: [SPAM] RE: wget problem

Yes, wget is not a DOS command, but you can download the Windows version
from
http://xoomer.alice.it/hherold/

Regards,
Pat 

-Original Message-
From: Paula [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 28, 2006 12:37 PM
To: Willener, Pat; [EMAIL PROTECTED]
Subject: RE: [SPAM] RE: wget problem

Thanks Pat, yes I understand, but I thought that wget was a built-in DOS
command, but it is not. 
So I am trying to find where I can download it from.
I am looking at your GNU.org website.
Any suggestion or direction you can give me about the download?
Thanks..
Paula 

-Original Message-
From: Willener, Pat [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 8:26 PM
To: [EMAIL PROTECTED]
Cc: Paula
Subject: [SPAM] RE: wget problem

.OR... specify the full path name - C:\ C:\Program Files\wget\wget
parameters

.OR... add the path to the %PATH% - C:\ PATH %PATH%;C:\Program Files\wget

.OR... drag and drop a shortcut to the C: root

-Original Message-
From: Sandhu, Ranjit [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 28, 2006 2:00 AM
To: Paula; [EMAIL PROTECTED]
Subject: RE: wget problem

Paula,

Go to the directory where you have WGET installed, ie. The directory in
which wget.exe is located.  The error is saying windows cannot find the
wget program.

Ranjit Sandhu
SRA

-Original Message-
From: Paula [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 12:31 PM
To: [EMAIL PROTECTED]
Subject: wget problem

Hello GNU, when I type in C:\wget http://.com I get the
message:
Wget is not recognized as an internal or external command, operable
program or batch file.
What am I doing wrong?
I start out from the C prompt.
Thank you.
Paula Van Berkom