Switch the user manual to use the Sphinx documentation framework

This commit is contained in:
Kovid Goyal 2008-03-24 02:51:37 +00:00
parent a61d136d61
commit a456d99cfe
2 changed files with 4 additions and 3 deletions

View File

@ -17,4 +17,5 @@ translations :
resources:
${PYTHON} resources.py
manual:
make -C src/libprs500/manual clean html

View File

@ -116,9 +116,9 @@ def upload_user_manual():
cwd = os.getcwdu()
os.chdir('src/libprs500/manual')
try:
check_call('python make.py --validate')
check_call('make clean html')
check_call('ssh castalia rm -rf %s/\\*'%USER_MANUAL)
check_call('scp -r build/* castalia:%s'%USER_MANUAL)
check_call('scp -r .build/* castalia:%s'%USER_MANUAL)
finally:
os.chdir(cwd)