Check all the Checkboxes

This is a bookmarklet which will click all of the check boxes in the first form on the page: All Checked source:
javascript:for (var i=0; i < document.forms[0].elements.length; i++) { if(document.forms[0].elements[i].type == 'checkbox'){document.forms[0].elements[i].checked=true}}; return false;
		

TextMate Bundle

To get the bundle run this:
svn co http://macromates.com/svn/Bundles/trunk/Review/Bundles/PHP%20Drupal.tmbundle 
		
That will give you a folder called "PHP Drupal.tmbundle".
Put that folder inside: ~/Library/Application Support/TextMate/Bundles
Or just run:
cp -R PHP\ Drupal.tmbundle ~/Library/Application\ Support/TextMate/Bundles/
		
Then in TextMate you need to rebuild the bundles (Bundles->Bundle Editor->Reload Bundles)