Changeset fd45e859 for doc/user-guide
- Timestamp:
- 2015-06-04T17:13:22Z (10 years ago)
- Branches:
- master
- Children:
- 1cef55f
- Parents:
- 81d40fe
- git-author:
- dequis <dx@…> (31-05-15 23:50:08)
- git-committer:
- dequis <dx@…> (04-06-15 17:13:22)
- Location:
- doc/user-guide
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/user-guide/Makefile
r81d40fe rfd45e859 31 31 xsltproc --xinclude --output $@ docbook.xsl $< 32 32 33 help.txt: help.xml help.xsl commands.xml misc.xmlquickstart.xml34 python genhelp.py $< $@33 help.txt: $(_SRCDIR_)help.xml $(_SRCDIR_)commands.xml $(_SRCDIR_)misc.xml $(_SRCDIR_)quickstart.xml 34 python $(_SRCDIR_)genhelp.py $< $@ 35 35 36 36 clean: -
doc/user-guide/genhelp.py
r81d40fe rfd45e859 20 20 21 21 22 import os 22 23 import re 23 24 import sys … … 222 223 return 223 224 225 # ensure that we really are in the same directory as the input file 226 os.chdir(os.path.dirname(os.path.abspath(sys.argv[1]))) 227 224 228 txt = process_file(sys.argv[1]) 225 229 open(sys.argv[2], "w").write(txt)
Note: See TracChangeset
for help on using the changeset viewer.