The viewdocs script can now find additional .zip books automatically.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18367 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-12-20 06:24:14 +00:00
parent eb6db0e4b8
commit 18cb97fb87
2 changed files with 11 additions and 4 deletions

View File

@@ -8,9 +8,10 @@ viewdocs.py script located in this directory and you're all set.
PYTHONPATH.) PYTHONPATH.)
You can also add other HTML books to be displayed by the viewer simply You can also add other HTML books to be displayed by the viewer simply
by dropping their .zip file here and tweaking viewdocs.py. The zip by dropping their .zip file here, viewdocs.py will find them
file just needs to contain a .hhp file that defines the contents of automatically and add them to the list. The zip file just needs to
the book. See the docs on wxHtmlHelpController for details. contain a .hhp file that defines the contents of the book. See the
docs on wxHtmlHelpController for details.
If you'd still ike to view these docs in your regular browser you can If you'd still ike to view these docs in your regular browser you can
simply unzip each of the books into their own directory. simply unzip each of the books into their own directory.

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
import sys, os import sys, os, glob
from wxPython.tools import helpviewer from wxPython.tools import helpviewer
@@ -19,7 +19,13 @@ args = ['',
os.path.join(basePath, 'ogl.zip'), os.path.join(basePath, 'ogl.zip'),
] ]
# add any other .zip files found
for file in glob.glob(os.path.join(basePath, "*.zip")):
if file not in args:
args.append(file)
# launch helpviewer # launch helpviewer
helpviewer.main(args) helpviewer.main(args)
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------