Zope-Dev
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1999 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1998 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
January 2011
- 31 participants
- 53 discussions
30 Jul '11
Hi,
I have a test section in buildout (version 1.5.2) which uses the environment option to get os.environ configs into the test script.
But the environment configuration does not show up in the generated script.
The recipe I use is zc.recipe.testrunner 1.4.0 and Python 2.5 (virtualenv).
When running the tests of zc.recipe.testrunner with this Python many of them fail including the test for the environment option.
Is it intensional that zc.recipe.testrunner does not run when using a virtualenv'ed Python?
P.S.: The Bugtracker of this project https://bugs.launchpad.net/zc.recipe.testrunner is currently disabled, so I was unable to put this there.
Yours sincerely,
--
Michael Howitz · mh(a)gocept.com · software developer
gocept gmbh & co. kg · forsterstraße 29 · 06112 halle (saale) · germany
http://gocept.com · tel +49 345 1229889 8 · fax +49 345 1229889 1
Zope and Plone consulting and development
4
6
I've finally finished refactoring my WebTest/testbrowser branches,
basically doing this:
- Integrate with WebTest. zope.testbrowser.webtest.Browser is a new
Browser implementation that uses webtest.TestApp to drive a WSGI
application. This allows simple and direct testing of WSGI applications.
- Re-write the test application as a pure WSGI application using WebOb.
Run the existing tests using the WebTest based Browser
- Move zope.app.testing based Browser into zope.app.testing (leaving
backwards compatibility imports in-place).
This refactoring removes these test dependencies from zope.testbroswer:
zope.app.appsetup
zope.app.publication
zope.app.testing >= 3.8.1
zope.browserpage
zope.browserresource
zope.component
zope.container
zope.principalregistry
zope.ptresource
zope.publisher
zope.security
zope.site
zope.traversing
And adds these:
zope.pagetemplate
WebTest
zope.app.testing gains this dependency:
zope.testbrowser >= 4.0.0dev
This is a very big change, so I would appreciate anyone who would take a
look at these branches before I merge:
svn+ssh://svn.zope.org/repos/main/zope.testbrowser/branches/jinty-webtest3
svn+ssh://svn.zope.org/repos/main/zope.app.testing/branches/jinty-testbrows…
I plan to merge the branches in the next few weeks if there are no
objections.
--
Brian Sutherland
9
25
Summary of messages to the zope-tests list.
Period Sun Jan 30 12:00:00 2011 UTC to Mon Jan 31 12:00:00 2011 UTC.
There were 92 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 21 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 48 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 16:01:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030514.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Sun Jan 30 21:11:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030530.html
Subject: FAILED : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Jan 30 21:30:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030531.html
Subject: FAILED : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Jan 30 21:30:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030532.html
Subject: FAILED : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Jan 30 21:30:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030533.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Sun Jan 30 22:10:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030539.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 22:47:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030540.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 23:32:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030549.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:14:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030581.html
Unknown
-------
Subject: UNKNOWN : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 00:44:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030558.html
Subject: UNKNOWN : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 00:57:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030561.html
Tests passed OK
---------------
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 15:18:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030509.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 15:27:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030510.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Jan 30 15:35:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030511.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 15:43:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030512.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Jan 30 15:51:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030513.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 16:09:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030515.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 16:18:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030516.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Jan 30 16:26:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030517.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 16:38:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030518.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 16:51:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030519.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Jan 30 17:03:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030520.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 17:16:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030521.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Jan 30 17:28:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030522.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 18:23:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030523.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 19:18:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030524.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Jan 30 19:46:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030525.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Jan 30 19:47:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030526.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Jan 30 19:47:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030527.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Jan 30 20:13:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030528.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Jan 30 21:08:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030529.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Sun Jan 30 21:58:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030534.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Sun Jan 30 22:03:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030535.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sun Jan 30 22:03:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030536.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sun Jan 30 22:03:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030537.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Jan 30 22:03:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030538.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Sun Jan 30 23:00:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030541.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:12:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030542.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:13:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030543.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:14:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030544.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:16:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030545.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:17:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030546.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:23:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030547.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:29:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030548.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:35:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030550.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:40:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030551.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:44:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030552.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:49:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030553.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 23:54:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030554.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Mon Jan 31 00:24:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030555.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 00:41:31 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030556.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 00:44:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030557.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Mon Jan 31 00:47:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030559.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 00:57:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030560.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 01:05:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030562.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Jan 31 01:09:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030563.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Jan 31 01:11:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030564.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Jan 31 01:13:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030565.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 01:13:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030566.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Jan 31 01:15:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030567.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Jan 31 01:17:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030568.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Jan 31 01:19:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030569.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Jan 31 01:21:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030570.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 01:22:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030571.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Jan 31 01:23:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030572.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 01:30:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030573.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 02:47:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030574.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 02:48:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030575.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 02:50:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030576.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 02:52:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030577.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 02:53:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030578.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:00:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030579.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:07:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030580.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:18:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030582.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:20:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030583.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:21:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030584.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:24:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030585.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:25:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030586.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:27:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030587.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:30:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030588.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:31:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030589.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:37:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030590.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 03:48:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030591.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 04:05:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030592.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 04:07:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030593.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 04:11:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030594.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 04:25:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030595.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 04:26:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030596.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 04:41:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030597.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 04:56:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030598.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 05:10:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030599.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Jan 31 05:24:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030600.html
3
2
Hi everyone,
A new release of zope.locking is now available.
This version refactors the generation configuration, allowing the
schema manager to be excluded.
This configuration is still included by default, so the default
behavior to run automatically remains the same as the previous
version.
--
Alex Smith
Software Engineer
Zope Corporation
1
0
Hi.
On behalf of the Zope Toolkit release team and the Zope community, I'm
happy to announce the release of the Zope Toolkit 1.1!
To use the new release, you can use:
[buildout]
extends =
http://download.zope.org/zopetoolkit/index/1.1/ztk-versions.cfg
http://download.zope.org/zopetoolkit/index/1.1/zopeapp-versions.cfg
There's a bit of high level change overview available at
http://docs.zope.org/zopetoolkit/releases/overview-1.1.html
Kind regards,
Jan-Wijbrand Kolman
1
0
Independent of my previous call for discussion about ZCML conflict
resolution, I'm cutting and pasting my side of a discussion about the
ZCML "includeOverrides" directive from an IRC chat, because it may come
in useful for folks grappling with its behavior. There's not really any
human-consumable docs about it.
If I've made any mistakes, please let me know.
[13:42] <mcdonc> so ftr, i've found that ZCML's includeOverrides and
include to do (at least on one vector) exactly the opposite of what you
might expect them to do
[13:42] <mcdonc> "includeOverrides" is a poor name
[13:42] <mcdonc> what it does is to emulate the behavior of inlining
stuff into the file you use it from
[13:43] <mcdonc> when you use includeOverrides it's as if you typed all
the directives in the included file into the file you're including from
[13:43] <mcdonc> otoh, "include" doesnt behave like this
[13:44] <mcdonc> you can actually define the same directive in three
files
[13:44] <mcdonc> configure.zcml, one.zcml, and two.zcml
[13:44] <mcdonc> and if you use "include" from configure.zcml of one and
two
[13:44] <mcdonc> there will be no conflict
[13:45] <mcdonc> this is because non-conflicting "rootmost" directives
win
[13:45] <mcdonc> otoh, if you use includeOverrides of one and two from
configure.zcml
[13:45] <mcdonc> all three will conflict
[13:45] <mcdonc> because its as if you typed them all in configure.zcml
by hand
[13:45] <mcdonc> and that means there are three conflicting rootmost
directives
[13:46] <mcdonc> if you mentally substitute "inline" for
"includeOverrides" it makes a little more sense
[13:48] <mcdonc> override is exactly the wrong phrase to use in the name
of this directive
[13:51] <mcdonc> what it boils down to is that you never, ever really
want to use includeOverrides except in your rootmost zcml file
[13:51] <mcdonc> and probably not even there
[13:51] <mcdonc> because you can get the same effect by typing the
directives there by hand
- C
3
6
Summary of messages to the zope-tests list.
Period Fri Jan 28 12:00:00 2011 UTC to Sat Jan 29 12:00:00 2011 UTC.
There were 77 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 21 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 33 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Fri Jan 28 21:11:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030347.html
Subject: FAILED : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Fri Jan 28 21:29:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030348.html
Subject: FAILED : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Jan 28 21:29:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030349.html
Subject: FAILED : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Jan 28 21:29:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030350.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Fri Jan 28 22:11:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030356.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 22:50:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030357.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 23:36:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030365.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 02:08:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030396.html
Unknown
-------
Subject: UNKNOWN : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 00:21:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030376.html
Tests passed OK
---------------
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 15:18:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030326.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 15:27:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030327.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Jan 28 15:36:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030328.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 15:44:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030329.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Fri Jan 28 15:53:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030330.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 16:02:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030331.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 16:11:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030332.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 16:19:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030333.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Jan 28 16:27:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030334.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 16:40:31 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030335.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 16:52:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030336.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Jan 28 17:05:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030337.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 17:18:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030338.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Fri Jan 28 17:30:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030339.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 18:25:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030340.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 19:21:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030341.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Fri Jan 28 19:46:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030342.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Jan 28 19:47:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030343.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Jan 28 19:47:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030344.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Jan 28 20:15:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030345.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Fri Jan 28 21:10:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030346.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Fri Jan 28 21:58:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030351.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Fri Jan 28 22:03:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030352.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Fri Jan 28 22:03:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030354.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Fri Jan 28 22:03:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030353.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Fri Jan 28 22:06:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030355.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Fri Jan 28 23:00:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030358.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:23:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030359.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:25:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030360.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:26:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030361.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:28:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030362.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:29:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030363.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:35:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030364.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:41:11 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030366.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:46:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030367.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:51:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030368.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:51:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030369.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:53:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030370.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 23:56:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030371.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 00:01:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030372.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 00:05:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030373.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 00:08:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030374.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 00:21:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030375.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sat Jan 29 00:23:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030377.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 00:29:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030378.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 00:37:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030379.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 00:45:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030380.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sat Jan 29 00:46:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030381.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 00:53:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030382.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Jan 29 01:08:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030383.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Jan 29 01:10:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030384.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Jan 29 01:12:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030385.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Jan 29 01:14:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030386.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Jan 29 01:16:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030387.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Jan 29 01:18:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030388.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Jan 29 01:20:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030389.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Jan 29 01:22:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030390.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 01:54:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030391.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 01:56:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030392.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 01:58:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030393.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 01:59:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030394.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 02:01:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030395.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 02:15:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030397.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 02:22:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030398.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 02:28:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030399.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 02:33:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030400.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 02:39:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030401.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 02:44:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030402.html
3
2
Summary of messages to the zope-tests list.
Period Sat Jan 29 12:00:00 2011 UTC to Sun Jan 30 12:00:00 2011 UTC.
There were 106 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 21 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 5 from ct at gocept.com, 57 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Total languishing bugs for zopeapp: 2
From: ct at gocept.com
Date: Sat Jan 29 20:30:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030435.html
Subject: FAILED : Total languishing bugs for zopetoolkit: 195
From: ct at gocept.com
Date: Sat Jan 29 20:36:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030436.html
Subject: FAILED : Total languishing bugs for zope: 48
From: ct at gocept.com
Date: Sat Jan 29 20:40:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030437.html
Subject: FAILED: Repository policy check found errors in 318 projects
From: ct at gocept.com
Date: Sat Jan 29 21:12:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030440.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Sat Jan 29 21:12:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030441.html
Subject: FAILED : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sat Jan 29 21:30:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030442.html
Subject: FAILED : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Jan 29 21:30:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030443.html
Subject: FAILED : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Jan 29 21:30:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030444.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Sat Jan 29 22:13:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030450.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 22:47:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030451.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 23:47:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030463.html
Unknown
-------
Subject: UNKNOWN : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 00:00:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030468.html
Subject: UNKNOWN : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 00:13:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030470.html
Tests passed OK
---------------
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 15:18:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030403.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 15:27:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030404.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Jan 29 15:36:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030405.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 15:38:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030406.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 15:41:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030407.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 15:44:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030408.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 15:44:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030409.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 15:47:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030410.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 15:50:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030411.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Jan 29 15:52:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030412.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 16:02:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030413.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 16:08:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030414.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 16:10:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030415.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 16:19:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030416.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Jan 29 16:27:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030418.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 16:27:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030417.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 16:39:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030419.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 16:45:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030420.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 16:51:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030421.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 16:59:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030422.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Jan 29 17:04:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030423.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 17:14:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030424.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 17:16:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030425.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 17:28:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030426.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Jan 29 17:28:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030427.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 17:42:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030428.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 18:23:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030429.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 19:18:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030430.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sat Jan 29 19:46:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030431.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Jan 29 19:47:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030432.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Jan 29 19:47:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030433.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Jan 29 20:13:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030434.html
Subject: OK : Total languishing bugs for zope2: 0
From: ct at gocept.com
Date: Sat Jan 29 20:45:05 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030438.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Jan 29 21:09:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030439.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Sat Jan 29 22:03:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030445.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Sat Jan 29 22:03:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030446.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sat Jan 29 22:03:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030447.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sat Jan 29 22:03:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030448.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Jan 29 22:04:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030449.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Sat Jan 29 23:07:31 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030452.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:13:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030453.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:14:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030454.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:15:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030455.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:17:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030456.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:18:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030457.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:23:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030458.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:29:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030459.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:36:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030460.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:40:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030461.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:45:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030462.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:51:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030464.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:55:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030465.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Jan 29 23:57:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030466.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 00:00:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030467.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 00:13:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030469.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 00:21:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030471.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sun Jan 30 00:23:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030472.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 00:29:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030473.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 00:38:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030474.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 00:45:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030475.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sun Jan 30 00:46:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030476.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Jan 30 01:07:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030477.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Jan 30 01:09:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030478.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Jan 30 01:11:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030479.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Jan 30 01:13:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030480.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Jan 30 01:15:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030481.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Jan 30 01:17:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030482.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Jan 30 01:19:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030483.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Jan 30 01:21:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030484.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 01:45:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030485.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 01:47:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030486.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 01:49:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030487.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 01:50:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030488.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 01:52:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030489.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 01:59:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030490.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:06:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030491.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:13:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030492.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:16:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030493.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:18:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030494.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:19:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030495.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:22:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030496.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:24:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030497.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:25:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030498.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:28:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030499.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:29:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030500.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:35:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030501.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 02:46:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030502.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 03:04:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030503.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 03:22:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030504.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 03:36:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030505.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 03:51:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030506.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 04:05:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030507.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Jan 30 04:19:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030508.html
1
0
Summary of messages to the zope-tests list.
Period Thu Jan 27 12:00:00 2011 UTC to Fri Jan 28 12:00:00 2011 UTC.
There were 91 messages: 8 from Zope Tests, 6 from buildbot at pov.lt, 21 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 45 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Thu Jan 27 11:07:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030235.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Thu Jan 27 11:07:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030236.html
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 15:59:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030242.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Thu Jan 27 21:11:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030258.html
Subject: FAILED : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Thu Jan 27 21:28:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030259.html
Subject: FAILED : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Jan 27 21:28:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030260.html
Subject: FAILED : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Jan 27 21:28:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030261.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Thu Jan 27 22:10:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030267.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 22:46:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030268.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 23:30:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030270.html
Tests passed OK
---------------
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 15:18:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030237.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 15:26:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030238.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Jan 27 15:35:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030239.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 15:42:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030240.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Jan 27 15:50:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030241.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 16:08:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030243.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 16:16:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030244.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Jan 27 16:24:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030245.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 16:36:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030246.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 16:49:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030247.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Jan 27 17:01:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030248.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 17:13:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030249.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Jan 27 17:26:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030250.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 18:20:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030251.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 19:15:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030252.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Thu Jan 27 19:46:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030253.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Jan 27 19:47:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030254.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Jan 27 19:47:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030255.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Jan 27 20:10:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030256.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Jan 27 21:05:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030257.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Thu Jan 27 21:58:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030262.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Jan 27 22:00:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030263.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Thu Jan 27 22:03:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030264.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Thu Jan 27 22:03:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030265.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Thu Jan 27 22:03:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030266.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Thu Jan 27 23:00:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030269.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Jan 27 23:34:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030271.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Jan 27 23:35:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030272.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Jan 27 23:37:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030273.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Jan 27 23:38:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030274.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Jan 27 23:40:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030275.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Jan 27 23:45:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030276.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Jan 27 23:51:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030277.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Jan 27 23:57:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030278.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 00:02:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030279.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 00:07:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030280.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 00:12:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030281.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 00:16:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030282.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Fri Jan 28 00:23:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030283.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 00:45:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030284.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Fri Jan 28 00:46:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030285.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 00:47:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030286.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Jan 28 01:08:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030287.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:09:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030288.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Jan 28 01:10:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030289.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Jan 28 01:12:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030290.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Jan 28 01:14:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030291.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Jan 28 01:16:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030292.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Jan 28 01:18:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030293.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Jan 28 01:20:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030294.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Jan 28 01:22:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030295.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:27:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030296.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:43:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030297.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:48:31 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030298.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:51:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030299.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:51:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030300.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:53:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030301.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:56:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030302.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:59:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030303.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 01:59:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030304.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:06:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030305.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:14:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030306.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:15:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030307.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:30:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030308.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:46:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030309.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:47:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030310.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:49:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030311.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:51:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030312.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:52:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030313.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 02:54:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030314.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:00:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030315.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:01:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030316.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:08:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030317.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:13:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030318.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:15:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030319.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:21:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030320.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:26:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030321.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:26:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030322.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:32:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030323.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:37:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030324.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Jan 28 03:39:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-January/030325.html
1
0
27 Jan '11
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
(apologies in advance for the cross-post: we need this to reach the
whole Zope community).
The Zope Foundation board is pleased to announce that the regular 2011
general meeting of the foundation will be held on Wednesday, 16 March
2011, at 15:00 UTC. The meeting will be conducted via IRC at the
following channel:
irc://irc.freenode.net/#zope-foundation
Prior to that meeting, the current board will conduct an elections in
which foundation members will select seven (7) board members in
accordance with the foundation bylaws[1].
Summary
- -------
- - Nominations open via the foundation(a)zope.org mailing list until
Friday, 2011-02-11.
- - Voting via e-mail to a closed mailing list, from Wednesday,
2011-02-16 through Friday, 2011-03-04.
- - Votes tallied by representatives of the current board,
using "Meek and Warrent STV" method using OpenSTV software.
- - General meeting and seating of the new board, Wednesday, 2011-03-16.
Procedure for Elections
- -----------------------
The procedure for the elections is as follows:
- - Foundation members may nominate any member by responding to the
board's announcement on the foundation(a)zope.org mailing list.
Nominations will remain open until Friday, 2011-02-11, 23:00 UTC.
- - At the close of the nominations period, the board will create a new
mailman list, 'zf-elections-2011', and approve all ZF members to post
to the list.. In order to preserve anonymity of votes, foundation
members will not be subscribers to the list; access to the list
archives will be restricted to the "tellers" appointed by the board.
- - On Wednesday, 2011-02-16, the Secretary will send an e-mail announcing
the opening of the voting period. This e-mail will contain the ballot,
with careful instructions about how to rank preferences in the reply.
The Reply-to header of this e-mail will be set to the
'zf-elections-2011' list.
- - ZF members will vote by replying to that e-mail. Voting will remain
open until Friday, 2011-03-04, 23:00 UTC.
- - At the close of voting, the board will appoint two of its members as
"tellers." The tellers will use the list archive to tabulate the
members' votes, using the OpenSTV application[2] configured to use the
Meek and Warren STV method[3]. The tellers will report the election
results, along with the raw tallies, at a special board meeting to be
held on Tuesday, 2011-03-15, 15:00 UTC.
- - After canvassing the results from the tellers, the board will notify
all nominees of the success / failure of their candidacy, thanking
them for their willingness to serve.
- - At the general meeting, the last item on the agenda will the
announcement of the election results, including a vote to "seat" the
board.
An online version of this announcement is available at:
http://foundation.zope.org/news/2011_election_and_general_meeting/
References
- ----------
[1] http://foundation.zope.org/bylaws/zope_foundation_bylaws.pdf
[2] http://stv.sourceforge.net/aboutopenstv
[3] http://stv.sourceforge.net/votingmethods/meek
Tres.
- --
===================================================================
Tres Seaver +1 540-429-0999 tseaver(a)palladion.com
Palladion Software "Excellence by Design" http://palladion.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAk1B8owACgkQ+gerLs4ltQ7OaACfSBCwcbLsELAk/n9eW0CblmMz
UvcAn0a1hIhLiocRo8GG431ccPnzDK7/
=2p6F
-----END PGP SIGNATURE-----
1
0