Changeset 27b7acc in sasview for sansview


Ignore:
Timestamp:
Apr 3, 2014 5:28:51 PM (10 years ago)
Author:
butler
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:
bbd97e5
Parents:
34dbaf4
Message:

converted stored category file from pickle to json and a bit of cleanup

Location:
sansview
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • sansview/installer.iss

    r386b313 r27b7acc  
    7373Source: "dist\plugin_models\*"; DestDir: "{userdesktop}\..\.sasview\plugin_models";     Flags: recursesubdirs createallsubdirs 
    7474Source: "dist\config\custom_config.py"; DestDir: "{userdesktop}\..\.sasview\config";    Flags: recursesubdirs createallsubdirs 
    75 Source: "dist\default_categories.p";    DestDir: "{userdesktop}\..\.sasview";   DestName: "serialized_cat.p"; 
     75Source: "dist\default_categories.json";    DestDir: "{userdesktop}\..\.sasview";        DestName: "serialized_cat.json"; 
    7676;       NOTE: Don't use "Flags: ignoreversion" on any shared system files 
    7777 
  • sansview/installer_generator.py

    rd73a274 r27b7acc  
    201201    msg += """Source: "dist\config\custom_config.py";\tDestDir: "{userdesktop}\..\.sasview\config";\t"""  
    202202    msg += """Flags: recursesubdirs createallsubdirs\n""" 
    203     msg += """Source: "dist\default_categories.p";    DestDir: "{userdesktop}\..\.sasview";\t"""  
    204     msg += """DestName: "serialized_cat.p";\n""" 
     203    msg += """Source: "dist\default_categories.json";    DestDir: "{userdesktop}\..\.sasview";\t"""  
     204    msg += """DestName: "serialized_cat.json";\n""" 
    205205    msg += """;\tNOTE: Don't use "Flags: ignoreversion" on any shared system files""" 
    206206    return msg 
  • sansview/setup_exe.py

    r2f2d9d0 r27b7acc  
    271271    data_files.append(('.', [f])) 
    272272 
    273 f = 'default_categories.p' 
     273f = 'default_categories.json' 
    274274if os.path.isfile(f): 
    275275    data_files.append(('.', [f])) 
  • sansview/setup_mac.py

    r397b4e7 r27b7acc  
    5555APP = ['sansview.py'] 
    5656DATA_FILES += ['images','test','media', 'custom_config.py', 'local_config.py', 
    57                'default_categories.p'] 
     57               'default_categories.json'] 
    5858if os.path.isfile("BUILD_NUMBER"): 
    5959    DATA_FILES.append("BUILD_NUMBER") 
Note: See TracChangeset for help on using the changeset viewer.