Changes in / [acdf0d1:9c7e2b8] in sasview


Ignore:
Files:
2 added
4 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • LICENSE.TXT

    rb01252e r0347c89  
    1111 
    1212THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    13  
    14 Also see https://github.com/SasView/sasview/blob/master/installers/license.txt 
  • docs/sphinx-docs/source/index.rst

    r912e645 r5a73356a  
    1010   :maxdepth: 1 
    1111 
    12    USER DOCUMENTATION <user/user> 
     12   User Documentation <user/user> 
    1313 
    14    DEVELOPER DOCUMENTATION <dev/dev> 
    15     
    16    Release Notes <user/RELEASE> 
    17     
     14   Developer Documentation <dev/dev> 
  • docs/sphinx-docs/source/user/tutorial.rst

    rbe460ce r893d852  
    2121 
    2222:download:`Simultaneous 1D Fitting in Sasview <sasview/simultaneous_1d_fitting_in_sasview_v3x_4x.pdf>` 
    23  
    24 :download:`Correlation Function Analysis in SasView <sasview/correlation_function_analysis_in_sasview_v4x.pdf>` 
  • src/sas/sasgui/guiframe/config.py

    r8ac05a5 r1efbc190  
    3333_do_aboutbox = True 
    3434_do_acknowledge = True 
    35 _do_release = True 
    3635_do_tutorial = True 
    3736_acknowledgement_preamble =\ 
     
    5049_acknowledgement_citation = \ 
    5150'''M. Doucet et al. SasView Version 4.1.2, Zenodo, 10.5281/zenodo.825675''' 
     51 
    5252_acknowledgement =  \ 
    5353'''This work was originally developed as part of the DANSE project funded by the US NSF under Award DMR-0520547,\n but is currently maintained by a collaboration between UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft, DLS, and the scattering community.\n\n SasView also contains code developed with funding from the EU Horizon 2020 programme under the SINE2020 project (Grant No 654000).\nA list of individual contributors can be found at: http://www.sasview.org/contact.html 
     
    9494_corner_image = os.path.join(icon_path, "angles_flat.png") 
    9595_welcome_image = os.path.join(icon_path, "SVwelcome.png") 
    96 _copyright = "(c) 2009 - 2018, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft, and DLS" 
     96_copyright = "(c) 2009 - 2017, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft, and DLS" 
    9797marketplace_url = "http://marketplace.sasview.org/" 
    9898 
  • src/sas/sasgui/guiframe/gui_manager.py

    r8ac05a5 r5f08251  
    12761276 
    12771277        wx_id = wx.NewId() 
    1278         self._help_menu.Append(wx_id, '&Documentation', 'Help documentation for SasView') 
     1278        self._help_menu.Append(wx_id, '&Documentation', '') 
    12791279        wx.EVT_MENU(self, wx_id, self._onSphinxDocs) 
    12801280 
     
    12831283            # Pluralised both occurences of 'Tutorial' in the line below 
    12841284            # S King, Sep 2018 
    1285             self._help_menu.Append(wx_id, '&Tutorials', 'Tutorials on how to use SasView') 
     1285            self._help_menu.Append(wx_id, '&Tutorials', 'Software tutorials') 
    12861286            wx.EVT_MENU(self, wx_id, self._onTutorial) 
    1287  
    1288         if config.marketplace_url: 
    1289             wx_id = wx.NewId() 
    1290             self._help_menu.Append(wx_id, '&Model marketplace', 'Plug-in fitting models for SasView') 
    1291             wx.EVT_MENU(self, wx_id, self._on_marketplace_click) 
    1292  
    1293         if config._do_release: 
    1294             wx_id = wx.NewId() 
    1295             self._help_menu.Append(wx_id, '&Release notes', 
    1296                                    'SasView release notes and known issues') 
    1297             wx.EVT_MENU(self, wx_id, self._onRelease) 
    12981287 
    12991288        if config._do_acknowledge: 
     
    13061295            logger.info("Doing help menu") 
    13071296            wx_id = wx.NewId() 
    1308             self._help_menu.Append(wx_id, '&About', 'Information about SasView') 
     1297            self._help_menu.Append(wx_id, '&About', 'Software information') 
    13091298            wx.EVT_MENU(self, wx_id, self._onAbout) 
     1299 
     1300        if config.marketplace_url: 
     1301            wx_id = wx.NewId() 
     1302            self._help_menu.Append(wx_id, '&Model marketplace', '') 
     1303            wx.EVT_MENU(self, wx_id, self._on_marketplace_click) 
    13101304 
    13111305        # Checking for updates 
     
    21442138            dialog = AboutBox.DialogAbout(None, -1, "") 
    21452139            dialog.ShowModal() 
    2146  
    2147     def _onRelease(self, evt): 
    2148         """ 
    2149         Pop up the release notes 
    2150  
    2151         :param evt: menu event 
    2152  
    2153         """ 
    2154         # S King, Sep 2018 
    2155  
    2156         from documentation_window import DocumentationWindow 
    2157         _TreeLocation = "user/release.html" 
    2158         DocumentationWindow(self, -1, _TreeLocation, "", 
    2159                             "SasView Documentation") 
    21602140 
    21612141    def _onTutorial(self, evt): 
  • src/sas/sasgui/perspectives/corfunc/corfunc_panel.py

    r5652efc r2a399ca  
    2020 
    2121OUTPUT_STRINGS = { 
    22     'max': "Long Period (A): ", 
     22    'max': "Long Period / 2 (A): ", 
    2323    'Lc': "Average Hard Block Thickness (A): ", 
    2424    'dtr': "Average Interface Thickness (A): ", 
  • src/sas/sasgui/perspectives/corfunc/corfunc_state.py

    r5652efc r1fa4f736  
    2828# List of output parameters, used by __str__ 
    2929output_list = [ 
    30     ['max', "Long Period (A): "], 
     30    ['max', "Long Period / 2 (A): "], 
    3131    ['Lc', "Average Hard Block Thickness (A): "], 
    3232    ['dtr', "Average Interface Thickness (A): "], 
  • src/sas/sasgui/perspectives/corfunc/media/fdr-pdfs.rst

    r577460c r959eb01  
    77 
    88:download:`Fibre_Diffraction_Review_1994_3_25-29.pdf <Fibre_Diffraction_Review_1994_3_25-29.pdf>` 
    9  
    109:download:`Fibre_Diffraction_Review_2004_12_24.pdf <Fibre_Diffraction_Review_2004_12_24.pdf>` 
    11  
    1210:download:`Fibre_Diffraction_Review_2005_13_19-22.pdf <Fibre_Diffraction_Review_2005_13_19-22.pdf>` 
  • src/sas/sasview/local_config.py

    r8ac05a5 rb229a3b  
    3333_do_aboutbox = True 
    3434_do_acknowledge = True 
    35 _do_release = True 
    3635_do_tutorial = True 
    3736_acknowledgement_preamble =\ 
     
    5049_acknowledgement_citation = \ 
    5150'''M. Doucet et al. SasView Version 4.2, Zenodo, 10.5281/zenodo.1412041''' 
     51 
    5252_acknowledgement =  \ 
    5353'''This work was originally developed as part of the DANSE project funded by the US NSF under Award DMR-0520547,\n but is currently maintained by a collaboration between UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft, DLS, and the scattering community.\n\n SasView also contains code developed with funding from the EU Horizon 2020 programme under the SINE2020 project (Grant No 654000).\nA list of individual contributors can be found at: http://www.sasview.org/contact.html 
     
    9494_corner_image = os.path.join(icon_path, "angles_flat.png") 
    9595_welcome_image = os.path.join(icon_path, "SVwelcome.png") 
    96 _copyright = "(c) 2009 - 2018, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft, and DLS" 
     96_copyright = "(c) 2009 - 2017, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft, and DLS" 
    9797marketplace_url = "http://marketplace.sasview.org/" 
    9898 
Note: See TracChangeset for help on using the changeset viewer.