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