Changeset 780 for moxy/trunk


Ignore:
Timestamp:
Feb 2, 2012 2:36:47 PM (13 years ago)
Author:
jemian
Message:

consistency

Location:
moxy/trunk/src/moxy
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified moxy/trunk/src/moxy/m_axis.py

    r770 r780  
    2525
    2626# - - - - - - - - - - - - - - - - - - Global
     27
    2728
    2829__svnid__ = "$Id$"
  • TabularUnified moxy/trunk/src/moxy/m_pv.py

    r769 r780  
    2525
    2626# - - - - - - - - - - - - - - - - - - Global
     27
    2728
    2829__svnid__ = "$Id$"
  • TabularUnified moxy/trunk/src/moxy/m_set.py

    r778 r780  
    2020
    2121
    22 #from threading import Thread
    2322from m_axis import SingleAxis
    2423
    2524
    2625# - - - - - - - - - - - - - - - - - - Global
     26
    2727
    2828__svnid__ = "$Id$"
     
    6262            axis.move(value)
    6363   
    64     def connect(self, handler = None):      # TODO: should we name a handler here?
     64    def connect(self, handler = None):
    6565        '''connect all axes with EPICS PVs'''
    6666        for axis in self.axes:
  • TabularUnified moxy/trunk/src/moxy/m_settings.py

    r779 r780  
    2424
    2525# - - - - - - - - - - - - - - - - - - Global
     26
    2627
    2728__svnid__ = "$Id$"
  • TabularUnified moxy/trunk/src/moxy/paxis.py

    r770 r780  
    3232
    3333
     34# - - - - - - - - - - - - - - - - - - Imports
     35
     36
    3437import epics
     38
     39
     40# - - - - - - - - - - - - - - - - - - Global
     41
     42
     43__svnid__ = "$Id$"
     44
     45
     46# - - - - - - - - - - - - - - - - - - classes
    3547
    3648
     
    121133
    122134
     135# - - - - - - - - - - - - - - - - - - methods
     136
     137
     138# - - - - - - - - - - - - - - - - - - main
     139
     140
    123141if __name__ == '__main__':
    124142    '''show how to use this class'''
  • TabularUnified moxy/trunk/src/moxy/template.py

    r726 r780  
    2525# - - - - - - - - - - - - - - - - - - Global
    2626
     27
    2728__svnid__ = "$Id$"
    2829
  • TabularUnified moxy/trunk/src/moxy/vc_axis.py

    r777 r780  
    232232   
    233233    def motorControlsDialog(self):
    234         # TODO: implement this with a button
    235234        if self.axis_parent.axis.isMotorRecord:
    236235            pv = self.axis_parent.axis.axis.get_pv('VAL').pvname
    237             # FIXME: what is the correct parent to use here?
    238             # TODO: Look at implementation of epics.wx.motordetailframe.MotorDetailFrame()
    239236            parent = wx.GetTopLevelParent(self.axis_parent)
    240237            MotorControlsFrame(parent, m_pv.GetBasePv(pv))
Note: See TracChangeset for help on using the changeset viewer.