On 25 Nov 2005, at 23:04, James Bennett wrote:
Suggestions and corrections are welcome.
Thanks a lot James - that's some really well written documentation: clear, succinct and informative.
Just one tiny suggestion (I don't use TextDrive so I can't comment on much). You suggest downloading Django like this:
curl http://media.djangoproject.com/releases/0.90/Django-0.90.tar.gz - o Django-0.90.tar.gz
You can simplify that using the -O argument to curl (that's a capital O), which tells it to use the same filename when saving to disk:
curl -O http://media.djangoproject.com/releases/0.90/Django-0.90.tar.gz Cheers, Simon