Changes in src/sas/sasgui/guiframe/config.py [a1b8fee:d908932] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/guiframe/config.py
ra1b8fee rd908932 2 2 Application settings 3 3 """ 4 from __future__ import print_function5 6 4 import time 7 5 import os … … 9 7 import sas.sasview 10 8 import logging 11 12 13 logger = logging.getLogger(__name__)14 9 15 10 # Version of the application … … 48 43 '''This work benefited from the use of the SasView application, originally developed under NSF Award DMR-0520547. SasView also contains code developed with funding from the EU Horizon 2020 programme under the SINE2020 project Grant No 654000.''' 49 44 _acknowledgement_citation = \ 50 '''M. Doucet et al. SasView Version 4.1 , Zenodo, 10.5281/zenodo.438138'''45 '''M. Doucet et al. SasView Version 4.1.2, Zenodo, 10.5281/zenodo.825675''' 51 46 52 47 _acknowledgement = \ 53 '''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.html48 '''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 and TU Delft 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: https://github.com/orgs/SasView/people 54 49 ''' 55 50 … … 62 57 63 58 icon_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "images")) 64 logg er.info("icon path: %s" % icon_path)59 logging.info("icon path: %s" % icon_path) 65 60 media_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "media")) 66 61 test_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "test")) … … 88 83 _ansto_url = "http://www.ansto.gov.au/" 89 84 _tudelft_url = "http://www.tnw.tudelft.nl/en/cooperation/facilities/reactor-instituut-delft/" 90 _dls_url = "http://www.diamond.ac.uk/"91 85 _danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html" 92 86 _inst_url = "http://www.utk.edu" 93 87 _corner_image = os.path.join(icon_path, "angles_flat.png") 94 88 _welcome_image = os.path.join(icon_path, "SVwelcome.png") 95 _copyright = "(c) 2009 - 2017, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO , TU Delft, and DLS"89 _copyright = "(c) 2009 - 2017, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO and TU Delft" 96 90 marketplace_url = "http://marketplace.sasview.org/" 97 91 … … 152 146 :TODO - Need method doc string 153 147 """ 154 print ("%g: %s" % (time.clock(), message))148 print "%g: %s" % (time.clock(), message) 155 149 156 150 if __EVT_DEBUG_2_FILE__:
Note: See TracChangeset
for help on using the changeset viewer.