Changeset ca6481c in sasview


Ignore:
Timestamp:
Dec 15, 2011 9:21:19 AM (12 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
8ca5890
Parents:
96814e1
Message:

Re #3 Removing plugin models from sansview app (now in fitting).

Files:
3 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • sansview/sansview.py

    r5e491e6 rca6481c  
    2828import logging 
    2929 
    30 def run(): 
     30def run_old(): 
    3131    """ 
    3232        Run function for linux/OSX installations 
     
    3535    os.system("cd %s;python sansview.py" % module_path) 
    3636 
     37def run(): 
     38    from multiprocessing import freeze_support 
     39    freeze_support() 
     40    sansview = SansView() 
     41         
    3742class SansViewApp(gui_manager.ViewApp): 
    3843    """ 
  • sansview/setup_exe.py

    r762984a rca6481c  
    177177path = os.getcwd() 
    178178 
    179 plugins_dir = os.path.join(path, "plugins") 
     179#plugins_dir = os.path.join(path, "plugins") 
    180180media_dir = os.path.join(path, "media") 
    181181images_dir = os.path.join(path, "images") 
     
    236236         
    237237# Copying the sample data user data 
    238 for f in findall(plugins_dir): 
    239     if os.path.split(f)[0].count('.svn')==0: 
    240         data_files.append(('plugins', [f])) 
     238#for f in findall(plugins_dir): 
     239#    if os.path.split(f)[0].count('.svn')==0: 
     240#        data_files.append(('plugins', [f])) 
    241241         
    242242if py26MSdll != None: 
  • sansview/setup_mac.py

    r6d52ff44 rca6481c  
    5454 
    5555APP = ['sansview.py'] 
    56 DATA_FILES += ['images','test','plugins','media', 'custom_config.py', 'local_config.py'] 
     56#DATA_FILES += ['images','test','plugins','media', 'custom_config.py', 'local_config.py'] 
     57DATA_FILES += ['images','test','media', 'custom_config.py', 'local_config.py'] 
    5758# locate file extensions 
    5859def find_extension(): 
  • setup.py

    r5d75d65a rca6481c  
    232232# SansView 
    233233package_dir["sans.sansview"] = "sansview" 
    234 package_data['sans.sansview'] = ['images/*', 'media/*', 'plugins/*', 'test/*'] 
     234#package_data['sans.sansview'] = ['images/*', 'media/*', 'plugins/*', 'test/*'] 
     235package_data['sans.sansview'] = ['images/*', 'media/*', 'test/*'] 
    235236packages.append("sans.sansview") 
    236237 
Note: See TracChangeset for help on using the changeset viewer.