[Zope3-checkins] SVN: zdaemon/trunk/ Fixed change log format, made table of contents nicer.
Michael Howitz
mh at gocept.com
Mon Apr 20 03:21:38 EDT 2009
Log message for revision 99304:
Fixed change log format, made table of contents nicer.
Changed:
U zdaemon/trunk/CHANGES.txt
U zdaemon/trunk/setup.py
U zdaemon/trunk/src/zdaemon/README.txt
-=-
Modified: zdaemon/trunk/CHANGES.txt
===================================================================
--- zdaemon/trunk/CHANGES.txt 2009-04-20 06:26:13 UTC (rev 99303)
+++ zdaemon/trunk/CHANGES.txt 2009-04-20 07:21:38 UTC (rev 99304)
@@ -1,9 +1,17 @@
-zdaemon Changelog
-*****************
+===========
+ Changelog
+===========
-zdaemon 2.0.3 (2009/04/11)
-==========================
+2.0.4 (unreleased)
+==================
+
+- Fixed change log format, made table of contents nicer.
+
+
+2.0.3 (2009-04-11)
+==================
+
- Added support to bootstrap on Jython.
- If the run directory does not exist it will be created. This allow to use
@@ -20,16 +28,16 @@
Help is now taken from the __doc__ of the options class users by
the zdaemon script being run.
-zdaemon 2.0.2 (2008/04/05)
-==========================
+2.0.2 (2008-04-05)
+==================
Bugs Fixed
----------
Fixed backwards incompatible change in handling of environment option.
-zdaemon 2.0.1 (2007/10/31)
-==========================
+2.0.1 (2007-10-31)
+==================
Bugs Fixed
----------
@@ -37,21 +45,21 @@
Fixed test renormalizer that did not work in certain cases where the
environment was complex.
-zdaemon 2.0.0 (2007/07/19)
-==========================
+2.0.0 (2007-07-19)
+==================
Final release for 2.0.0.
-zdaemon 2.0a6 (2007/01/11)
-==========================
+2.0a6 (2007-01-11)
+==================
Bugs Fixed
----------
- When the user option was used, it only affected running the daemon.
-zdaemon 2.0a3, 2.0a4, 2.0a5 (2007/01/10)
-========================================
+2.0a3, 2.0a4, 2.0a5 (2007-01-10)
+================================
Bugs Fixed
----------
@@ -62,8 +70,8 @@
- Added extra checks to deal with programs that extend zdaemon
and copy the schema and thus don't see updates to the ZConfig schema.
-zdaemon 2.0a2 (2007/01/10)
-==========================
+2.0a2 (2007-01-10)
+==================
New Features
------------
@@ -74,8 +82,8 @@
- Added a command to rotate the transcript log.
-zdaemon 2.0a1 (2006/12/21)
-==========================
+2.0a1 (2006-12-21)
+==================
Bugs Fixed
----------
@@ -107,13 +115,13 @@
there. The old -d option is kept for backward compatibility, but is
a no-op.
-zdaemon 1.4a1 (2005/11/21)
-==========================
+1.4a1 (2005-11-21)
+==================
Fixed a bug in the distribution setup file.
-zdaemon 1.4a1 (2005/11/05)
-==========================
+1.4a1 (2005-11-05)
+==================
First semi-formal release.
@@ -123,16 +131,16 @@
- Made 'zdaemon.zdoptions' not fail for --help when __main__.__doc__
is None.
-After zdaemon 1.1
-=================
+After 1.1
+=========
- Updated test 'testRunIgnoresParentSignals':
-
+
o Use 'mkdtemp' to create a temporary directory to hold the test socket
rather than creating the test socket in the test directory.
Hopefully this will be more robust. Sometimes the test directory
has a path so long that the test socket can't be created.
-
+
o Changed management of 'donothing.sh'. This script is now created by
the test in the temporarary directory with the necessary
permissions. This is to avoids possible mangling of permissions
@@ -140,7 +148,7 @@
file in the source tree, which is a bonus.
- Rearranged source tree to conform to more usual zpkg-based layout:
-
+
o Python package lives under 'src'.
o Dependencies added to 'src' as 'svn:externals'.
@@ -150,8 +158,8 @@
- Made umask-based test failures due to running as root emit a more
forceful warning.
-zdaemon 1.1 (2005/06/09)
-========================
+1.1 (2005-06-09)
+================
- SVN tag: svn://svn.zope.org/repos/main/zdaemon/tags/zdaemon-1.1
@@ -166,6 +174,6 @@
- working directory
-Bugs
+Bugs
- help command
Modified: zdaemon/trunk/setup.py
===================================================================
--- zdaemon/trunk/setup.py 2009-04-20 06:26:13 UTC (rev 99303)
+++ zdaemon/trunk/setup.py 2009-04-20 07:21:38 UTC (rev 99304)
@@ -49,13 +49,11 @@
+ '\n' +
read('CHANGES.txt')
+ '\n' +
- 'Detailed Documentation\n'
- '**********************\n'
- + '\n' +
read('src/zdaemon/README.txt')
+ '\n' +
- 'Download\n'
- '**********************\n'
+ '========\n' +
+ 'Download\n' +
+ '========\n'
),
packages=["zdaemon", "zdaemon.tests"],
Modified: zdaemon/trunk/src/zdaemon/README.txt
===================================================================
--- zdaemon/trunk/src/zdaemon/README.txt 2009-04-20 06:26:13 UTC (rev 99303)
+++ zdaemon/trunk/src/zdaemon/README.txt 2009-04-20 07:21:38 UTC (rev 99304)
@@ -1,5 +1,6 @@
-Using zdaemon
-=============
+===============
+ Using zdaemon
+===============
zdaemon provides a script, zdaemon, that can be used to running other
programs as POSIX (Unix) daemons. (Of course, it is only usable on
@@ -150,7 +151,7 @@
daemon process stopped
Environment Variables
----------------------
+=====================
Sometimes, it is necessary to set environment variables before running
a program. Perhaps the most common case for this is setting
@@ -183,7 +184,7 @@
LD_LIBRARY_PATH=/home/foo/lib
Transcript log
----------------
+==============
When zdaemon run a program in daemon mode, it disconnects the
program's standard input, standard output, and standard error from the
@@ -262,7 +263,7 @@
'rec 1\nrec 2\n'
Reference Documentation
------------------------
+=======================
The following options are available for use in the runner section of
configuration files and as command-line options.
More information about the Zope3-Checkins
mailing list