| > Is there a simple way (even if it means messing with
> the source a bit) to get httrack to change spaces to
> underscores in the files it creates?
See library examples:
libtest/callbacks-example-filename.c
this one replaces all filenames by their ROT-13 equivalent
libtest/callbacks-example-filenameiisbug.c
this one replaces all ".com" or ".exe" occurences by ".c0m" or ".ex3" (because
of an IIS bug)
You wil lhave to compile them, such as in:
gcc -O -g3 -Wall -D_REENTRANT -DINET6 -D_FILE_OFFSET_BITS=64
-D_LARGEFILE_SOURCE -shared -o callback.so callbacks-example-filename.c
or with Visual C++:
cl -LD -nologo -W3 -Zi -Zp4 -DWIN32 -Fe"callback.dll"
callbacks-example-filename.c
And then, call:
httrack --wrapper save-name=callback:mysavename ..
| |