Changes in / [b85502d:9e531f2] in sasview
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/source/user/sasgui/perspectives/fitting/fitting.rst
r5f5c596 re2c22b5 1 1 .. _Fitting_Documentation: 2 2 3 Fitting Documentation 4 ============= ========3 Model Fitting 4 ============= 5 5 6 6 .. toctree:: -
docs/sphinx-docs/source/user/sasgui/perspectives/invariant/invariant_help.rst
r5f5c596 r8dcc9bc6 4 4 .. by S King, ISIS, during SasView CodeCamp-III in Feb 2015. 5 5 6 Invariant Calculation Perspective7 ===================== ============6 Invariant Calculation 7 ===================== 8 8 9 9 Description -
docs/sphinx-docs/source/user/sasgui/perspectives/pr/pr_help.rst
r5f5c596 rca5f55f 4 4 .. by S King, ISIS, during SasView CodeCamp-III in Feb 2015. 5 5 6 P(r) Inversion Perspective7 ============== ============6 P(r) Inversion 7 ============== 8 8 9 9 Description -
docs/sphinx-docs/source/user/shape-cylinder.rst
rc90bce6 r9dcd5ed 17 17 models/hollow_cylinder.rst 18 18 models/pearl_necklace.rst 19 models/pringle.rst20 19 models/stacked_disks.rst -
docs/sphinx-docs/source/user/shape-sphere.rst
re4ca2eb re565eaf 13 13 models/linear_pearls.rst 14 14 models/multi_shell.rst 15 models/onion.rst16 15 models/raspberry.rst 17 16 models/sphere.rst -
sasview/installer.iss
r50008e3 r25f223b 71 71 Source: "dist\plugin_models\*"; DestDir: "{userdesktop}\..\.sasview\plugin_models"; Flags: recursesubdirs createallsubdirs 72 72 Source: "dist\config\custom_config.py"; DestDir: "{userdesktop}\..\.sasview\config"; Flags: recursesubdirs createallsubdirs 73 Source: "dist\default_categories.json"; DestDir: "{userdesktop}\..\.sasview"; DestName: " categories.json";73 Source: "dist\default_categories.json"; DestDir: "{userdesktop}\..\.sasview"; DestName: "serialized_cat.json"; 74 74 ; NOTE: Don't use "Flags: ignoreversion" on any shared system files 75 75 -
sasview/installer_generator.py
r50008e3 rb699768 202 202 msg += """Flags: recursesubdirs createallsubdirs\n""" 203 203 msg += """Source: "dist\default_categories.json"; DestDir: "{userdesktop}\..\.sasview";\t""" 204 msg += """DestName: " categories.json";\n"""204 msg += """DestName: "serialized_cat.json";\n""" 205 205 msg += """;\tNOTE: Don't use "Flags: ignoreversion" on any shared system files""" 206 206 return msg -
setup.py
r9e531f2 r9e531f2 47 47 if os.path.isfile(f_path): 48 48 os.remove(f_path) 49 f_path = os.path.join(sas_dir, " categories.json")49 f_path = os.path.join(sas_dir, "serialized_cat.json") 50 50 if os.path.isfile(f_path): 51 51 os.remove(f_path) -
src/sas/sasgui/guiframe/CategoryInstaller.py
r50008e3 r1ca0ac0 15 15 from collections import defaultdict 16 16 17 USER_FILE = ' categories.json'17 USER_FILE = 'serialized_cat.json' 18 18 19 19 class CategoryInstaller: … … 111 111 def get_user_file(): 112 112 """ 113 returns the user data file, eg .sasview/ categories.json.json113 returns the user data file, eg .sasview/serialized_cat.json 114 114 """ 115 115 return os.path.join(CategoryInstaller._get_home_dir(), … … 129 129 """ 130 130 the main method of this class 131 makes sure categories.json exists and if not131 makes sure serialized_cat.json exists and if not 132 132 compile it and install 133 133 :param homefile: Override the default home directory
Note: See TracChangeset
for help on using the changeset viewer.