Changeset ed94228 in sasview
- Timestamp:
- Aug 17, 2011 6:11:20 PM (13 years ago)
- 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
- Location:
- calculatorview
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
calculatorview/local_config.py
rcda8c34 red94228 37 37 _license = "mailto:sansdanse@gmail.com" 38 38 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" 42 42 _nsf_url = "http://www.nsf.gov" 43 43 _danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html" 44 44 _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" 47 47 _copyright = "(c) 2009, University of Tennessee" 48 48 … … 50 50 #edit the list of file state your plugin can read 51 51 APPLICATION_WLIST = '' 52 APPLICATION_STATE_EXTENSION = ''52 APPLICATION_STATE_EXTENSION = None 53 53 GUIFRAME_WIDTH = 300 54 54 GUIFRAME_HEIGHT = 200 … … 59 59 DATAPANEL_WIDTH = 235 60 60 DATAPANEL_HEIGHT = 700 61 SPLASH_SCREEN_PATH = os.path.join("images"," SVwelcome_mini.png")61 SPLASH_SCREEN_PATH = os.path.join("images","icons","SVwelcome_mini.png") 62 62 TUTORIAL_PATH = os.path.join("media","Tutorial.pdf") 63 63 DEFAULT_STYLE = GUIFRAME.CALCULATOR_ON … … 67 67 WELCOME_PANEL_ON = False 68 68 CLEANUP_PLOT = False 69 SetupIconFile_win = os.path.join("images", "ball.ico")70 SetupIconFile_mac = os.path.join("images", "ball.icns")69 SetupIconFile_win = os.path.join("images","icons", "ball.ico") 70 SetupIconFile_mac = os.path.join("images","icons", "ball.icns") 71 71 DefaultGroupName = "DANSE" 72 72 OutputBaseFilename = "setupSansViewTool" -
calculatorview/setup_exe.py
rcda8c34 red94228 107 107 if os.path.isfile(f): 108 108 data_files.append(('.', [f])) 109 109 f = 'local_config.py' 110 if os.path.isfile(f): 111 data_files.append(('.', [f])) 110 112 # Copying the HTML help docs 111 113 path = cal.get_data_path('media')
Note: See TracChangeset
for help on using the changeset viewer.