source: sasview/prview/local_config.py @ 200a6c5

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 200a6c5 was f1181977, checked in by Mathieu Doucet <doucetm@…>, 16 years ago

Can now add multiple additional curves, normalization now affects all added curves, acknowledgment statement added in about box.

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[4a5de6f]1"""
2    Application settings
3"""
4import time
5
6# Version of the application
7__appname__ = "PrView"
[0bae207]8__version__ = '0.2.3'
[4a5de6f]9__download_page__ = 'http://danse.chem.utk.edu'
[0bae207]10__update_URL__ = 'http://danse.chem.utk.edu/prview_version.php'
[4a5de6f]11
12
13# Debug message flag
[357b79b]14__EVT_DEBUG__ = False
[4a5de6f]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
[f1181977]30If you use DANSE applications to do scientific research that leads to publication,
31we ask that you acknowledge the use of the software with the following sentence:
32
33"This work benefited from DANSE software developed under NSF award DMR-0520547."
[4a5de6f]34'''
35_homepage = "http://danse.chem.utk.edu"
[9362f85]36_download = "http://danse.chem.utk.edu/prview.html"
[4a5de6f]37_authors = []
38_paper = "http://danse.us/trac/sans/newticket"
39_license = "mailto:sansdanse@gmail.com"
40
41_nsf_logo = "images/nsf_logo.png"
42_danse_logo = "images/danse_logo.png"
43_inst_logo = "images/utlogo.gif"
44_nsf_url = "http://www.nsf.gov"
45_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html"
46_inst_url = "http://www.utk.edu"
[357b79b]47_corner_image = "images/prview.jpg"
[4a5de6f]48_copyright = "(c) 2008, University of Tennessee"
49
50import wx.lib.newevent
51(StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent()
52
53def printEVT(message):
54    if __EVT_DEBUG__:
55        print "%g%s" % (time.clock(), message)
56       
57        if __EVT_DEBUG_2_FILE__:
58            out = open(__EVT_DEBUG_FILENAME__, 'a')
59            out.write("%10g%s\n" % (time.clock(), message))
60            out.close()
61           
Note: See TracBrowser for help on using the repository browser.