Changeset b6f9c9f in sasview
- Timestamp:
- Jan 29, 2018 10:41:19 AM (7 years ago)
- Branches:
- master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- ef63dd9, 6f4a7c17, 9d8d52c
- Parents:
- c99e717 (diff), f1d48e9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- Paul Kienzle <pkienzle@…> (01/29/18 10:41:19)
- git-committer:
- GitHub <noreply@…> (01/29/18 10:41:19)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/source/conf.py
r8cc9048 rf1d48e9 224 224 \newcommand{\lt}{<} % HTML needs \lt rather than < 225 225 \newcommand{\gt}{>} % HTML needs \gt rather than > 226 \renewcommand{\AA}{\ mathrm{\r{A}}} % Allow \AA in math mode226 \renewcommand{\AA}{\text{\r{A}}} % Allow \AA in math mode 227 227 \DeclareUnicodeCharacter {212B} {\AA} % Angstrom 228 228 \DeclareUnicodeCharacter {00B7} {\ensuremath{\cdot}} % cdot -
installers/installer_generator.py
r460d3a1 ra0f4768 9 9 import sys 10 10 import string 11 12 is_64bit = sys.maxsize > 2**32 11 13 12 14 root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) … … 25 27 AppSupportURL = local_config._homepage 26 28 AppUpdatesURL = local_config._homepage 29 ArchitecturesInstallIn64BitMode = 'x64' 27 30 ChangesEnvironment = 'true' 28 31 DefaultDirName = os.path.join("{pf}" , AppName+Dev) … … 343 346 TEMPLATE += "AppSupportURL=%s\n" % str(AppSupportURL) 344 347 TEMPLATE += "AppUpdatesURL=%s \n" % str(AppUpdatesURL) 348 if is_64bit: 349 TEMPLATE += "ArchitecturesInstallIn64BitMode=%s \n" % str(ArchitecturesInstallIn64BitMode) 345 350 TEMPLATE += "ChangesEnvironment=%s \n" % str(ChangesEnvironment) 346 351 TEMPLATE += "DefaultDirName=%s\n" % str(DefaultDirName) -
src/sas/sasgui/perspectives/fitting/basepage.py
reee94bf r58a8f76 2812 2812 if self.model is not None: 2813 2813 name = self.formfactorbox.GetValue() 2814 _TreeLocation = 'user/models/ ' + name.lower()+'.html'2814 _TreeLocation = 'user/models/%s.html' % name 2815 2815 _doc_viewer = DocumentationWindow(self, wx.ID_ANY, _TreeLocation, 2816 2816 "", name + " Help")
Note: See TracChangeset
for help on using the changeset viewer.