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