Changeset ed94228 in sasview


Ignore:
Timestamp:
Aug 17, 2011 6:11:20 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
c648414
Parents:
1c153e9
Message:

fixed some conflicting w/ gui-updates

Location:
calculatorview
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • calculatorview/local_config.py

    rcda8c34 red94228  
    3737_license = "mailto:sansdanse@gmail.com" 
    3838 
    39 _nsf_logo = "images/nsf_logo.png" 
    40 _danse_logo = "images/danse_logo.png" 
    41 _inst_logo = "images/utlogo.gif" 
     39_nsf_logo = "images/icons/nsf_logo.png" 
     40_danse_logo = "images/icons/danse_logo.png" 
     41_inst_logo = "images/icons/utlogo.gif" 
    4242_nsf_url = "http://www.nsf.gov" 
    4343_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html" 
    4444_inst_url = "http://www.utk.edu" 
    45 _corner_image = "images/angles_flat.png" 
    46 _welcome_image = "images/SVwelcome.png" 
     45_corner_image = "images/icons/angles_flat.png" 
     46_welcome_image = "images/icons/SVwelcome.png" 
    4747_copyright = "(c) 2009, University of Tennessee" 
    4848 
     
    5050#edit the list of file state your plugin can read 
    5151APPLICATION_WLIST = '' 
    52 APPLICATION_STATE_EXTENSION = '' 
     52APPLICATION_STATE_EXTENSION = None 
    5353GUIFRAME_WIDTH = 300 
    5454GUIFRAME_HEIGHT = 200 
     
    5959DATAPANEL_WIDTH = 235 
    6060DATAPANEL_HEIGHT = 700 
    61 SPLASH_SCREEN_PATH = os.path.join("images","SVwelcome_mini.png") 
     61SPLASH_SCREEN_PATH = os.path.join("images","icons","SVwelcome_mini.png") 
    6262TUTORIAL_PATH = os.path.join("media","Tutorial.pdf") 
    6363DEFAULT_STYLE = GUIFRAME.CALCULATOR_ON 
     
    6767WELCOME_PANEL_ON  = False 
    6868CLEANUP_PLOT = False 
    69 SetupIconFile_win = os.path.join("images", "ball.ico") 
    70 SetupIconFile_mac = os.path.join("images", "ball.icns") 
     69SetupIconFile_win = os.path.join("images","icons", "ball.ico") 
     70SetupIconFile_mac = os.path.join("images","icons", "ball.icns") 
    7171DefaultGroupName = "DANSE" 
    7272OutputBaseFilename = "setupSansViewTool" 
  • calculatorview/setup_exe.py

    rcda8c34 red94228  
    107107if os.path.isfile(f): 
    108108    data_files.append(('.', [f])) 
    109  
     109f = 'local_config.py' 
     110if os.path.isfile(f): 
     111    data_files.append(('.', [f])) 
    110112# Copying the HTML help docs 
    111113path = cal.get_data_path('media') 
Note: See TracChangeset for help on using the changeset viewer.