Changes in / [b6f9c9f:f1d48e9] in sasview


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • installers/installer_generator.py

    ra0f4768 r460d3a1  
    99import sys 
    1010import string 
    11  
    12 is_64bit = sys.maxsize > 2**32 
    1311 
    1412root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 
     
    2725AppSupportURL = local_config._homepage 
    2826AppUpdatesURL = local_config._homepage 
    29 ArchitecturesInstallIn64BitMode = 'x64' 
    3027ChangesEnvironment = 'true' 
    3128DefaultDirName = os.path.join("{pf}" , AppName+Dev) 
     
    346343    TEMPLATE += "AppSupportURL=%s\n" % str(AppSupportURL) 
    347344    TEMPLATE += "AppUpdatesURL=%s \n" % str(AppUpdatesURL) 
    348     if is_64bit: 
    349         TEMPLATE += "ArchitecturesInstallIn64BitMode=%s \n" % str(ArchitecturesInstallIn64BitMode) 
    350345    TEMPLATE += "ChangesEnvironment=%s \n" % str(ChangesEnvironment) 
    351346    TEMPLATE += "DefaultDirName=%s\n" % str(DefaultDirName) 
  • src/sas/sasgui/perspectives/fitting/basepage.py

    r58a8f76 reee94bf  
    28122812        if self.model is not None: 
    28132813            name = self.formfactorbox.GetValue() 
    2814             _TreeLocation = 'user/models/%s.html' % name 
     2814            _TreeLocation = 'user/models/' + name.lower()+'.html' 
    28152815            _doc_viewer = DocumentationWindow(self, wx.ID_ANY, _TreeLocation, 
    28162816                                              "", name + " Help") 
Note: See TracChangeset for help on using the changeset viewer.