Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasview/local_config.py

    r0ea31ca r5846bb5  
    1212__version__ = sas.sasview.__version__ 
    1313__build__ = sas.sasview.__build__ 
    14 __download_page__ = 'http://sourceforge.net/projects/sasview/files/' 
    15 __update_URL__ = ['svn.code.sf.net',  
    16                   '/p/sasview/code/trunk/sasview.latestversion'] 
     14__download_page__ = 'https://github.com/SasView/sasview/releases' 
     15__update_URL__ = ['raw.githubusercontent.com', 
     16                  '/SasView/sasview/master/sasview.latestversion'] 
    1717 
    1818 
     
    2424 
    2525# Debug message should be written to a file? 
    26 __EVT_DEBUG_2_FILE__   = False 
     26__EVT_DEBUG_2_FILE__ = False 
    2727__EVT_DEBUG_FILENAME__ = "debug.log" 
    2828 
     
    3939'''Reference the following website: http://www.sasview.org''' 
    4040_acknowledgement_preamble_bullet3 =\ 
    41 '''Send us your reference for our records: sansdanse@gmail.com''' 
     41'''Reference the model you used if appropriate (see documentation for refs)''' 
     42_acknowledgement_preamble_bullet4 =\ 
     43'''Send us your reference for our records: developers@sasview.org''' 
    4244_acknowledgement_publications = \ 
    43 '''This work benefited from the use of the SasView application, originally  
     45'''This work benefited from the use of the SasView application, originally 
    4446developed under NSF award DMR-0520547. 
    4547''' 
    4648_acknowledgement =  \ 
    4749'''This work originally developed as part of the DANSE project funded by the NSF 
    48 under grant DMR-0520547, and currently maintained by NIST, UMD, ORNL, ISIS, ESS  
     50under grant DMR-0520547, and currently maintained by NIST, UMD, ORNL, ISIS, ESS 
    4951and ILL. 
    5052 
     
    6062logging.info("icon path: %s" % icon_path) 
    6163media_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "media")) 
    62 test_path =  os.path.abspath(os.path.join(os.path.dirname(__file__), "test")) 
     64test_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "test")) 
    6365 
    6466_nist_logo = os.path.join(icon_path, "nist_logo.png") 
     
    9294PLUGIN_STATE_EXTENSIONS = ['.fitv', '.inv', '.prv'] 
    9395PLUGINS_WLIST = ['Fitting files (*.fitv)|*.fitv', 
    94                   'Invariant files (*.inv)|*.inv', 
    95                   'P(r) files (*.prv)|*.prv'] 
     96                 'Invariant files (*.inv)|*.inv', 
     97                 'P(r) files (*.prv)|*.prv'] 
    9698PLOPANEL_WIDTH = 415 
    9799PLOPANEL_HEIGTH = 370 
    98100DATAPANEL_WIDTH = 235 
    99101DATAPANEL_HEIGHT = 700 
    100 SPLASH_SCREEN_PATH = os.path.join(icon_path,"SVwelcome_mini.png") 
    101 TUTORIAL_PATH = os.path.join(media_path,"Tutorial.pdf") 
     102SPLASH_SCREEN_PATH = os.path.join(icon_path, "SVwelcome_mini.png") 
     103TUTORIAL_PATH = os.path.join(media_path, "Tutorial.pdf") 
    102104DEFAULT_STYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.MANAGER_ON\ 
    103105                    |GUIFRAME.CALCULATOR_ON|GUIFRAME.TOOLBAR_ON 
     
    105107SPLASH_SCREEN_HEIGHT = 366 
    106108SS_MAX_DISPLAY_TIME = 2000 
    107 WELCOME_PANEL_ON  = True 
     109WELCOME_PANEL_ON = True 
    108110WELCOME_PANEL_SHOW = False 
    109111CLEANUP_PLOT = False 
     
    131133def printEVT(message): 
    132134    if __EVT_DEBUG__: 
     135        """ 
     136        :TODO - Need method doc string 
     137        """ 
    133138        print "%g:  %s" % (time.clock(), message) 
    134          
     139 
    135140        if __EVT_DEBUG_2_FILE__: 
    136141            out = open(__EVT_DEBUG_FILENAME__, 'a') 
    137142            out.write("%10g:  %s\n" % (time.clock(), message)) 
    138143            out.close() 
    139              
Note: See TracChangeset for help on using the changeset viewer.