source: sasview/sansview/local_config.py @ 42c974f

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 42c974f was 7c75ad53, checked in by Gervaise Alina <gervyh@…>, 13 years ago

change version number for monthly build

  • Property mode set to 100644
File size: 3.0 KB
RevLine 
[d89f09b]1"""
2    Application settings
3"""
4import time
[68c53a4]5import os
6from sans.guiframe.gui_style import GUIFRAME
[d89f09b]7# Version of the application
[2dbb681]8__appname__ = "SansView"
[7c75ad53]9__version__ = '1.9.2dev_AUG'
[d89f09b]10__download_page__ = 'http://danse.chem.utk.edu'
[2bca186]11__update_URL__ = 'http://danse.chem.utk.edu/sansview_version.php'
[d89f09b]12
13
14# Debug message flag
[0686c4d6]15__EVT_DEBUG__ = False
[d89f09b]16
17# Flag for automated testing
18__TEST__ = False
19
20# Debug message should be written to a file?
21__EVT_DEBUG_2_FILE__   = False
22__EVT_DEBUG_FILENAME__ = "debug.log"
23
24# About box info
[60c7011]25_do_aboutbox = True
26_do_tutorial = True
[d89f09b]27_acknowledgement =  \
28'''This software was developed by the University of Tennessee as part of the
29Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
30project funded by the US National Science Foundation.
31
32'''
33_homepage = "http://danse.chem.utk.edu"
34_download = "http://danse.chem.utk.edu/sansview.html"
35_authors = []
36_paper = "http://danse.us/trac/sans/newticket"
37_license = "mailto:sansdanse@gmail.com"
38
39_nsf_logo = "images/nsf_logo.png"
40_danse_logo = "images/danse_logo.png"
41_inst_logo = "images/utlogo.gif"
42_nsf_url = "http://www.nsf.gov"
43_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html"
44_inst_url = "http://www.utk.edu"
45_corner_image = "images/angles_flat.png"
[ae61fa5]46_welcome_image = "images/SVwelcome.png"
[f04dc30]47_copyright = "(c) 2009, University of Tennessee"
[dd1718e]48
49
[68c53a4]50#edit the list of file state your plugin can read
[dd1718e]51APPLICATION_WLIST = 'SansView files (*.svs)|*.svs'
[68c53a4]52APPLICATION_STATE_EXTENSION = '.svs'
[3b792e1]53GUIFRAME_WIDTH = 1150
[e0e2c44f]54GUIFRAME_HEIGHT = 840
[a9e489c]55PLUGIN_STATE_EXTENSIONS = ['.fitv', '.inv', '.prv']
56PLUGINS_WLIST = ['Fitting files (*.fitv)|*.fitv',
57                  'Invariant files (*.inv)|*.inv',
58                  'P(r) files (*.prv)|*.prv']
[0c26793]59PLOPANEL_WIDTH = 415
60PLOPANEL_HEIGTH = 370
[adf44c2]61DATAPANEL_WIDTH = 235
62DATAPANEL_HEIGHT = 700
[e0e2c44f]63SPLASH_SCREEN_PATH = os.path.join("images","SVwelcome_mini.png")
[bc7bc839]64TUTORIAL_PATH = os.path.join("media","Tutorial.pdf")
[34b9813]65DEFAULT_STYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.MANAGER_ON\
66                    |GUIFRAME.CALCULATOR_ON|GUIFRAME.TOOLBAR_ON
[e0e2c44f]67SPLASH_SCREEN_WIDTH = 512
68SPLASH_SCREEN_HEIGHT = 366
[7f291a3]69SS_MAX_DISPLAY_TIME = 6000 #6 sec
[adf44c2]70WELCOME_PANEL_SHOW = False
[f2d9e76]71CLEANUP_PLOT = False
[83a0940]72# OPEN and SAVE project menu
[ad01b7c4]73OPEN_SAVE_PROJECT_MENU = True
[83a0940]74#VIEW MENU
75VIEW_MENU = True
76#EDIT MENU
77EDIT_MENU = True
[e52010a]78SetupIconFile_win = os.path.join("images", "ball.ico")
79SetupIconFile_mac = os.path.join("images", "ball.icns")
[b0e8beb]80DefaultGroupName = "DANSE"
81OutputBaseFilename = "setupSansView"
[a4ffc36]82DATAPANEL_WIDTH = 235
83FIXED_PANEL = True
84DATALOADER_SHOW = True
85CLEANUP_PLOT = False
86WELCOME_PANEL_SHOW = False
87#Show or hide toolbar at the start up
88TOOLBAR_SHOW = True
89# set a default perspective
90DEFAULT_PERSPECTIVE = 'None'
[d89f09b]91
92def printEVT(message):
93    if __EVT_DEBUG__:
94        print "%g%s" % (time.clock(), message)
95       
96        if __EVT_DEBUG_2_FILE__:
97            out = open(__EVT_DEBUG_FILENAME__, 'a')
98            out.write("%10g%s\n" % (time.clock(), message))
99            out.close()
100           
Note: See TracBrowser for help on using the repository browser.