Changes in / [7829bb7:17e1f14] in sasview
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/local_config.py
rf53cd30 r3a39c2e 7 7 import sas.sasview 8 8 import logging 9 from sas.guiframe.config import _do_acknowledge10 9 11 10 # Version of the application … … 30 29 # About box info 31 30 _do_aboutbox = True 32 _do_acknowledge = True33 31 _do_tutorial = True 34 _acknowledgement_preamble =\35 '''If you found this software useful to your work please remember to acknowledge36 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 the38 reference to your work. This will help us to ensure the long term support and39 development of the software.40 '''41 _acknowledgement_publications = \42 '''This work originally developed as part of the DANSE project funded by the NSF43 under grant DMR-0520547, and currently maintained by NIST, UMD, ORNL, ISIS, ESS44 and ILL.45 '''46 32 _acknowledgement = \ 47 33 '''This work originally developed as part of the DANSE project funded by the NSF -
src/sas/guiframe/config.py
rf53cd30 rfd5ac0d 26 26 # About box info 27 27 _do_aboutbox = True 28 _do_acknowledge = True29 28 _do_tutorial = True 30 _acknowledgement_preamble =\31 '''If you found this software useful to your work please remember to acknowledge32 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 the34 reference to your work. This will help us to ensure the long term support and35 development of the software.36 '''37 _acknowledgement_publications = \38 '''This work originally developed as part of the DANSE project funded by the NSF39 under grant DMR-0520547, and currently maintained by NIST, UMD, ORNL, ISIS, ESS40 and ILL.41 '''42 29 _acknowledgement = \ 43 30 '''This software was developed by the University of Tennessee as part of the -
src/sas/guiframe/gui_manager.py
rf53cd30 r8729965 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 1358 1353 if config._do_aboutbox: 1359 1354 self._help_menu.AppendSeparator() … … 2103 2098 self.SetStatusText(msg) 2104 2099 2105 def _onAcknowledge(self, evt):2106 """2107 Pop up the acknowledge dialog2108 2109 :param evt: menu event2110 2111 """2112 if config._do_acknowledge:2113 import sas.guiframe.acknowledgebox as AcknowledgeBox2114 dialog = AcknowledgeBox.DialogAcknowledge(None, -1, "")2115 dialog.ShowModal()2116 2117 2100 def _onAbout(self, evt): 2118 2101 """
Note: See TracChangeset
for help on using the changeset viewer.