Changeset 88daca8 in sasview
- Timestamp:
- Jun 22, 2015 10:44:07 PM (9 years ago)
- 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. - Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/setup_exe.py
rc971c98 r4cf8db9 231 231 images_dir = os.path.join(path, "images") 232 232 test_dir = os.path.join(path, "test") 233 test_1d_dir = os.path.join(path, "test\\1d_data") 234 test_2d_dir = os.path.join(path, "test\\2d_data") 235 test_save_dir = os.path.join(path, "test\\save_states") 236 test_upcoming_dir = os.path.join(path, "test\\upcoming_formats") 233 237 234 238 matplotlibdatadir = matplotlib.get_data_path() … … 290 294 291 295 # 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])) 296 for 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 301 for 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 306 for 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 311 for f in findall(test_upcoming_dir): 312 if not ".svn" in f: 313 data_files.append(("test\\upcoming_formats", [f])) 314 295 315 296 316 # See if the documentation has been built, and if so include it. … … 310 330 # install the MSVC 9 runtime dll's into the application folder 311 331 data_files.append(("Microsoft.VC90.CRT", py26MSdll_x86)) 312 313 332 314 333 # NOTE: … … 370 389 #initialize category stuff 371 390 #from sas.guiframe.CategoryInstaller import CategoryInstaller 372 #CategoryInstaller.check_install( )391 #CategoryInstaller.check_install(s) 373 392 374 393 setup( -
docs/sphinx-docs/source/conf.py
r476d4e3 r33d2a3a 51 51 # General information about the project. 52 52 project = u'SasView' 53 copyright = u'201 3, The SasView Project'53 copyright = u'2015, The SasView Project' 54 54 55 55 # The version info for the project you're documenting, acts as replacement for … … 58 58 # 59 59 # The short X.Y version. 60 version = '3. 0.0'60 version = '3.1.0' 61 61 # The full version, including alpha/beta/rc tags. 62 release = '3. 0.0'62 release = '3.1.0' 63 63 64 64 # The language for content autogenerated by Sphinx. Refer to documentation -
sasview/README.txt
r74d5dbf rfe34f56 219 219 2- Downloading and Installing 220 220 221 221 *** Note 1: Much more information is available at www.sasview.org under links. 222 222 Look in the 'For Developers' section and particularly the wiki at 223 223 www.sasview.org/trac/wiki. … … 232 232 233 233 2.2- Installing from source: 234 - Get the code from sourceforgeat https://github.com/SasView/sasview.git234 - Get the code from GitHub at https://github.com/SasView/sasview.git 235 235 for this release version use: https://github.com/SasView/sasview/releases 236 236 - run 'python setup.py install' under the 'sasview-x.x.x' folder … … 263 263 - vcredist_x86.exe (version 9.0.21022.8 -microsoft visual C 2008 264 264 re-distributable) 265 - Innosetup (WIN - isetup 5.4.2-unicode) - used to create distributa lbe265 - Innosetup (WIN - isetup 5.4.2-unicode) - used to create distributable 266 266 267 267 - MAC Specifci Packages: … … 274 274 275 275 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. 276 283 - Tutorial has not yet been updated and is somewhat out of date 277 284 - Very old computers may not be able to run … … 317 324 318 325 - 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/ 324 329 325 330 -
src/sas/guiframe/documentation_window.py
rc8d22ec rf349f85 19 19 import webbrowser 20 20 import urllib 21 import sys 21 22 22 23 SPHINX_DOC_ENV = "SASVIEW_DOC_PATH" … … 27 28 WX_SUPPORTS_HTML2 = False 28 29 30 MAC = True 31 if sys.platform.count("win32") > 0: 32 MAC = False 29 33 30 34 from gui_manager import get_app_dir … … 73 77 -- has it been built?", file_path) 74 78 elif WX_SUPPORTS_HTML2: 79 if MAC: 80 logging.error('url = ' + url) 75 81 # Complete HTML/CSS support! 76 82 self.view = html.WebView.New(self) -
src/sas/perspectives/fitting/fitpage.py
rf3dc56c r2b58fa5 3115 3115 mag_on_button.Show(True) 3116 3116 mag_help_button.Show(False) 3117 mag_angle_help_button.Show(False) 3117 3118 if mag_on_button.IsShown(): 3118 3119 if self.magnetic_on:
Note: See TracChangeset
for help on using the changeset viewer.