Changes in / [74d679d:c3866b8] in sasview


Ignore:
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    raeb018d ra97c51e  
    1212.project 
    1313.pydevproject 
     14.vagrant 
    1415build 
    1516dist 
     
    2021html 
    2122build 
    22  
     23sasview-install 
    2324docs/sphinx-docs 
    2425 
  • src/sas/guiframe/documentation_window.py

    r9afc543 r78bcf3c3  
    2626            docs_path = os.path.join(PATH_APP, "doc") 
    2727 
     28        file_path = "file:///" + docs_path + "/" + path 
     29 
    2830        if not os.path.exists(docs_path): 
    2931            logging.error("Could not find Sphinx documentation at %s \ 
    3032            -- has it been built?", docs_path) 
    31  
    3233        elif wx_supports_html2: 
    3334            # Complete HTML/CSS support! 
    3435            self.view = html.WebView.New(self) 
    35             self.view.LoadURL("file://" + docs_path + '\\' + path) 
     36            self.view.LoadURL(file_path) 
    3637            self.Show() 
    3738        else:  
     
    4041            #Red hat used at SNS for which Wx 3.0 is not available.  This 
    4142            #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) 
    4544 
    4645  
  • src/sas/perspectives/calculator/media/image_viewer_help.rst

    r1e01486 r80c84b5  
    29291) Select *Image Viewer* from the *Tool* menu on the SasView toolbar. 
    3030 
    31 2) Select a file and then click *Open*. 
     312) Select a file and then click *Open*. If the loading is successful the image  
     32   will be displayed. 
    3233 
    3334.. image:: load_image.bmp 
    34  
    35    If the loading is successful the image will be displayed. 
    3635 
    37363) 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  
    2323PyCrust has its own Help. 
    2424 
    25 *NOTE! Help() and Credits() do not work on Macs.* 
     25*NOTE! The Help() and Credits() calls do not work on Macs.* 
    2626 
    2727.. ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ 
Note: See TracChangeset for help on using the changeset viewer.