]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/viewdocs.py
Added missing includes
[wxWidgets.git] / wxPython / distrib / viewdocs.py
CommitLineData
1e4a197e
RD
1#!/usr/bin/env python
2#---------------------------------------------------------------------------
3
4import sys, os, glob
f93cfdc3
RD
5import wx
6from wx.tools import helpviewer
1e4a197e
RD
7
8
9# Figure out the path where this app is located
10if __name__ == '__main__':
11 basePath = os.path.dirname(sys.argv[0])
12else:
13 basePath = os.path.dirname(__file__)
ed5f4c78
RD
14if not basePath:
15 basePath = '.'
16
1e4a197e 17
f93cfdc3
RD
18# test for write access
19if os.access(basePath, os.W_OK):
1e4a197e 20
f93cfdc3
RD
21 # setup the args
22 args = ['',
1e4a197e
RD
23 '--cache='+basePath,
24 os.path.join(basePath, 'wx.zip'),
1e4a197e
RD
25 ]
26
f93cfdc3
RD
27 # add any other .zip files found
28 for file in glob.glob(os.path.join(basePath, "*.zip")):
29 if file not in args:
30 args.append(file)
1e4a197e 31
f93cfdc3
RD
32 # launch helpviewer
33 helpviewer.main(args)
34
35else:
36 app = wx.PySimpleApp()
37 dlg = wx.MessageDialog(None,
38 "The wxDocs need to be located in a directory that is writable by you. "
39 "I am unable to start the viewer in its current location.",
40 "Error!", wx.OK|wx.ICON_EXCLAMATION)
41 dlg.ShowModal()
42 dlg.Destroy()
43 app.MainLoop()
1e4a197e
RD
44
45#---------------------------------------------------------------------------
46