Ignore:
File:
1 edited

Legend:

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

    rd908932 ra1b8fee  
    22    Application settings 
    33""" 
     4from __future__ import print_function 
     5 
    46import time 
    57import os 
     
    79import sas.sasview 
    810import logging 
     11 
     12 
     13logger = logging.getLogger(__name__) 
    914 
    1015# Version of the application 
     
    4348'''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.''' 
    4449_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''' 
    4651 
    4752_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/people 
     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 
    4954''' 
    5055 
     
    5762 
    5863icon_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "images")) 
    59 logging.info("icon path: %s" % icon_path) 
     64logger.info("icon path: %s" % icon_path) 
    6065media_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "media")) 
    6166test_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "test")) 
     
    8388_ansto_url = "http://www.ansto.gov.au/" 
    8489_tudelft_url = "http://www.tnw.tudelft.nl/en/cooperation/facilities/reactor-instituut-delft/" 
     90_dls_url = "http://www.diamond.ac.uk/" 
    8591_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html" 
    8692_inst_url = "http://www.utk.edu" 
    8793_corner_image = os.path.join(icon_path, "angles_flat.png") 
    8894_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" 
    9096marketplace_url = "http://marketplace.sasview.org/" 
    9197 
     
    146152        :TODO - Need method doc string 
    147153        """ 
    148         print "%g:  %s" % (time.clock(), message) 
     154        print("%g:  %s" % (time.clock(), message)) 
    149155 
    150156        if __EVT_DEBUG_2_FILE__: 
Note: See TracChangeset for help on using the changeset viewer.