I am happy to make Libweb available for you to mirror on your own site, subject to the following guidelines. Directions for creating the mirror appear below.
Note: As of January, 2009, I am not currently updating the list of official mirror sites. As needed, I may add or remove entries to maintain a broad geographical selection. Interested sites are still welcome to mirror Libweb, subject to the rules below, but will not be added to the list at this time. Thank you for your understanding.
Libweb is available for use under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License. In addition, I request that you let me know about your mirror via e-mail. I provide links to selected mirrors from the Libweb home page.
The mirror currently consists of a single, self-contained directory of files, distributed as a tar file. Updating the mirror is simply a matter of getting the tar file and extracting it in a directory under your web server.
The tar file is located at <URL:http://lists.webjunction.org/libweb/mirrors/libweb.tar>.
That’s all there is to it.
Here is a complete Unix shell script to update the mirror (it combines steps 1 and 2 into a single command):
#!/usr/bin/ksh cd /path/to/parent/directory GET http://lists.webjunction.org/libweb/mirrors/libweb.tar | \ tar xf - #If your system doesn't have GET, comment out the two lines above. #Then uncomment the following two lines. #lynx -dump http://lists.webjunction.org/libweb/mirrors/libweb.tar | \ # tar xf -
This was suggested to me as a more Linux-friendly script:
#!/usr/bin/bash cd /path/to/parent/directory wget http://lists.webjunction.org/libweb/mirrors/libweb.tar | \ tar xf - rm -f libweb.tar
Change the directory name, and you’re ready to go.
My apologies, but I am not able to offer the mirror via rsync or other distribution methods.