Changeset 631
- Timestamp:
- Sep 9, 2011 12:12:01 PM (12 years ago)
- Location:
- wxmtxy/trunk
- Files:
-
- 3 added
- 4 edited
- 17 moved
Legend:
- Unmodified
- Added
- Removed
-
wxmtxy/trunk/LICENSE
r184 r631 1 Copyright (c) 2009-201 0University of Chicago. All rights reserved.1 Copyright (c) 2009-2011 University of Chicago. All rights reserved. 2 2 3 wxmtxy, pvConnect, and menuLauncher aredistributed subject to the following license conditions:3 moxy is distributed subject to the following license conditions: 4 4 5 5 SOFTWARE LICENSE AGREEMENT 6 Software: wxmtxy, including pvConnect and menuLauncher6 Software: moxy 7 7 8 1. The "Software", below, refers to wxmtxy, pvConnect, 9 and menuLauncher (in either source code, or 8 1. The "Software", below, refers to moxy (in either source code, or 10 9 binary form and accompanying documentation). Each licensee is 11 10 addressed as "you" or "Licensee." -
wxmtxy/trunk/Makefile
r184 r631 26 26 # the python supplied with Cygwin does not have wx 27 27 # wx is a package installed in Enthought Python 28 PYTHON := /cygdrive/c/Python2 6/python.exe28 PYTHON := /cygdrive/c/Python27/python.exe 29 29 endif 30 30 ifeq ("$(HOST)", "usaxscontrol.xor.aps.anl.gov") … … 51 51 52 52 run :: 53 $(PYTHON) ./ wxmtxy.py53 $(PYTHON) ./moxy.py 54 54 55 55 pydoc :: 56 56 $(PYDOC) -w ./ 57 /bin/mv -f wxmtxy*.html pydoc/57 /bin/mv -f moxy*.html pydoc/ 58 58 /bin/mv -f pvConnect.html pydoc/ 59 59 /bin/mv -f setup.html pydoc/ -
wxmtxy/trunk/README
r184 r631 9 9 ########### SVN repository information ################### 10 10 11 * wxmtxy* (an EPICS GUI tool) provides support for an X,Y positioner11 *moxy* (an EPICS GUI tool) provides support for an X,Y positioner 12 12 (motor) pair by allowing users to define a table of known positions 13 13 and providing a one-button click to drive a chosen X,Y pair to a specific … … 19 19 20 20 21 wxmtxy is based on wxPython and relies on CaChannel to communicate21 moxy is based on wxPython and relies on CaChannel to communicate 22 22 with EPICS. 23 23 -
wxmtxy/trunk/setup.py
r184 r631 29 29 ''' 30 30 31 import wxmtxy_version31 import version 32 32 import pydoc 33 33 from distutils.core import setup … … 54 54 packages = [] 55 55 scripts = [ 56 ' wxmtxy.py',57 ' wxmtxy_root.py',58 ' wxmtxy_pair.py',59 ' wxmtxy_tab.py',60 ' wxmtxy_row.py',61 ' wxmtxy_xml.py',62 ' wxmtxy_pvsetup.py',63 ' wxmtxy_axis.py',64 ' wxmtxy_version.py',65 ' wxmtxy_htmlview.py',56 'moxy.py', 57 'root.py', 58 'pair.py', 59 'tab.py', 60 'row.py', 61 'moxy_xml.py', 62 'pvsetup.py', 63 'moxy_axis.py', 64 'version.py', 65 'htmlview.py', 66 66 'pvConnect.py' 67 67 ] … … 79 79 self.__dict__.update(kw) 80 80 # for the versioninfo resources 81 self.name = wxmtxy_version.__target_name__82 self.version = wxmtxy_version.__version__83 self.company_name = wxmtxy_version.__company_name__84 self.copyright = wxmtxy_version.__copyright__85 self.license = wxmtxy_version.__license__81 self.name = version.__target_name__ 82 self.version = version.__version__ 83 self.company_name = version.__company_name__ 84 self.copyright = version.__copyright__ 85 self.license = version.__license__ 86 86 87 87 88 88 # see: http://wiki.python.org/moin/Distutils/Tutorial 89 89 setup( 90 name = wxmtxy_version.__target_name__,91 version = wxmtxy_version.__version__,92 description = wxmtxy_version.__summary__,93 long_description = wxmtxy_version.__long_description__,94 author = wxmtxy_version.__author__,95 author_email = wxmtxy_version.__author_email__,96 license = wxmtxy_version.__license__,97 url = wxmtxy_version.__url__,98 scripts = scripts,99 data_files = data_files,90 name = version.__target_name__, 91 version = version.__version__, 92 description = version.__summary__, 93 long_description = version.__long_description__, 94 author = version.__author__, 95 author_email = version.__author_email__, 96 license = version.__license__, 97 url = version.__url__, 98 scripts = scripts, 99 data_files = data_files, 100 100 )
Note: See TracChangeset
for help on using the changeset viewer.