Nick Sweeting

Results 1236 comments of Nick Sweeting

`archivebox server --debug` or `archivebox config --set DEBUG=True` All the instructions are here: https://github.com/ArchiveBox/ArchiveBox#archivebox-development `./manage.py runserver` also works if you have the ArchiveBox codebase checked out.

Yeah we don't support no-js mode for the UI. I don't have time to implement that.

Yeah I haven't implemented sorting by size, so I'm not surprised it's failing. I might just remove the sort ability for now, as it's not an easy problem (size is...

I can't reproduce it either actually. I didn't fix anything related to it, I'll leave it open for a while to see if anyone else reports it.

Can you try with `image: archivebox/archivebox:dev` and see if that works, I updated the wget version in the dev branch.

This may not be possible long-term because ArchiveBox doesn't always know the total number of links, e.g.: `curl https://someslowserver.example.com/ | archivebox add --depth=1` or `archivebox add --depth=2 https://example.com/some/fork/bomb/page.html` It's currently...

It's already supposed to be using the original timestamps, so it must be a bug in that code: https://github.com/ArchiveBox/ArchiveBox/blob/dev/archivebox/parsers/generic_json.py#L38 or something weird with your JSON export. Can you post the...

Thanks for reporting this. I think the fixes will be simple: 1. make the URL parser stop on `` characters, so we never include closing tags by accident 2. fix...

Full-text parsing is only ever used as a fallback if all the other parsing methods fail, so once the RSS parser is working again it should automatically ignore those other...

I fixed the regex c37941e, give the latest master commit a try.