Closed GoogleCodeExporter closed 8 years ago
Bjarne,
Your example isnt' correct at 100%. In "wdata/testwfile" dit, some WARC are
valid, some other not and we
deliberatly did that.
Anyway, we made warc-tools more compatible between versions 0.17 and 0.18. So,
it'll accept both version
because they are technically the same.
Thanks
Y.
Original comment by voidptr...@gmail.com
on 14 Sep 2008 at 12:16
I just wondered why all files failed in my distribution. I was expecting some
files
to fail and some files to validate - none of that happened.
Original comment by bjarne.a...@gmail.com
on 14 Sep 2008 at 5:30
Hi Bjarne,
Please, try to understand the commands before using them.
You're doing that:
for I in $(ls wdata/testwfile/*.warc); do ./warcvalidator -f $I; done
With this, you can't distinguish any result as you're in "quiet" mode.
Please, use the verbose mode and put an "echo" to debug a bit like this :
for I in $(ls wdata/testwfile/*.warc); do echo "---- $I"; ./warcvalidator -v -f
$I; done
Now you can see valid WARC.
Hope this help.
cheers
Y.
Original comment by voidptr...@gmail.com
on 14 Sep 2008 at 9:33
Original issue reported on code.google.com by
bjarne.a...@gmail.com
on 2 Sep 2008 at 8:41