Changeset 481ff26 in sasview for src/sas/qtgui/GuiUtils.py


Ignore:
Timestamp:
Jul 4, 2016 5:32:49 AM (8 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
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
Children:
f0f309d
Parents:
f82ab8c
Message:

Modified Data Explorer slightly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/GuiUtils.py

    rf82ab8c r481ff26  
    55import os 
    66import sys 
    7 import time 
    87import imp 
    98import warnings 
    10 import re 
    119import webbrowser 
    1210import urlparse 
     
    1412warnings.simplefilter("ignore") 
    1513import logging 
    16 import traceback 
    1714 
    1815from PyQt4 import QtCore 
     
    7471    return userdir 
    7572 
    76 def _find_local_config(file, path): 
     73def _find_local_config(confg_file, path): 
    7774    """ 
    7875        Find configuration file for the current application 
     
    8178    fObj = None 
    8279    try: 
    83         fObj, path_config, descr = imp.find_module(file, [path]) 
    84         config_module = imp.load_module(file, fObj, path_config, descr) 
     80        fObj, path_config, descr = imp.find_module(confg_file, [path]) 
     81        config_module = imp.load_module(confg_file, fObj, path_config, descr) 
    8582    except: 
    86         logging.error("Error loading %s/%s: %s" % (path, file, sys.exc_value)) 
     83        logging.error("Error loading %s/%s: %s" % (path, confg_file, sys.exc_value)) 
    8784    finally: 
    8885        if fObj is not None: 
    8986            fObj.close() 
    90     logging.info("GuiManager loaded %s/%s" % (path, file)) 
     87    logging.info("GuiManager loaded %s/%s" % (path, confg_file)) 
    9188    return config_module 
    9289 
     
    238235    else: 
    239236        # otherwise just add a naked item 
    240         info_item = QtGui.QStandardItem("Info")         
     237        info_item = QtGui.QStandardItem("Info") 
    241238 
    242239    # Add the actual Data1D/Data2D object 
     
    274271                # TODO: assure item type is correct (either data1/2D or Plotter) 
    275272                plot_data.append(item_2.child(0).data().toPyObject()) 
    276    
     273 
    277274    return plot_data 
    278275 
     
    286283    info_item = QtGui.QStandardItem("Info") 
    287284 
    288     title_item   = QtGui.QStandardItem("Title: "      + data.title) 
     285    title_item = QtGui.QStandardItem("Title: " + data.title) 
    289286    info_item.appendRow(title_item) 
    290     run_item     = QtGui.QStandardItem("Run: "        + str(data.run)) 
     287    run_item = QtGui.QStandardItem("Run: " + str(data.run)) 
    291288    info_item.appendRow(run_item) 
    292     type_item    = QtGui.QStandardItem("Type: "      + str(data.__class__.__name__)) 
     289    type_item = QtGui.QStandardItem("Type: " + str(data.__class__.__name__)) 
    293290    info_item.appendRow(type_item) 
    294291 
    295292    if data.path: 
    296         path_item    = QtGui.QStandardItem("Path: "      + data.path) 
     293        path_item = QtGui.QStandardItem("Path: " + data.path) 
    297294        info_item.appendRow(path_item) 
    298295 
    299296    if data.instrument: 
    300         instr_item   = QtGui.QStandardItem("Instrument: " + data.instrument) 
     297        instr_item = QtGui.QStandardItem("Instrument: " + data.instrument) 
    301298        info_item.appendRow(instr_item) 
    302299 
Note: See TracChangeset for help on using the changeset viewer.