1 | import os |
---|
2 | import logging |
---|
3 | import wx |
---|
4 | import webbrowser |
---|
5 | import urllib |
---|
6 | |
---|
7 | wx_supports_html2 = True |
---|
8 | try: |
---|
9 | import wx.html2 as html |
---|
10 | except: |
---|
11 | wx_supports_html2 = False |
---|
12 | |
---|
13 | from gui_manager import get_app_dir |
---|
14 | |
---|
15 | |
---|
16 | class DocumentationWindow(wx.Frame): |
---|
17 | def __init__(self, parent, id, path, url_instruction, title, size=(850, 540)): |
---|
18 | wx.Frame.__init__(self, parent, id, title, size=size) |
---|
19 | |
---|
20 | SPHINX_DOC_ENV = "SASVIEW_DOC_PATH" |
---|
21 | if SPHINX_DOC_ENV in os.environ: |
---|
22 | docs_path = os.path.join(os.environ[SPHINX_DOC_ENV]) |
---|
23 | else: |
---|
24 | # For the installer, docs are in a top-level directory. We're not |
---|
25 | # bothering to worry about docs when running using the old |
---|
26 | # (non - run.py) way. |
---|
27 | docs_path = os.path.join(get_app_dir(), "doc") |
---|
28 | |
---|
29 | file_path = os.path.join(docs_path, path) |
---|
30 | url = "file:///" + urllib.quote(file_path,'\:')+ url_instruction |
---|
31 | |
---|
32 | if not os.path.exists(file_path): |
---|
33 | logging.error("Could not find Sphinx documentation at %s \ |
---|
34 | -- has it been built?", file_path) |
---|
35 | elif wx_supports_html2: |
---|
36 | # Complete HTML/CSS support! |
---|
37 | self.view = html.WebView.New(self) |
---|
38 | self.view.LoadURL(url) |
---|
39 | self.Show() |
---|
40 | else: |
---|
41 | logging.error("No html2 support, popping up a web browser") |
---|
42 | #For cases that do not build against current version dependency |
---|
43 | # Wx 3.0 we provide a webbrowser call - this is particularly for |
---|
44 | #Red hat used at SNS for which Wx 3.0 is not available. This |
---|
45 | #does not deal with issue of math in docs of course. |
---|
46 | webbrowser.open_new_tab(url) |
---|
47 | |
---|
48 | def main(): |
---|
49 | app = wx.App() |
---|
50 | DocumentationWindow(None, -1, "index.html", "", "Documentation",) |
---|
51 | app.MainLoop() |
---|
52 | |
---|
53 | if __name__ == '__main__': |
---|
54 | main() |
---|