Ticket #1248: update.sh
| File update.sh, 295 bytes (added by , 20 years ago) |
|---|
| Line | |
|---|---|
| 1 | #!/bin/sh |
| 2 | cd /var/www/djangoapi/svn |
| 3 | for 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/ |
| 8 | done; |