~ubuntu-branches/ubuntu/hardy/psycopg2/hardy

« back to all changes in this revision

Viewing changes to scripts/makedocs.py

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2006-08-09 10:28:30 UTC
  • Revision ID: james.westby@ubuntu.com-20060809102830-grac1dsp24uyqfp4
Tags: upstream-2.0.4
ImportĀ upstreamĀ versionĀ 2.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
"""Build documentation and api."""
 
3
 
 
4
import os
 
5
 
 
6
EPYDOC = "python c:/programmi/python23/scripts/epydoc.py"
 
7
PSYCOPG = "c:/programmi/python23/lib/site-packages/psycopg2"
 
8
 
 
9
os.system("python ext2html.py ../doc/extensions.rst > ../doc/extensions.html")
 
10
os.system("%s "
 
11
          "-o ../doc/api "
 
12
          "--css ../doc/api-screen.css "
 
13
          "--docformat restructuredtext " 
 
14
          "%s"
 
15
    % (EPYDOC,PSYCOPG,))