SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Checking out modules from CVS
Checking out a module from CVS
Rather than just downloading a tarball, you can use CVS to checkout modules from http://cvs.drupal.org. Navigate to the folder where you want to store the module and check out a the module:
cvs -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib \
checkout -d modulename -r revisiontag contributions/modules/modulename
So if you want to check out, for example, cck-5.x-1.7.tar.gz, the command would be:
cvs -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib \
checkout -d cck -r DRUPAL-5--1-7 contributions/modules/cck
If you want to simplify that process, create /usr/local/bin/drupalModuleCheckout
with the contents:
#/bin/bash
cvs -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib \
checkout -d $1 -r DRUPAL-$2 contributions/modules/$1
Make it executable
chmod ugo+x /usr/local/bin/drupalModuleCheckout
You can then download a module with:
drupalModuleCheckout modulename revisiontag
- Log in to post comments