Pat wrote:Jason still visits... or is it the new owner, using Jason's login?
ACP? I think to stop and restart g.r.emlin would require admin login to the unix box.
denis_berthier wrote:AFAIK, this has to be done page by page, which drastically limits what can be saved by anyone.
Scripting can help automate a fair bit of the process.
Windows 10 comes with curl.exe (a command line tool) - it can be used to download web pages.
This downloads the Board Index page (saved in index.html):
- Code: Select all
curl.exe http://forum.enjoysudoku.com/ > index.html
These gets you the 4 pages of this thread:
- Code: Select all
curl.exe -O http://forum.enjoysudoku.com/hardest-thread-disappeared-t40014.html
curl.exe -O http://forum.enjoysudoku.com/hardest-thread-disappeared-t40014-15.html
curl.exe -O http://forum.enjoysudoku.com/hardest-thread-disappeared-t40014-30.html
curl.exe -O http://forum.enjoysudoku.com/hardest-thread-disappeared-t40014-45.html
This gets you the 1st (of 34) pages in the 'Advanced solving techniques' section:
- Code: Select all
curl.exe -O http://forum.enjoysudoku.com/advanced-solving-techniques-f6.html
If you get all 34 pages, scripting can help extract the threads URLs.
About the saved web pages (if you saved one or more of the above):
When connected to the Internet, these display correcly in a brower, as required files and images are retrieved from the web site.
When completely offline (no Internet), the saved pages do not display correctly. The files needed can be downloaded (when online!), and the saved web pages modified to use the local copies. I've done this manually a few times, but the process can be mostly automated using scripts.
Edit: 4 pages in this thread. in future, adjust/extend as thread grows...