[4a5de6f] | 1 | """ |
---|
| 2 | Application settings |
---|
| 3 | """ |
---|
| 4 | import 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 |
---|
| 27 | Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 28 | project funded by the US National Science Foundation. |
---|
| 29 | |
---|
[f1181977] | 30 | If you use DANSE applications to do scientific research that leads to publication, |
---|
| 31 | we 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 | |
---|
| 50 | import wx.lib.newevent |
---|
| 51 | (StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent() |
---|
| 52 | |
---|
| 53 | def 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 | |
---|