Changes in / [5e326a6:83eff66] in sasview
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/local_config.py
r3a39c2e rf53cd30 7 7 import sas.sasview 8 8 import logging 9 from sas.guiframe.config import _do_acknowledge 9 10 10 11 # Version of the application … … 29 30 # About box info 30 31 _do_aboutbox = True 32 _do_acknowledge = True 31 33 _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 ''' 32 46 _acknowledgement = \ 33 47 '''This work originally developed as part of the DANSE project funded by the NSF -
src/sas/guiframe/config.py
rfd5ac0d rf53cd30 26 26 # About box info 27 27 _do_aboutbox = True 28 _do_acknowledge = True 28 29 _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 ''' 29 42 _acknowledgement = \ 30 43 '''This software was developed by the University of Tennessee as part of the -
src/sas/guiframe/gui_manager.py
r8729965 rf53cd30 1351 1351 wx.EVT_MENU(self, id, self._onTutorial) 1352 1352 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 1353 1358 if config._do_aboutbox: 1354 1359 self._help_menu.AppendSeparator() … … 2098 2103 self.SetStatusText(msg) 2099 2104 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 2100 2117 def _onAbout(self, evt): 2101 2118 """
Note: See TracChangeset
for help on using the changeset viewer.