Changes in / [c3866b8:74d679d] in sasview


Ignore:
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    ra97c51e raeb018d  
    1212.project 
    1313.pydevproject 
    14 .vagrant 
    1514build 
    1615dist 
     
    2120html 
    2221build 
    23 sasview-install 
     22 
    2423docs/sphinx-docs 
    2524 
  • src/sas/guiframe/documentation_window.py

    r78bcf3c3 r9afc543  
    2626            docs_path = os.path.join(PATH_APP, "doc") 
    2727 
    28         file_path = "file:///" + docs_path + "/" + path 
    29  
    3028        if not os.path.exists(docs_path): 
    3129            logging.error("Could not find Sphinx documentation at %s \ 
    3230            -- has it been built?", docs_path) 
     31 
    3332        elif wx_supports_html2: 
    3433            # Complete HTML/CSS support! 
    3534            self.view = html.WebView.New(self) 
    36             self.view.LoadURL(file_path) 
     35            self.view.LoadURL("file://" + docs_path + '\\' + path) 
    3736            self.Show() 
    3837        else:  
     
    4140            #Red hat used at SNS for which Wx 3.0 is not available.  This 
    4241            #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) 
    4445 
    4546  
  • src/sas/perspectives/calculator/media/image_viewer_help.rst

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