root/branches/mk/support/generate_docs.sh
| Revision 121, 347 bytes (checked in by mk, 6 years ago) |
|---|
| Line | |
|---|---|
| 1 | #!/bin/sh |
| 2 | |
| 3 | PATH=$PATH:/usr/bin:/usr/local/bin |
| 4 | |
| 5 | # Generate documentation for Cheesecake. |
| 6 | epydoc \ |
| 7 | --html \ |
| 8 | --verbose \ |
| 9 | --docformat restructuredtext \ |
| 10 | --name Cheesecake \ |
| 11 | --url http://pycheesecake.org \ |
| 12 | -o $1/docs/ \ |
| 13 | cheesecake/ |
| 14 | |
| 15 | # Give read permissions so that web server can read generated files. |
| 16 | chmod 755 $1/docs/ -R |
Note: See TracBrowser for help on using the browser.
