Changeset 1094
- Timestamp:
- Sep 7, 2012 2:39:37 PM (10 years ago)
- Location:
- pvMail
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pvMail/doc/source/index.rst
r1092 r1094 53 53 54 54 contents 55 56 57 Glossary 58 ======== 59 60 :index:`CA` 61 EPICS Channel Access protocol 62 63 :index:`CLI` 64 command-line interface 65 66 :index:`EPICS` 67 http://www.aps.anl.gov/epics 68 69 :index:`GUI` 70 graphical user interface 71 72 :index:`IOC` 73 EPICS Input/Output Controller, the EPICS server 74 75 :index:`message PV` 76 EPICS PV that provides the text to be sent by email, 77 additional metadata is appended to this text 78 79 :index:`OS` 80 operating system 81 82 :index:`PV` 83 EPICS process variable 84 85 :index:`PyEpics` 86 Python package to manage connections with PVs served by an EPICS IOC 87 88 :index:`Traits` 89 Python package to simplify construction of a GUI 90 91 :index:`trigger PV` 92 EPICS PV that signals an email is to be sent 93 94 95 Dependencies 96 ============ 97 98 This software was built with various standard Python packages 99 available in Python 2.7. Additionally, this program uses: 100 101 .. index:: PyEpics 102 103 *PyEpics* (EPICS interface) 104 http://cars9.uchicago.edu/software/python/pyepics3/ 105 106 .. index:: Traits 107 108 *Traits* (GUI library) 109 http://code.enthought.com/projects/traits/ 110 111 Both of these are available for 112 `easy_install <http://packages.python.org/distribute/easy_install.html>`_ 113 from the Python Package Index (http://pypi.python.org/pypi). 55 glossary 56 dependencies 114 57 115 58 -
pvMail/doc/source/info.rst
r1092 r1094 28 28 ------------------------ 29 29 30 .. index:: EPUB 31 .. index:: PDF 30 .. index:: 31 EPUB 32 PDF 33 PvMail project 32 34 33 35 Documentation for the PvMail project, 34 maintained using sphinx (http://sphinx.pocoo.org),35 can be accessed from the WWW at 36 maintained using Sphinx (http://sphinx.pocoo.org), 37 is available from 36 38 http://subversion.xray.aps.anl.gov/admin_bcdaext/pvMail 37 :index:`PvMail project`38 39 and also 39 40 :download:`EPUB <PvMail.epub>` and 40 41 :download:`PDF <PvMail.pdf>` versions. 42 43 44 .. index:: change history 45 46 .. _changes: 47 48 Change History 49 ============================ 50 51 :v3.0.1: 52 * (2012-09-07) 53 * new home for documentation 54 * check for existence of sendmail program before trying 55 56 :v3.0: 57 * (2012-06-19) 58 * release of new code 59 41 60 42 61 .. index:: TODO items … … 44 63 .. _TODO: 45 64 46 TODO items for the nextrelease65 TODO items for a future release 47 66 ======================================== 48 67 -
pvMail/src/PvMail/pvMail.py
r1092 r1094 74 74 __svnid__ = "$Id$" 75 75 __version__ = "3" 76 __minor_version__ = "0 "76 __minor_version__ = "0.1" 77 77 __revision__ = __svnid__.split(" ")[2] 78 78 #__full_version__ = "%s.%s-r%s" % (__version__, __minor_version__, __revision__)
Note: See TracChangeset
for help on using the changeset viewer.