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