Ignore:
File:
1 edited

Legend:

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

    r1779e72 r463e7ffc  
    77import sas.sasview 
    88import logging 
     9 
     10 
     11logger = logging.getLogger(__name__) 
     12 
    913 
    1014# Version of the application 
     
    4650 
    4751_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, 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: https://github.com/orgs/SasView/people 
     52'''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 
    4953''' 
    5054 
     
    5761 
    5862icon_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "images")) 
    59 logging.info("icon path: %s" % icon_path) 
     63logger.info("icon path: %s" % icon_path) 
    6064media_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "media")) 
    6165test_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "test")) 
     
    8387_ansto_url = "http://www.ansto.gov.au/" 
    8488_tudelft_url = "http://www.tnw.tudelft.nl/en/cooperation/facilities/reactor-instituut-delft/" 
    85 _dls_url = "http://www.diamond.ac.uk/" 
    8689_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html" 
    8790_inst_url = "http://www.utk.edu" 
    8891_corner_image = os.path.join(icon_path, "angles_flat.png") 
    8992_welcome_image = os.path.join(icon_path, "SVwelcome.png") 
    90 _copyright = "(c) 2009 - 2017, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft, and DLS" 
     93_copyright = "(c) 2009 - 2017, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO and TU Delft" 
    9194marketplace_url = "http://marketplace.sasview.org/" 
    9295 
Note: See TracChangeset for help on using the changeset viewer.