[svn r38700] Fixed paths, docs are now no longer placed in a sub dir.

--HG--
branch : trunk
This commit is contained in:
guido 2007-02-13 15:26:46 +01:00
parent b9965f8134
commit f5f46c9f3e
1 changed files with 3 additions and 4 deletions

View File

@ -21,16 +21,15 @@ def run_tests(path, envvars='', args=''):
def build_apigen_docs(targetpath, testargs=''):
run_tests(pypath,
'APIGEN_TARGET="%s/apigen" APIGEN_DOCRELPATH="../doc/"' % (
'APIGEN_TARGET="%s/apigen" APIGEN_DOCRELPATH="../"' % (
targetpath,),
testargs + ' --apigen="%s/apigen/apigen.py"' % (pypath,))
def build_docs(targetpath, testargs):
docpath = pypath.join('doc')
run_tests(docpath, '',
testargs + ' --forcegen --apigenrelpath="../apigen/"')
topath = targetpath.ensure('doc', dir=True)
docpath.copy(topath)
testargs + ' --forcegen --apigenrelpath="apigen/"')
docpath.copy(targetpath)
def build_nav(targetpath, docs=True, api=True):
pass