Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/guiframe/config.py

    ra1b8fee rd908932  
    22    Application settings 
    33""" 
    4 from __future__ import print_function 
    5  
    64import time 
    75import os 
     
    97import sas.sasview 
    108import logging 
    11  
    12  
    13 logger = logging.getLogger(__name__) 
    149 
    1510# Version of the application 
     
    4843'''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.''' 
    4944_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''' 
    5146 
    5247_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.html 
     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/people 
    5449''' 
    5550 
     
    6257 
    6358icon_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "images")) 
    64 logger.info("icon path: %s" % icon_path) 
     59logging.info("icon path: %s" % icon_path) 
    6560media_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "media")) 
    6661test_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "test")) 
     
    8883_ansto_url = "http://www.ansto.gov.au/" 
    8984_tudelft_url = "http://www.tnw.tudelft.nl/en/cooperation/facilities/reactor-instituut-delft/" 
    90 _dls_url = "http://www.diamond.ac.uk/" 
    9185_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html" 
    9286_inst_url = "http://www.utk.edu" 
    9387_corner_image = os.path.join(icon_path, "angles_flat.png") 
    9488_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" 
    9690marketplace_url = "http://marketplace.sasview.org/" 
    9791 
     
    152146        :TODO - Need method doc string 
    153147        """ 
    154         print("%g:  %s" % (time.clock(), message)) 
     148        print "%g:  %s" % (time.clock(), message) 
    155149 
    156150        if __EVT_DEBUG_2_FILE__: 
Note: See TracChangeset for help on using the changeset viewer.