- Timestamp:
- Jan 4, 2011 3:13:48 PM (14 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:
- 96656e3
- Parents:
- 64bda1e
- Location:
- sansview
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/local_config.py
r0d8c8d7 rb9b9930 6 6 # Version of the application 7 7 __appname__ = "SansView" 8 __version__ = 'Dev 12132010'8 __version__ = 'Dev01042011' 9 9 __download_page__ = 'http://danse.chem.utk.edu' 10 10 __update_URL__ = 'http://danse.chem.utk.edu/sansview_version.php' -
sansview/sansview.py
r5062bbf rb9b9930 11 11 12 12 import wx 13 import os 14 import sys 15 # The below will make sure that sansview application uses the matplotlib font 16 # bundled with sansview. 17 if hasattr(sys, 'frozen'): 18 mplconfigdir = os.path.join(sys.prefix, '.matplotlib') 19 if not os.path.exists(mplconfigdir): 20 os.mkdir(mplconfigdir) 21 os.environ['MPLCONFIGDIR'] = mplconfigdir 22 13 23 from sans.guiframe import gui_manager 14 24 from welcome_panel import WelcomePanel
Note: See TracChangeset
for help on using the changeset viewer.