Changeset 5e4520c in sasview
- Timestamp:
- May 20, 2011 2:34:14 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:
- 823859a
- Parents:
- 007aa52
- Location:
- guiframe/local_perspectives/plotting
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/local_perspectives/plotting/__init__.py
rdf8a13e r5e4520c 1 1 PLUGIN_ID = "Plotting plug-in 1.0" 2 2 from plotting import * 3 4 import os5 from distutils.filelist import findall6 7 N_DIR = 128 def get_data_path(media):9 """10 """11 # Check for data path in the package12 path = os.path.join(os.path.dirname(__file__), media)13 if os.path.isdir(path):14 return path15 # Check for data path next to exe/zip file.16 # If we are inside a py2exe zip file, we need to go up17 # two levels to get to the directory containing the exe18 # We will check if the exe and the xsf are in the same19 # directory.20 path = os.path.dirname(__file__)21 #Look for maximum n_dir up of the current dir to find media22 23 #for i in range(n_dir):24 i = 025 while(i < N_DIR):26 path, _ = os.path.split(path)27 media_path = os.path.join(path, media)28 if os.path.isdir(media_path):29 module_media_path = os.path.join(media_path,'plotting_media')30 if os.path.isdir(module_media_path):31 return module_media_path32 return media_path33 i += 134 35 raise RuntimeError('Could not find plotting media files')36 37 def data_files():38 """39 Return the data files associated with media plotting.40 41 The format is a list of (directory, [files...]) pairs which can be42 used directly in setup(...,data_files=...) for setup.py.43 44 """45 data_files = []46 path = get_data_path(media="media")47 for f in findall(path):48 data_files.append(('media/plotting_media', [f]))49 return data_files -
guiframe/local_perspectives/plotting/help_panel.py
r2c63857b r5e4520c 7 7 import wx.html as html 8 8 from wx.lib.splitter import MultiSplitterWindow 9 import sans.guiframe.local_perspectives.plotting as plotting 9 from sans.guiframe import get_data_path 10 10 11 11 … … 52 52 size=(500,-1)) 53 53 54 self.path = plotting.get_data_path(media='media')54 self.path = get_data_path(media='media') 55 55 56 56 page1 = """<html>
Note: See TracChangeset
for help on using the changeset viewer.