Ticket #1248: update.sh

File update.sh, 295 bytes (added by django@…, 18 years ago)

my update script to keep http://djangoapi.quamquam.org uptodate

Line 
1#!/bin/sh
2cd /var/www/djangoapi/svn
3for file in `ls`; do
4 echo "update $file"
5 svn update $file;
6 epydoc -o../html/$file $file/django --quiet --parse-only --name="Django API" --url=http://www.djangoproject.com --show-imports --css=../api.css
7 zip -9 -j -r ../html/$file.zip ../html/$file/
8done;
Back to Top