Zope-Dev
Threads by month
- ----- 2026 -----
- May
- 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
- 16652 discussions
dear zopistas,
while trying to add a new schema field to an already registered plone
portlet, i got following traceback:
2011-02-14 23:11:55 ERROR Zope.SiteErrorLog 1297721515.110.63984381121
http://localhost:8880/info/uber-uns/geschichte/++contextportlets
++plone.rightcolumn/show-galleries-portlet/edit
Traceback (innermost last):
Module ZPublisher.Publish, line 127, in publish
Module ZPublisher.mapply, line 77, in mapply
Module ZPublisher.Publish, line 47, in call_object
Module plone.app.portlets.browser.formhelper, line 123, in __call__
Module zope.formlib.form, line 782, in __call__
Module five.formlib.formbase, line 50, in update
Module zope.formlib.form, line 745, in update
Module zope.formlib.form, line 820, in setUpWidgets
Module zope.formlib.form, line 408, in setUpEditWidgets
Module zope.schema._bootstrapfields, line 173, in get
AttributeError: image_size
while - IMO - zope.schema throws that error justifiably, i think
zope.formlib should handle it more gracefully in setUpEditWidgets. i
think, this error comes with every schema upgrade for zope.formlib based
edit-forms. so, what do you think of following patch?
"""
>From bcf7e2b7cb94b145cd502ad57e1363f2e6b4a879 Mon Sep 17 00:00:00 2001
From: Johannes Raggam <raggam-nl(a)adm.at>
Date: Tue, 15 Feb 2011 12:38:50 +0100
Subject: [PATCH] after schema upgrades (e.g. for plone.app.portlets),
the edit screen cannot be rendered because there is no v
alue for the new field attribute. in this case, use the default value.
---
zope/formlib/form.py | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/zope/formlib/form.py b/zope/formlib/form.py
index 5df88cf..0d3ade3 100755
--- a/zope/formlib/form.py
+++ b/zope/formlib/form.py
@@ -405,7 +405,11 @@ def setUpEditWidgets(form_fields, form_prefix,
context, request,
if ignore_request or readonly or not widget.hasInput():
# Get the value to render
- value = field.get(adapter)
+ try:
+ value = field.get(adapter)
+ except AttributeError:
+ # value not available after schema upgrade
+ value = field.default
widget.setRenderedValue(value)
widgets.append((not readonly, widget))
--
1.7.1
"""
i'm not sure if this would cause any unwanted side effects... actually i
think it won't.
regards,
johannes raggam
--
johannes raggam / thet
python plone zope development
http://johannes.raggam.co.at/
mailto:johannes@raggam.co.at
http://bluedynamics.com/
2
3
Summary of messages to the zope-tests list.
Period Mon Feb 14 12:00:00 2011 UTC to Tue Feb 15 12:00:00 2011 UTC.
There were 100 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 31 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 46 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 16:08:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032042.html
Subject: FAILED : winbot / z3c.form_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 22:21:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032093.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 22:49:11 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032094.html
Subject: FAILED : winbot / z3c.template_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 22:58:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032095.html
Subject: FAILED : winbot / z3c.layer.ready2go_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 23:03:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032097.html
Subject: FAILED : winbot / z3c.formui_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 23:05:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032098.html
Subject: FAILED : winbot / z3c.tabular_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 23:07:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032099.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 23:08:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032100.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 23:26:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032101.html
Subject: FAILED : winbot / z3c.pdftemplate_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 23:31:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032102.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 23:32:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032103.html
Subject: FAILED : winbot / z3c.macro_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 23:33:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032104.html
Subject: FAILED : winbot / z3c.pagelet_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 23:38:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032105.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 14:57:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032017.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:01:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032018.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:10:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032019.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:12:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032020.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:13:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032021.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:14:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032022.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:16:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032023.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:17:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032024.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 15:18:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032025.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:21:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032026.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 15:26:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032027.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:27:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032028.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:31:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032029.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:33:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032030.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Feb 14 15:35:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032031.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:38:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032032.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:43:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032033.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 15:44:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032034.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:45:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032035.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:48:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032036.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:53:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032037.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Feb 14 15:53:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032038.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 15:53:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032039.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 16:00:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032040.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 16:02:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032041.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 16:11:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032043.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 16:16:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032044.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 16:19:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032045.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Feb 14 16:28:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032046.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 16:40:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032047.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 16:52:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032048.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 16:54:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032049.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 16:56:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032050.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 16:57:05 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032051.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 16:58:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032052.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 16:59:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032053.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 16:59:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032054.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:01:31 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032055.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:01:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032056.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:03:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032057.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:04:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032058.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Feb 14 17:05:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032059.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:10:05 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032060.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:17:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032061.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 17:18:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032062.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:19:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032063.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:24:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032064.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:29:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032065.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Feb 14 17:30:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032066.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:34:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032067.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:36:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032068.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:41:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032069.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:47:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032070.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 17:49:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032071.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 18:01:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032072.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 18:13:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032073.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 18:25:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032074.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 18:25:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032075.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 18:38:11 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032076.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 19:20:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032077.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Feb 14 19:46:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032078.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Feb 14 19:47:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032079.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Feb 14 19:47:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032080.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Feb 14 20:15:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032081.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 21:10:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032082.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Mon Feb 14 21:11:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032083.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Mon Feb 14 21:58:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032084.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Feb 14 22:06:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032085.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Mon Feb 14 22:06:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032086.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Mon Feb 14 22:07:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032087.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Mon Feb 14 22:07:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032088.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Mon Feb 14 22:11:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032089.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Feb 14 22:12:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032090.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Feb 14 22:13:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032091.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Feb 14 22:13:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032092.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Mon Feb 14 23:00:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032096.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Tue Feb 15 00:24:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032106.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Tue Feb 15 00:46:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032107.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Feb 15 01:10:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032108.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Feb 15 01:12:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032109.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Feb 15 01:14:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032110.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Feb 15 01:16:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032111.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Feb 15 01:18:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032112.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Feb 15 01:20:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032113.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Feb 15 01:22:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032114.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Feb 15 01:24:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032115.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 15 04:08:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032116.html
1
0
Summary of messages to the zope-tests list.
Period Sun Feb 13 12:00:00 2011 UTC to Mon Feb 14 12:00:00 2011 UTC.
There were 113 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 31 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 59 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 16:03:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031925.html
Subject: FAILED : winbot / z3c.form_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 22:19:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031980.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 22:45:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031981.html
Subject: FAILED : winbot / z3c.template_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 22:54:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031982.html
Subject: FAILED : winbot / z3c.layer.ready2go_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 23:00:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031983.html
Subject: FAILED : winbot / z3c.formui_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 23:02:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031985.html
Subject: FAILED : winbot / z3c.tabular_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 23:04:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031986.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 23:05:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031987.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 00:51:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031990.html
Subject: FAILED : winbot / z3c.pdftemplate_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 01:06:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031991.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 01:07:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031992.html
Subject: FAILED : winbot / z3c.macro_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 01:08:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031993.html
Subject: FAILED : winbot / z3c.pagelet_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Feb 14 01:13:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031996.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 14:48:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031904.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 14:50:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031905.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 14:51:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031906.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 14:53:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031907.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 14:54:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031908.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:00:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031909.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:06:31 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031910.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:12:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031911.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:17:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031912.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 15:18:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031913.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:20:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031914.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:22:05 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031915.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:23:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031916.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:26:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031917.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 15:27:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031918.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:31:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031919.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Feb 13 15:36:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031920.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 15:45:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031921.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:45:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031922.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Feb 13 15:54:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031923.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 15:59:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031924.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 16:11:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031926.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 16:11:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031927.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 16:19:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031928.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 16:19:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031929.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 16:27:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031930.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Feb 13 16:28:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031931.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 16:35:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031932.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 16:39:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031933.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 16:43:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031934.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 16:52:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031935.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:00:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031936.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:02:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031937.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:03:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031938.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Feb 13 17:04:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031939.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:05:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031940.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:07:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031941.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:08:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031942.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:11:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031943.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:13:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031944.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:13:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031945.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:15:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031946.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 17:16:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031947.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:18:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031948.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:21:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031949.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:28:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031950.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Feb 13 17:29:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031951.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:33:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031952.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:33:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031953.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:39:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031954.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:45:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031955.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:48:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031956.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 17:51:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031957.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 18:03:11 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031958.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 18:15:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031959.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 18:24:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031960.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 18:27:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031961.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 18:39:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031962.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Feb 13 18:51:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031963.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 19:19:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031964.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Feb 13 19:46:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031965.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Feb 13 19:47:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031966.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Feb 13 19:47:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031967.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Feb 13 20:13:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031968.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Feb 13 21:09:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031969.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Sun Feb 13 21:11:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031970.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Sun Feb 13 21:57:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031971.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Feb 13 22:04:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031972.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sun Feb 13 22:07:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031973.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Sun Feb 13 22:07:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031974.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sun Feb 13 22:07:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031975.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Sun Feb 13 22:10:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031976.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Feb 13 22:12:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031977.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Feb 13 22:13:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031978.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Feb 13 22:14:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031979.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Sun Feb 13 23:00:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031984.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Mon Feb 14 00:24:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031988.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Mon Feb 14 00:47:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031989.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Feb 14 01:09:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031994.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Feb 14 01:11:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031995.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Feb 14 01:13:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031997.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Feb 14 01:15:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031998.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Feb 14 01:17:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031999.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Feb 14 01:19:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032000.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Feb 14 01:21:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032001.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Feb 14 01:23:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032002.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:04:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032003.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:05:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032004.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:06:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032005.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:06:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032006.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:06:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032007.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:06:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032008.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:07:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032009.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:08:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032010.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:08:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032011.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:08:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032012.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:09:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032013.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:09:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032014.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:11:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032015.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Feb 14 04:13:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/032016.html
1
0
Hi all,
I use z3c.formjs in a project and would like to customize the selector id
used into jsaction.handler for form field.
Why ? because the z3c.formui templates add "-row" suffix to the widget id
and I need also to add the "-row" suffix to the selector id in the event
handler.
I have attached a patch for the jsaction.py file that use the default
WidgetSelector class if no IWidgetSelector component is locally registered.
If it is a good idea, how could I apply it to svn repository ?
regards,
Simon
1
0
Summary of messages to the zope-tests list.
Period Sat Feb 12 12:00:00 2011 UTC to Sun Feb 13 12:00:00 2011 UTC.
There were 120 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 31 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 5 from ct at gocept.com, 61 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:47:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031810.html
Subject: FAILED : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Feb 12 15:29:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031819.html
Subject: FAILED : Total languishing bugs for zopeapp: 2
From: ct at gocept.com
Date: Sat Feb 12 20:30:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031865.html
Subject: FAILED : Total languishing bugs for zopetoolkit: 195
From: ct at gocept.com
Date: Sat Feb 12 20:37:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031866.html
Subject: FAILED : Total languishing bugs for zope: 47
From: ct at gocept.com
Date: Sat Feb 12 20:40:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031867.html
Subject: FAILED : Total languishing bugs for zope2: 2
From: ct at gocept.com
Date: Sat Feb 12 20:45:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031868.html
Subject: FAILED: Repository policy check found errors in 316 projects
From: ct at gocept.com
Date: Sat Feb 12 21:11:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031870.html
Subject: FAILED : winbot / z3c.form_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 22:15:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031881.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 22:48:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031882.html
Subject: FAILED : winbot / z3c.template_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 22:57:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031883.html
Subject: FAILED : winbot / z3c.layer.ready2go_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 23:02:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031885.html
Subject: FAILED : winbot / z3c.formui_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 23:04:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031886.html
Subject: FAILED : winbot / z3c.tabular_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 23:06:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031887.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 23:07:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031888.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 23:29:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031889.html
Subject: FAILED : winbot / z3c.pdftemplate_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 23:33:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031890.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 23:35:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031891.html
Subject: FAILED : winbot / z3c.macro_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 23:36:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031892.html
Subject: FAILED : winbot / z3c.pagelet_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 23:41:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031893.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:50:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031784.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:50:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031785.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:52:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031786.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:52:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031787.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:53:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031788.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:53:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031789.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:56:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031790.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:58:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031791.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:58:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031792.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 09:58:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031793.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 10:04:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031794.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 10:04:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031795.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 10:06:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031796.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 10:10:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031797.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 10:13:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031798.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 10:25:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031799.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:22:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031800.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:24:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031801.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:25:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031802.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:27:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031803.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:28:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031804.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:34:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031805.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:41:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031806.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:43:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031807.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:46:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031808.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:47:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031809.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:52:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031811.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 14:57:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031812.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 15:02:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031813.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 15:04:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031814.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 15:07:11 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031815.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 15:19:11 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031816.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 15:21:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031817.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 15:27:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031818.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 15:29:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031820.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 15:38:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031821.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 15:38:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031822.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 15:46:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031823.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Feb 12 15:48:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031824.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 15:54:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031825.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 15:57:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031826.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 15:58:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031827.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:00:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031828.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:01:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031829.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:03:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031830.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:05:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031831.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 16:06:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031832.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:12:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031833.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 16:15:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031834.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:18:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031835.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Feb 12 16:23:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031836.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:26:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031837.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:31:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031838.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 16:35:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031839.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:37:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031840.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 16:42:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031841.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 16:47:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031842.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Feb 12 16:59:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031843.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 17:11:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031845.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 17:11:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031844.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 17:12:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031846.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Feb 12 17:24:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031847.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 17:25:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031848.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 17:28:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031849.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 17:30:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031850.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 17:32:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031851.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 17:47:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031852.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 18:02:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031853.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 18:17:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031854.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 18:19:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031855.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 18:29:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031856.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 18:41:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031857.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 18:53:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031858.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Feb 12 19:05:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031859.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 19:14:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031860.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sat Feb 12 19:46:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031861.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Feb 12 19:47:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031862.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Feb 12 19:47:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031863.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Feb 12 20:10:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031864.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Feb 12 21:05:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031869.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Sat Feb 12 21:11:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031871.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Sat Feb 12 21:59:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031872.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Feb 12 22:00:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031873.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sat Feb 12 22:06:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031874.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Sat Feb 12 22:06:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031875.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sat Feb 12 22:07:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031876.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Sat Feb 12 22:11:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031877.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sat Feb 12 22:11:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031878.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Feb 12 22:12:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031879.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Feb 12 22:13:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031880.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Sat Feb 12 23:02:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031884.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sun Feb 13 00:24:05 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031894.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sun Feb 13 00:46:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031895.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Feb 13 01:07:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031896.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Feb 13 01:09:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031897.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Feb 13 01:11:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031898.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Feb 13 01:13:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031899.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Feb 13 01:15:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031900.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Feb 13 01:17:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031901.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Feb 13 01:19:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031902.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Feb 13 01:21:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031903.html
1
0
Summary of messages to the zope-tests list.
Period Fri Feb 11 12:00:00 2011 UTC to Sat Feb 12 12:00:00 2011 UTC.
There were 107 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 31 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 53 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 15:20:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031678.html
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 15:56:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031688.html
Subject: FAILED : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:18:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031695.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:29:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031700.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:32:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031701.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:34:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031703.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:36:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031724.html
Subject: FAILED : winbot / z3c.form_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 22:14:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031761.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 22:46:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031762.html
Subject: FAILED : winbot / z3c.template_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 22:55:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031763.html
Subject: FAILED : winbot / z3c.layer.ready2go_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 23:00:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031764.html
Subject: FAILED : winbot / z3c.formui_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 23:02:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031766.html
Subject: FAILED : winbot / z3c.tabular_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 23:04:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031767.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 23:05:25 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031768.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 23:23:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031769.html
Subject: FAILED : winbot / z3c.pdftemplate_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 23:27:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031770.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 23:32:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031771.html
Subject: FAILED : winbot / z3c.macro_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 23:33:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031772.html
Subject: FAILED : winbot / z3c.pagelet_py_265_32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 23:38:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031773.html
Tests passed OK
---------------
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 15:18:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031677.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Feb 11 15:29:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031679.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 15:38:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031680.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 15:40:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031681.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 15:42:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031682.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 15:43:31 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031683.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 15:44:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031684.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 15:46:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031685.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Fri Feb 11 15:47:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031686.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 15:52:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031687.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 15:58:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031689.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:04:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031690.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 16:05:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031691.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:09:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031692.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 16:13:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031693.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:14:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031694.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:19:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031696.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Feb 11 16:21:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031697.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:23:11 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031698.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:24:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031699.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 16:33:31 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031702.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:42:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031704.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 16:45:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031705.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:51:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031706.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:56:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031707.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Feb 11 16:58:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031708.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:58:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031709.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 16:58:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031710.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:00:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031711.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:01:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031712.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:03:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031713.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:06:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031714.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:10:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031715.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 17:10:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031716.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:14:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031717.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:17:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031718.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:19:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031719.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Fri Feb 11 17:23:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031720.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:24:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031721.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:30:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031722.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:35:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031723.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:41:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031725.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:42:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031726.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:43:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031727.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:45:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031728.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:47:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031729.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:47:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031730.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:50:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031731.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 17:53:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031732.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 18:08:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031733.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 18:18:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031734.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 18:23:05 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031735.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 18:37:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031736.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 18:49:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031737.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 19:01:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031738.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 19:02:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031739.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 19:07:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031740.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 19:13:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031741.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 19:13:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031742.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 19:25:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031743.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Fri Feb 11 19:47:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031744.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Feb 11 19:47:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031745.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Feb 11 19:47:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031746.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Feb 11 20:08:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031747.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 20:21:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031748.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 20:33:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031749.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Fri Feb 11 21:03:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031750.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Fri Feb 11 21:11:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031751.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Fri Feb 11 21:58:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031752.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Fri Feb 11 21:58:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031753.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Fri Feb 11 22:07:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031754.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Fri Feb 11 22:07:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031755.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Fri Feb 11 22:07:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031756.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Fri Feb 11 22:10:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031757.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Fri Feb 11 22:13:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031758.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Feb 11 22:13:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031759.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Feb 11 22:14:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031760.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Fri Feb 11 23:01:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031765.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sat Feb 12 00:24:11 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031774.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sat Feb 12 00:46:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031775.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Feb 12 01:09:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031776.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Feb 12 01:11:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031777.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Feb 12 01:13:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031778.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Feb 12 01:15:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031779.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Feb 12 01:17:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031780.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Feb 12 01:19:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031781.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Feb 12 01:21:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031782.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Feb 12 01:23:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031783.html
1
0
Hi All,
I'm happy to announce a new release of TestFixtures.
This release adds a helper for tests of code using zope.component:
http://packages.python.org/testfixtures/components.html
The package is on PyPI and a full list of all the links to docs, issue
trackers and the like can be found here:
http://www.simplistix.co.uk/software/python/testfixtures
cheers,
Chris
--
Simplistix - Content Management, Batch Processing & Python Consulting
- http://www.simplistix.co.uk
1
0
Summary of messages to the zope-tests list.
Period Thu Feb 10 12:00:00 2011 UTC to Fri Feb 11 12:00:00 2011 UTC.
There were 116 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 31 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 62 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 13:50:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031563.html
Subject: FAILED : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 13:54:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031567.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:38:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031584.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:44:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031586.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:51:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031588.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:52:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031590.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:57:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031591.html
Subject: FAILED : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:04:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031600.html
Subject: FAILED : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:05:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031603.html
Subject: FAILED : winbot / z3c.form_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 22:20:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031640.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 22:49:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031641.html
Subject: FAILED : winbot / z3c.template_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 22:58:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031642.html
Subject: FAILED : winbot / z3c.layer.ready2go_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 23:03:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031644.html
Subject: FAILED : winbot / z3c.formui_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 23:04:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031645.html
Subject: FAILED : winbot / z3c.tabular_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 23:06:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031646.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 23:07:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031647.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 23:42:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031653.html
Subject: FAILED : winbot / z3c.pdftemplate_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 23:49:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031655.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 23:51:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031656.html
Subject: FAILED : winbot / z3c.macro_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 23:51:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031657.html
Subject: FAILED : winbot / z3c.pagelet_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 23:56:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031658.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 13:48:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031561.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 13:49:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031562.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 13:50:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031564.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 13:52:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031565.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 13:53:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031566.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 13:59:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031568.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:05:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031569.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:07:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031570.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:11:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031571.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:15:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031572.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:19:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031573.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:19:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031574.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:20:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031575.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:20:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031576.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:22:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031577.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:24:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031578.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:24:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031579.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:25:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031580.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:29:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031581.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:31:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031582.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:32:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031583.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:39:31 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031585.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:47:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031587.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:52:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031589.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 14:58:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031592.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 15:04:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031593.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 15:19:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031594.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 15:27:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031595.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Feb 10 15:36:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031596.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 15:45:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031597.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Feb 10 15:53:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031598.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 16:03:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031599.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:04:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031601.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:04:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031602.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:05:37 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031604.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:05:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031605.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:06:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031606.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:07:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031607.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:08:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031608.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:08:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031609.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:10:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031610.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:11:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031611.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 16:12:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031612.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 16:20:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031613.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Feb 10 16:28:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031614.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:39:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031615.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 16:40:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031616.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:46:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031617.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 16:52:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031618.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 16:54:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031619.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Feb 10 17:04:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031620.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 17:17:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031621.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Feb 10 17:29:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031622.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 18:25:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031623.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 19:19:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031624.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Thu Feb 10 19:47:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031625.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Feb 10 19:47:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031626.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Feb 10 19:47:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031627.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Feb 10 20:15:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031628.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Feb 10 21:09:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031629.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Thu Feb 10 21:11:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031630.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Thu Feb 10 21:58:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031631.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Feb 10 22:04:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031632.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Thu Feb 10 22:07:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031633.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Thu Feb 10 22:07:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031634.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Thu Feb 10 22:07:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031635.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Thu Feb 10 22:11:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031636.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Thu Feb 10 22:11:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031637.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Feb 10 22:12:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031638.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Feb 10 22:12:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031639.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Thu Feb 10 23:01:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031643.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 23:21:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031648.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 23:24:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031649.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 23:26:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031650.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 23:29:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031651.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 23:31:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031652.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Feb 10 23:46:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031654.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 00:01:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031659.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 00:15:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031660.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Fri Feb 11 00:24:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031661.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 00:27:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031662.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 00:29:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031663.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 00:32:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031664.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 00:34:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031665.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 00:36:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031666.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Feb 11 00:40:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031667.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Fri Feb 11 00:46:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031668.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Feb 11 01:08:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031669.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Feb 11 01:10:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031670.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Feb 11 01:12:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031671.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Feb 11 01:14:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031672.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Feb 11 01:16:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031673.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Feb 11 01:18:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031674.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Feb 11 01:20:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031675.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Feb 11 01:22:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031676.html
1
0
Summary of messages to the zope-tests list.
Period Wed Feb 9 12:00:00 2011 UTC to Thu Feb 10 12:00:00 2011 UTC.
There were 87 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 31 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 33 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:02:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031479.html
Subject: FAILED : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:03:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031480.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:54:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031496.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 16:01:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031497.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 16:08:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031499.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 16:15:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031500.html
Subject: FAILED : winbot / z3c.form_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 22:29:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031538.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 22:54:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031539.html
Subject: FAILED : winbot / z3c.template_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:02:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031541.html
Subject: FAILED : winbot / z3c.layer.ready2go_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:08:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031542.html
Subject: FAILED : winbot / z3c.formui_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:09:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031543.html
Subject: FAILED : winbot / z3c.tabular_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:12:06 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031544.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:13:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031545.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:32:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031546.html
Subject: FAILED : winbot / z3c.pdftemplate_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:36:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031547.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:37:32 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031548.html
Subject: FAILED : winbot / z3c.macro_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:38:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031549.html
Subject: FAILED : winbot / z3c.pagelet_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 23:43:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031550.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 14:54:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031474.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 14:56:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031475.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 14:57:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031476.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 14:59:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031477.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:00:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031478.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:06:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031481.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:11:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031482.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:17:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031483.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 15:18:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031484.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:20:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031485.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:22:21 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031486.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 15:26:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031487.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:27:05 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031488.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:31:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031489.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:34:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031490.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Feb 9 15:35:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031491.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:36:29 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031492.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 15:44:40 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031493.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 15:47:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031494.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Wed Feb 9 15:54:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031495.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 16:04:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031498.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 16:16:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031501.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 16:25:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031502.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Feb 9 16:33:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031503.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 16:45:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031504.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 16:57:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031505.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:06:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031506.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:08:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031507.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:09:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031508.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Feb 9 17:10:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031509.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:11:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031510.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:13:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031511.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:20:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031512.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 17:22:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031513.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:27:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031514.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:34:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031515.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Wed Feb 9 17:35:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031516.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:39:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031517.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:45:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031518.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:51:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031519.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Feb 9 17:57:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031520.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 18:31:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031521.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 19:26:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031522.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Wed Feb 9 19:46:39 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031523.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Wed Feb 9 19:47:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031524.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Wed Feb 9 19:47:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031525.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Feb 9 20:21:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031526.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Wed Feb 9 21:11:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031527.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Wed Feb 9 21:16:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031528.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Wed Feb 9 21:58:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031529.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Wed Feb 9 22:06:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031530.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Wed Feb 9 22:06:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031531.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Wed Feb 9 22:06:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031532.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Wed Feb 9 22:10:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031533.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Wed Feb 9 22:11:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031534.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Wed Feb 9 22:11:57 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031535.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Wed Feb 9 22:12:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031536.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Wed Feb 9 22:12:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031537.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Wed Feb 9 23:01:03 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031540.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Thu Feb 10 00:24:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031551.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Thu Feb 10 00:46:38 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031552.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Feb 10 01:09:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031553.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Feb 10 01:11:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031554.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Feb 10 01:13:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031555.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Feb 10 01:15:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031556.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Feb 10 01:17:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031557.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Feb 10 01:19:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031558.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Feb 10 01:21:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031559.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Feb 10 01:23:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031560.html
1
0
Summary of messages to the zope-tests list.
Period Tue Feb 8 12:00:00 2011 UTC to Wed Feb 9 12:00:00 2011 UTC.
There were 97 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 32 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 42 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:25:26 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031383.html
Subject: FAILED : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:27:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031384.html
Subject: FAILED : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 15:20:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031396.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 15:23:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031397.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 15:39:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031401.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 19:59:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031437.html
Subject: FAILED : winbot / z3c.form_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 22:19:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031450.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 22:44:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031451.html
Subject: FAILED : winbot / z3c.template_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:08:35 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031453.html
Subject: FAILED : winbot / z3c.layer.ready2go_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:13:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031454.html
Subject: FAILED : winbot / z3c.formui_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:15:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031455.html
Subject: FAILED : winbot / z3c.tabular_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:17:45 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031456.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:18:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031457.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:37:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031458.html
Subject: FAILED : winbot / z3c.pdftemplate_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:41:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031459.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:43:20 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031460.html
Subject: FAILED : winbot / z3c.macro_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:44:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031461.html
Subject: FAILED : winbot / z3c.pagelet_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:49:07 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031462.html
Subject: FAILED : winbot / zope.app.locales_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 23:53:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031463.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:11:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031377.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:12:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031378.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:14:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031379.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:15:44 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031380.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:17:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031381.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:22:41 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031382.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:28:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031385.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:34:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031386.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:39:04 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031387.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:42:10 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031388.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:44:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031389.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:48:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031390.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:53:52 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031391.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 14:55:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031392.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 15:07:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031393.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 15:16:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031394.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 15:18:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031395.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Feb 8 15:29:19 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031398.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 15:32:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031399.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 15:37:48 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031400.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Feb 8 15:46:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031402.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 15:56:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031403.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 16:04:46 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031404.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 16:13:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031405.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Feb 8 16:21:22 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031406.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 16:33:12 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031407.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 16:45:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031408.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 16:54:08 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031409.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 16:55:51 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031410.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 16:57:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031411.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Feb 8 16:58:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031412.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 16:59:11 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031413.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:00:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031414.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:07:43 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031415.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 17:11:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031416.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:14:28 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031417.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:21:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031418.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Feb 8 17:23:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031419.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:27:16 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031420.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:32:56 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031421.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:38:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031422.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:44:17 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031423.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:44:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031424.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:47:50 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031425.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:50:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031426.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:53:30 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031427.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 17:56:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031428.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 18:14:36 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031429.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 18:19:42 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031430.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 18:41:15 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031431.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Feb 8 19:10:49 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031432.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 19:14:33 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031433.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Tue Feb 8 19:46:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031434.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Feb 8 19:47:23 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031435.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Feb 8 19:47:34 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031436.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Feb 8 20:09:47 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031438.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Feb 8 21:04:59 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031439.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Tue Feb 8 21:11:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031440.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Tue Feb 8 21:58:18 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031441.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Feb 8 22:00:01 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031442.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Tue Feb 8 22:06:55 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031443.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Tue Feb 8 22:06:58 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031444.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Tue Feb 8 22:07:02 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031445.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Tue Feb 8 22:10:53 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031446.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Tue Feb 8 22:12:00 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031447.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Feb 8 22:12:54 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031448.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Feb 8 22:13:27 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031449.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Tue Feb 8 23:01:13 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031452.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Wed Feb 9 00:24:14 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031464.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Wed Feb 9 00:46:24 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031465.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Feb 9 01:07:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031466.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Feb 9 01:09:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031467.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Feb 9 01:11:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031468.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Feb 9 01:13:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031469.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Feb 9 01:15:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031470.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Feb 9 01:17:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031471.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Feb 9 01:19:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031472.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Feb 9 01:21:09 EST 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-February/031473.html
1
0