Hello,
I'm working on converting all my 0.6 definitions to the new format, and I've encountered a problem with: http://www.goominet.com/unspeakable-vault/
This is the definition I've come up with (sorry if it's hard to read, I'm not very good at this):
comic "Unspeakable Vault"
start_at "http://www.goominet.com/unspeakable-vault/vault/1/"
for page in visit("""<a href="(?<content>unspeakable-vault/vault/[0-9]*/)"\s><img\ssrc="uploads/tx_cenostripviewer/next_en.gif"\sborder="0"\s/></a>"""):
download("""uploads/tx_cenostripviewer/\S+\.(?:jpg|jpeg|png)""")
In any case, the definition seems to get the links just fine, but without the preceding / (which isn't included in the links). Now Woofy appends the links to the existing URL, thus duplicating everything after the server address, for example:
going from the first page:
http://www.goominet.com/unspeakable-vault/vault/1/
to the second page this will happen:
http://www.goominet.com/unspeakable-vault/vault/1/unspeakable-vault/vault/2/
instead of:
http://www.goominet.com/unspeakable-vault/vault/2/
Pretty much the same problem happens with the strip download on this site as well.
Is there any way I can fix this? I've tried inserting a / character, but of course then the regex no longer matches. In 0.6 version I could specify the rootUrl and force the correct end result, is there something similar in version 1.x?
Thank you for any help you can provide.