Changeset 78bcf3c3 in sasview


Ignore:
Timestamp:
Feb 19, 2015 10:20:53 AM (9 years ago)
Author:
Peter Parker
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
66f21cd
Parents:
96032b3
git-author:
Peter Parker <peter.parker@…> (02/19/15 10:19:55)
git-committer:
Peter Parker <peter.parker@…> (02/19/15 10:20:53)
Message:

Fix docs on Mac.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/guiframe/documentation_window.py

    r573e7034 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  
Note: See TracChangeset for help on using the changeset viewer.