I found instructions on creating definitions files here:http://woofy.sourceforge.net/tutorial.html
and here: https://code.google.com/p/woofy/wiki/BuildingAComicDefinition
I suspect that those instructions are out-of-date, as they talk about Woofy working backwards from the current strip to the last, and it seems to work the other way around when I try.
I tried writing a definitions file myself (for Sinfest), based on some of the more recently updated definitions (specifically grrlpower and evilinc), but I couldn't get it to work. Here's what I got:
comic "Sinfest"
start_at "http://www.sinfest.net/view.php?date=2000-01-17"
for page in visit("""<a href="(?<content>[^"]*?)"><img src="../images/next.gif">"""):
download("""<img src="(?<content>[^"]*?)" alt="[^"]*?">""")
Any advice in getting this to work is appreciated, and if anyone has some advice about getting a bit more to grips with the regex stuff, that would be good too.
Thanks.