Changes in / [7829bb7:17e1f14] in sasview


Ignore:
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • sasview/local_config.py

    rf53cd30 r3a39c2e  
    77import sas.sasview 
    88import logging 
    9 from sas.guiframe.config import _do_acknowledge 
    109 
    1110# Version of the application 
     
    3029# About box info 
    3130_do_aboutbox = True 
    32 _do_acknowledge = True 
    3331_do_tutorial = True 
    34 _acknowledgement_preamble =\ 
    35 '''If you found this software useful to your work please remember to acknowledge  
    36 its use in your publications as suggested below and reference the SasView website:  
    37 http://www.sasview.org/index.html. Please also consider letting us know by sending us the  
    38 reference to your work. This will help us to ensure the long term support and  
    39 development of the software. 
    40 ''' 
    41 _acknowledgement_publications = \ 
    42 '''This work originally developed as part of the DANSE project funded by the NSF 
    43 under grant DMR-0520547, and currently maintained by NIST, UMD, ORNL, ISIS, ESS  
    44 and ILL. 
    45 ''' 
    4632_acknowledgement =  \ 
    4733'''This work originally developed as part of the DANSE project funded by the NSF 
  • src/sas/guiframe/config.py

    rf53cd30 rfd5ac0d  
    2626# About box info 
    2727_do_aboutbox = True 
    28 _do_acknowledge = True 
    2928_do_tutorial = True 
    30 _acknowledgement_preamble =\ 
    31 '''If you found this software useful to your work please remember to acknowledge  
    32 its use in your publications as suggested below and reference the SasView website:  
    33 http://www.sasview.org/index.html. Please also consider letting us know by sending us the  
    34 reference to your work. This will help us to ensure the long term support and  
    35 development of the software. 
    36 ''' 
    37 _acknowledgement_publications = \ 
    38 '''This work originally developed as part of the DANSE project funded by the NSF 
    39 under grant DMR-0520547, and currently maintained by NIST, UMD, ORNL, ISIS, ESS  
    40 and ILL. 
    41 ''' 
    4229_acknowledgement =  \ 
    4330'''This software was developed by the University of Tennessee as part of the 
  • src/sas/guiframe/gui_manager.py

    rf53cd30 r8729965  
    13511351            wx.EVT_MENU(self, id, self._onTutorial) 
    13521352             
    1353         if config._do_acknowledge: 
    1354             self._help_menu.AppendSeparator() 
    1355             self._help_menu.Append(id, '&Acknowledge', 'Acknowledging SasView') 
    1356             wx.EVT_MENU(self, id, self._onAcknowledge) 
    1357          
    13581353        if config._do_aboutbox: 
    13591354            self._help_menu.AppendSeparator() 
     
    21032098                self.SetStatusText(msg) 
    21042099                     
    2105     def _onAcknowledge(self, evt): 
    2106         """ 
    2107         Pop up the acknowledge dialog 
    2108          
    2109         :param evt: menu event 
    2110          
    2111         """ 
    2112         if config._do_acknowledge: 
    2113             import sas.guiframe.acknowledgebox as AcknowledgeBox 
    2114             dialog = AcknowledgeBox.DialogAcknowledge(None, -1, "") 
    2115             dialog.ShowModal() 
    2116                       
    21172100    def _onAbout(self, evt): 
    21182101        """ 
Note: See TracChangeset for help on using the changeset viewer.