Changeset 83eff66 in sasview for src/sas/guiframe
- Timestamp:
- Feb 19, 2015 4:09:00 AM (10 years ago)
- 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, 27ab091
- Parents:
- f53cd30 (diff), 5e326a6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- src/sas/guiframe
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/guiframe/media/graph_help.rst
r3fd3d5a4 r1394952 286 286 287 287 1D data can be saved in either ASCII text (.TXT) or CanSAS/SASXML (.XML) 288 formats (see 1D_Formats_). 2D data can only be saved in the NIST 2D format 289 (.DAT) (see 2D_Formats_). 288 formats (see :ref:`1D_Formats`). 289 290 2D data can only be saved in the NIST 2D format (.DAT) (see :ref:`2D_Formats`). 290 291 291 292 .. _Linear_Fit: -
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
r707c6be 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.