source: sasview/sansview/local_config.py @ a0d56d5

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since a0d56d5 was ae61fa5, checked in by Jae Cho <jhjcho@…>, 15 years ago

added welcome image config

  • Property mode set to 100644
File size: 1.6 KB
Line 
1"""
2    Application settings
3"""
4import time
5
6# Version of the application
7#__appname__ = "PrView"
8__appname__ = "SansView"
9__version__ = '0.1.1'
10__download_page__ = 'http://danse.chem.utk.edu'
11
12
13# Debug message flag
14__EVT_DEBUG__ = True
15
16# Flag for automated testing
17__TEST__ = False
18
19# Debug message should be written to a file?
20__EVT_DEBUG_2_FILE__   = False
21__EVT_DEBUG_FILENAME__ = "debug.log"
22
23# About box info
24_do_aboutbox=True
25_acknowledgement =  \
26'''This software was developed by the University of Tennessee as part of the
27Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
28project funded by the US National Science Foundation.
29
30'''
31_homepage = "http://danse.chem.utk.edu"
32_download = "http://danse.chem.utk.edu/sansview.html"
33_authors = []
34_paper = "http://danse.us/trac/sans/newticket"
35_license = "mailto:sansdanse@gmail.com"
36
37_nsf_logo = "images/nsf_logo.png"
38_danse_logo = "images/danse_logo.png"
39_inst_logo = "images/utlogo.gif"
40_nsf_url = "http://www.nsf.gov"
41_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html"
42_inst_url = "http://www.utk.edu"
43_corner_image = "images/angles_flat.png"
44_welcome_image = "images/SVwelcome.png"
45_copyright = "(c) 2008, University of Tennessee"
46
47import wx.lib.newevent
48(StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent()
49
50def printEVT(message):
51    if __EVT_DEBUG__:
52        print "%g%s" % (time.clock(), message)
53       
54        if __EVT_DEBUG_2_FILE__:
55            out = open(__EVT_DEBUG_FILENAME__, 'a')
56            out.write("%10g%s\n" % (time.clock(), message))
57            out.close()
58           
Note: See TracBrowser for help on using the repository browser.