Changes in / [c3866b8:74d679d] in sasview
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
ra97c51e raeb018d 12 12 .project 13 13 .pydevproject 14 .vagrant15 14 build 16 15 dist … … 21 20 html 22 21 build 23 sasview-install 22 24 23 docs/sphinx-docs 25 24 -
src/sas/guiframe/documentation_window.py
r78bcf3c3 r9afc543 26 26 docs_path = os.path.join(PATH_APP, "doc") 27 27 28 file_path = "file:///" + docs_path + "/" + path29 30 28 if not os.path.exists(docs_path): 31 29 logging.error("Could not find Sphinx documentation at %s \ 32 30 -- has it been built?", docs_path) 31 33 32 elif wx_supports_html2: 34 33 # Complete HTML/CSS support! 35 34 self.view = html.WebView.New(self) 36 self.view.LoadURL( file_path)35 self.view.LoadURL("file://" + docs_path + '\\' + path) 37 36 self.Show() 38 37 else: … … 41 40 #Red hat used at SNS for which Wx 3.0 is not available. This 42 41 #does not deal with issue of math in docs of course. 43 webbrowser.open_new_tab(file_path) 42 43 webbrowser.open_new_tab("file:///" + docs_path + "/" + path) 44 print ("file:///" + docs_path + "/" + path) 44 45 45 46 -
src/sas/perspectives/calculator/media/image_viewer_help.rst
r80c84b5 r1e01486 29 29 1) Select *Image Viewer* from the *Tool* menu on the SasView toolbar. 30 30 31 2) Select a file and then click *Open*. If the loading is successful the image 32 will be displayed. 31 2) Select a file and then click *Open*. 33 32 34 33 .. image:: load_image.bmp 34 35 If the loading is successful the image will be displayed. 35 36 36 37 3) To save, print, or copy the image, or to apply a grid overlay, right-click -
src/sas/perspectives/calculator/media/python_shell_help.rst
r17d30be r77a9ddc 23 23 PyCrust has its own Help. 24 24 25 *NOTE! The Help() and Credits() callsdo not work on Macs.*25 *NOTE! Help() and Credits() do not work on Macs.* 26 26 27 27 .. ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
Note: See TracChangeset
for help on using the changeset viewer.