Changeset 88daca8 in sasview


Ignore:
Timestamp:
Jun 22, 2015 8:44:07 PM (9 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:
2c8dc19
Parents:
f349f85 (diff), 4cf8db9 (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.
Message:

Merge branch 'master' of https://github.com/SasView/sasview.git

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • sasview/setup_exe.py

    rc971c98 r4cf8db9  
    231231images_dir = os.path.join(path, "images") 
    232232test_dir = os.path.join(path, "test") 
     233test_1d_dir = os.path.join(path, "test\\1d_data") 
     234test_2d_dir = os.path.join(path, "test\\2d_data") 
     235test_save_dir = os.path.join(path, "test\\save_states") 
     236test_upcoming_dir = os.path.join(path, "test\\upcoming_formats") 
    233237 
    234238matplotlibdatadir = matplotlib.get_data_path() 
     
    290294 
    291295# Copying the sample data user data 
    292 for f in findall(test_dir): 
    293     if not ".svn" in f: 
    294         data_files.append(("test", [f])) 
     296for f in findall(test_1d_dir): 
     297    if not ".svn" in f: 
     298        data_files.append(("test\\1d_data", [f])) 
     299 
     300# Copying the sample data user data 
     301for f in findall(test_2d_dir): 
     302    if not ".svn" in f: 
     303        data_files.append(("test\\2d_data", [f])) 
     304 
     305# Copying the sample data user data 
     306for f in findall(test_save_dir): 
     307    if not ".svn" in f: 
     308        data_files.append(("test\\save_states", [f])) 
     309 
     310# Copying the sample data user data 
     311for f in findall(test_upcoming_dir): 
     312    if not ".svn" in f: 
     313        data_files.append(("test\\upcoming_formats", [f])) 
     314 
    295315 
    296316# See if the documentation has been built, and if so include it. 
     
    310330    # install the MSVC 9 runtime dll's into the application folder 
    311331    data_files.append(("Microsoft.VC90.CRT", py26MSdll_x86)) 
    312  
    313332 
    314333# NOTE: 
     
    370389#initialize category stuff 
    371390#from sas.guiframe.CategoryInstaller import CategoryInstaller 
    372 #CategoryInstaller.check_install() 
     391#CategoryInstaller.check_install(s) 
    373392 
    374393setup( 
  • docs/sphinx-docs/source/conf.py

    r476d4e3 r33d2a3a  
    5151# General information about the project. 
    5252project = u'SasView' 
    53 copyright = u'2013, The SasView Project' 
     53copyright = u'2015, The SasView Project' 
    5454 
    5555# The version info for the project you're documenting, acts as replacement for 
     
    5858# 
    5959# The short X.Y version. 
    60 version = '3.0.0' 
     60version = '3.1.0' 
    6161# The full version, including alpha/beta/rc tags. 
    62 release = '3.0.0' 
     62release = '3.1.0' 
    6363 
    6464# The language for content autogenerated by Sphinx. Refer to documentation 
  • sasview/README.txt

    r74d5dbf rfe34f56  
    2192192- Downloading and Installing 
    220220         
    221         *** Note 1:  Much more information is available at www.sasview.org under links. 
     221    *** Note 1:  Much more information is available at www.sasview.org under links. 
    222222                     Look in the 'For Developers' section and particularly the wiki at 
    223223                     www.sasview.org/trac/wiki. 
     
    232232 
    233233    2.2- Installing from source: 
    234         - Get the code from sourceforge at https://github.com/SasView/sasview.git 
     234        - Get the code from GitHub at https://github.com/SasView/sasview.git 
    235235          for this release version use: https://github.com/SasView/sasview/releases 
    236236            - run 'python setup.py install' under the 'sasview-x.x.x' folder 
     
    263263          - vcredist_x86.exe (version 9.0.21022.8  -microsoft visual C 2008  
    264264              re-distributable) 
    265           - Innosetup (WIN - isetup 5.4.2-unicode) - used to create distributalbe 
     265          - Innosetup (WIN - isetup 5.4.2-unicode) - used to create distributable 
    266266             
    267267        - MAC Specifci Packages: 
     
    274274 
    275275    3.1- All systems: 
     276        - Documentation Window may take a few seconds to load the first time 
     277          it i called.  Also, an internet connection is required before 
     278          equations will render properly. Until then they will show in their 
     279          original TeX format. 
     280        - The copy and paste functions (^C, ^V) in the batch mode results grid 
     281          require two clicks: one to select the cell and a second to select the 
     282          contents of the cell.  
    276283        - Tutorial has not yet been updated and is somewhat out of date 
    277284        - Very old computers may not be able to run 
     
    317324 
    318325    - Latest release Version 
    319         - http://sourceforge.net/projects/sasview/files/ 
    320     - Latest developer Windows or Ubuntu build 
    321         - http://build.sasview.org/ 
    322     - Latest developer Mac OS build 
    323         - http://download.mantidproject.org/jenkins/view/All/job/sasview_snowleopard_32bit/ 
     326        - https://github.com/SasView/sasview/releases 
     327    - Latest developer builds 
     328        - https://jenkins.esss.dk/sasview/view/Master-Builds/ 
    324329 
    325330     
  • src/sas/guiframe/documentation_window.py

    rc8d22ec rf349f85  
    1919import webbrowser 
    2020import urllib 
     21import sys 
    2122 
    2223SPHINX_DOC_ENV = "SASVIEW_DOC_PATH" 
     
    2728    WX_SUPPORTS_HTML2 = False 
    2829 
     30MAC = True 
     31if sys.platform.count("win32") > 0: 
     32    MAC = False 
    2933 
    3034from gui_manager import get_app_dir 
     
    7377            -- has it been built?", file_path) 
    7478        elif WX_SUPPORTS_HTML2: 
     79            if MAC: 
     80                logging.error('url = ' + url) 
    7581            # Complete HTML/CSS support! 
    7682            self.view = html.WebView.New(self) 
  • src/sas/perspectives/fitting/fitpage.py

    rf3dc56c r2b58fa5  
    31153115                    mag_on_button.Show(True) 
    31163116                mag_help_button.Show(False) 
     3117                mag_angle_help_button.Show(False) 
    31173118                if mag_on_button.IsShown(): 
    31183119                    if self.magnetic_on: 
Note: See TracChangeset for help on using the changeset viewer.