Changes in / [c99e717:501712f] in sasview
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
installers/installer_generator.py
ra0f4768 r460d3a1 9 9 import sys 10 10 import string 11 12 is_64bit = sys.maxsize > 2**3213 11 14 12 root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) … … 27 25 AppSupportURL = local_config._homepage 28 26 AppUpdatesURL = local_config._homepage 29 ArchitecturesInstallIn64BitMode = 'x64'30 27 ChangesEnvironment = 'true' 31 28 DefaultDirName = os.path.join("{pf}" , AppName+Dev) … … 346 343 TEMPLATE += "AppSupportURL=%s\n" % str(AppSupportURL) 347 344 TEMPLATE += "AppUpdatesURL=%s \n" % str(AppUpdatesURL) 348 if is_64bit:349 TEMPLATE += "ArchitecturesInstallIn64BitMode=%s \n" % str(ArchitecturesInstallIn64BitMode)350 345 TEMPLATE += "ChangesEnvironment=%s \n" % str(ChangesEnvironment) 351 346 TEMPLATE += "DefaultDirName=%s\n" % str(DefaultDirName) -
src/sas/sasgui/perspectives/fitting/basepage.py
r58a8f76 reee94bf 2812 2812 if self.model is not None: 2813 2813 name = self.formfactorbox.GetValue() 2814 _TreeLocation = 'user/models/ %s.html' % name2814 _TreeLocation = 'user/models/' + name.lower()+'.html' 2815 2815 _doc_viewer = DocumentationWindow(self, wx.ID_ANY, _TreeLocation, 2816 2816 "", name + " Help")
Note: See TracChangeset
for help on using the changeset viewer.