Changeset 631


Ignore:
Timestamp:
Sep 9, 2011 12:12:01 PM (12 years ago)
Author:
jemian
Message:

begin refactoring into release structure and rebranding with new product name: moxy

Location:
wxmtxy/trunk
Files:
3 added
4 edited
17 moved

Legend:

Unmodified
Added
Removed
  • wxmtxy/trunk/LICENSE

    r184 r631  
    1 Copyright (c) 2009-2010 University of Chicago. All rights reserved.
     1Copyright (c) 2009-2011 University of Chicago. All rights reserved.
    22
    3 wxmtxy, pvConnect, and menuLauncher are distributed subject to the following license conditions:
     3moxy is distributed subject to the following license conditions:
    44
    55 SOFTWARE LICENSE AGREEMENT
    6  Software:  wxmtxy, including pvConnect and menuLauncher
     6 Software:  moxy
    77
    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
    109    binary form and accompanying documentation). Each licensee is
    1110    addressed as "you" or "Licensee."
  • wxmtxy/trunk/Makefile

    r184 r631  
    2626  # the python supplied with Cygwin does not have wx
    2727  # wx is a package installed in Enthought Python
    28   PYTHON := /cygdrive/c/Python26/python.exe
     28  PYTHON := /cygdrive/c/Python27/python.exe
    2929endif
    3030ifeq ("$(HOST)", "usaxscontrol.xor.aps.anl.gov")
     
    5151
    5252run ::
    53         $(PYTHON) ./wxmtxy.py
     53        $(PYTHON) ./moxy.py
    5454
    5555pydoc ::
    5656        $(PYDOC) -w ./
    57         /bin/mv -f wxmtxy*.html pydoc/
     57        /bin/mv -f moxy*.html pydoc/
    5858        /bin/mv -f pvConnect.html pydoc/
    5959        /bin/mv -f setup.html pydoc/
  • wxmtxy/trunk/README

    r184 r631  
    99########### SVN repository information ###################
    1010
    11     *wxmtxy* (an EPICS GUI tool) provides support for an X,Y positioner
     11    *moxy* (an EPICS GUI tool) provides support for an X,Y positioner
    1212    (motor) pair by allowing users to define a table of known positions
    1313    and providing a one-button click to drive a chosen X,Y pair to a specific
     
    1919
    2020
    21     wxmtxy is based on wxPython and relies on CaChannel to communicate
     21    moxy is based on wxPython and relies on CaChannel to communicate
    2222    with EPICS.
    2323   
  • wxmtxy/trunk/setup.py

    r184 r631  
    2929'''
    3030
    31 import wxmtxy_version
     31import version
    3232import pydoc
    3333from distutils.core import setup
     
    5454packages = []
    5555scripts = [
    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',
    6666    'pvConnect.py'
    6767]
     
    7979        self.__dict__.update(kw)
    8080        # 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__
    8686
    8787
    8888# see: http://wiki.python.org/moin/Distutils/Tutorial
    8989setup(
    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,
    100100)
Note: See TracChangeset for help on using the changeset viewer.