[jQuery] New latest urls

[jQuery] New latest urls

John threw down some goodness on #jquery today. Two brand new URLs
for our enjoyment:
Raw development version. Use at your own risk:
http://jquery.com/src/dev/
Latest Release, uncompressed, perfect for debugging:
http://jquery.com/src/debug/
And the original compressed version, now derived from the
uncompressed release:
http://jquery.com/src/latest/
And my meager contribution... a handy little script for snagging
local copies:
#!/bin/bash
WHERE=.
v=$1;
v=${v##--};
v=${v##-};
while [ -z "$URL" ]; do
case "$v" in
latest|debug|dev)
URL="http://jquery.com/src/$v/";
;;
*)
echo "Whatchu want?";
echo " \"latest\" -- latest release (compressed)";
echo " \"debug\" -- latest release (uncompressed)";
echo " \"dev\" -- development release";
echo "";
read -p "> " v;
;;
esac
done
curl $URL > $WHERE/jquery.js
Corey
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/




































    • Topic Participants

    • cj