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
Hi,
today is bug day and I've been hacking away on the nightly test result
aggregator script a bit to make the output more readable for the large
number of results we get every night.
Also, I'll be around for the 3pm UTC IRC meeting today.
Christian
--
Christian Theune · ct(a)gocept.com
gocept gmbh & co. kg · forsterstraße 29 · 06112 halle (saale) · germany
http://gocept.com · tel +49 345 1229889 0 · fax +49 345 1229889 1
Zope and Plone consulting and development
2
2
I've been porting some zope.* modules that have C-extensions to Python
3, and with the C-preprocessor you have so many possibilities that I
get all confused. So I'd like some opinions. Or onions. Or something.
The big issue is the module definition, which is quite different in
Python 2 and Python 3. What I ended up with in zope.proxy was
something like this:
----------------------------------
#if PY_MAJOR_VERSION >= 3
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT,
"_zope_proxy_proxy", /* m_name */
module___doc__, /* m_doc */
-1, /* m_size */
module_functions, /* m_methods */
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
NULL, /* m_free */
};
#endif
static PyObject *
moduleinit(void)
{
PyObject *m;
#if PY_MAJOR_VERSION >= 3
m = PyModule_Create(&moduledef);
#else
m = Py_InitModule3("_zope_proxy_proxy",
module_functions, module___doc__);
#endif
if (m == NULL)
return NULL;
if (empty_tuple == NULL)
empty_tuple = PyTuple_New(0);
ProxyType.tp_free = _PyObject_GC_Del;
if (PyType_Ready(&ProxyType) < 0)
return NULL;
Py_INCREF(&ProxyType);
PyModule_AddObject(m, "ProxyBase", (PyObject *)&ProxyType);
if (api_object == NULL) {
api_object = PyCObject_FromVoidPtr(&wrapper_capi, NULL);
if (api_object == NULL)
return NULL;
}
Py_INCREF(api_object);
PyModule_AddObject(m, "_CAPI", api_object);
return m;
}
#if PY_MAJOR_VERSION < 3
PyMODINIT_FUNC
init_zope_proxy_proxy(void)
{
moduleinit();
}
#else
PyMODINIT_FUNC
PyInit__zope_proxy_proxy(void)
{
return moduleinit();
}
#endif
----------------------------------
As you see, there are loads of #if PY_MAJOR_VERSION >= 3 in there. And
three methods (I took this from Martin v Löwis work on zope.interface)
for the module init, as they have different profiles and names in
Python 2 and Python3.
This may be seen as quite messy, and many other compatibility issues
between 2 and 3 can be handled by defining macros and using #ifndefs.
So why not do the same for the module initialization? Said and done.
This is from zope.hookable:
----------------------------------
#if PY_MAJOR_VERSION >= 3
#define MOD_ERROR_VAL NULL
#define MOD_SUCCESS_VAL(val) val
#define MOD_INIT(name) PyMODINIT_FUNC PyInit_##name(void)
#define MOD_DEF(ob, name, doc, methods) \
static struct PyModuleDef moduledef = { \
PyModuleDef_HEAD_INIT, name, doc, -1, methods, }; \
ob = PyModule_Create(&moduledef);
#else
#define MOD_ERROR_VAL
#define MOD_SUCCESS_VAL(val)
#define MOD_INIT(name) void init##name(void)
#define MOD_DEF(ob, name, doc, methods) \
ob = Py_InitModule3(name, methods, doc);
#endif
MOD_INIT(_zope_hookable)
{
PyObject *m;
hookabletype.tp_new = PyType_GenericNew;
hookabletype.tp_free = _PyObject_GC_Del;
if (PyType_Ready(&hookabletype) < 0)
return MOD_ERROR_VAL;
MOD_DEF(m, "_zope_hookable",
"Provide an efficient implementation for hookable objects",
module_methods)
if (m == NULL) return MOD_ERROR_VAL;
if (PyModule_AddObject(m, "hookable", \
(PyObject *)&hookabletype) < 0)
return MOD_ERROR_VAL;
return MOD_SUCCESS_VAL(m);
}
----------------------------------
As you see, there is one block of macro definitions in the start, and
then just one function at the bottom. Benefits are that if you have
many C-extensions you can extract the macro definitions to a separate
file. Drawbacks are that MOD_INIT looks like a function, when it is in
fact a function definition. But I don't know, maybe C-programmers are
used to that sort of thing. :-) Also, it's far from complete, MOD_DEF
doesn't support the new module_reload and module_traverse things for
example, bt maybe that's fixable.
Which style do you prefer? I'll make zope.hookable, zope.i18nmessage
and zope.proxy use the same style if we can agree on one.
//Lennart
2
2
Summary of messages to the zope-tests list.
Period Mon Nov 29 13:00:00 2010 UTC to Tue Nov 30 13:00:00 2010 UTC.
There were 79 messages: 6 from Zope Tests, 4 from buildbot at pov.lt, 19 from buildbot at winbot.zope.org, 9 from ccomb at free.fr, 41 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:30:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025236.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:39:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025239.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:42:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025242.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:42:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025243.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:47:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025246.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:51:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025250.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:13:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025262.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:26:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025267.html
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 16:03:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025279.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:06:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025233.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:09:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025234.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:23:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025235.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:35:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025237.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:37:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025238.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:40:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025240.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:42:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025241.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:43:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025244.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:45:32 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025245.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:48:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025247.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:49:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025248.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:50:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025249.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:53:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025251.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:57:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025252.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:57:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025253.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 13:59:45 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025254.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:03:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025255.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:04:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025256.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:07:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025257.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:08:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025258.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:10:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025259.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:10:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025260.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:13:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025261.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:15:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025263.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:15:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025264.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:18:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025265.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:21:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025266.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:27:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025268.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:36:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025269.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:45:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025270.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:51:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025271.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 14:57:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025272.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 15:03:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025273.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 15:18:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025274.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 15:27:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025275.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 29 15:36:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025276.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 15:44:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025277.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 29 15:53:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025278.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 16:12:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025280.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 16:20:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025281.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 29 16:28:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025282.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 16:40:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025283.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 16:51:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025284.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 29 17:03:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025285.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 17:15:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025286.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 29 17:26:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025287.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 18:21:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025288.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 19:17:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025289.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 29 19:44:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025290.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 29 19:45:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025291.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 29 19:45:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025292.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 29 20:13:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025293.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 29 21:08:57 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025294.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Mon Nov 29 21:14:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025295.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Nov 29 21:30:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025296.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Nov 29 21:32:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025297.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Nov 29 21:34:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025298.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Nov 29 21:36:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025299.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Nov 29 21:38:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025300.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Nov 29 21:40:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025301.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Mon Nov 29 22:01:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025302.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 29 22:04:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025303.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Mon Nov 29 22:06:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025304.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Mon Nov 29 22:06:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025305.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Mon Nov 29 22:06:32 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025306.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 29 22:06:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025307.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 29 22:07:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025308.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 29 22:07:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025309.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Mon Nov 29 22:11:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025310.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Mon Nov 29 23:08:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025311.html
1
0
Hello,
zope.testing tests fail on windows.
The blamelist might not be real, because this is the first build.
This is a forwarded message
From: buildbot(a)winbot.zope.org <buildbot(a)winbot.zope.org>
To: agroszer(a)gmail.com
Date: Tuesday, November 30, 2010, 4:12:22 AM
Subject: FAILED : winbot / zope.testing_py_265_32
===8<==============Original message text===============
FAILED : winbot / zope.testing_py_265_32
Build: http://winbot.zope.org/builders/zope.testing_py_265_32/builds/0
Build Reason: scheduler
Build Source Stamp: [branch zope.testing/trunk] 118639
Blamelist: fdrake
Buildbot: http://winbot.zope.org/
===8<===========End of original message text===========
--
Best regards,
Adam GROSZER mailto:agroszer@gmail.com
2
1
Hi,
Zope 2 provides a command to ask it to re-open its log files thus
supporting outside logrotation.
We have a ZTK-based app and found that the server provides neither
signal handling to rotate logs nor a zopectl command. Does anybody
remember wether this was ever built?
I see an old discussion on the Python list
(http://mail.python.org/pipermail/python-dev/2006-January/059566.html)
but no conclusion.
If this isn't in yet, does anybody know what the right place would be?
(I guess the packages providing the main loops and configuring the
process would be the right ones.)
Christian
--
Christian Theune · ct(a)gocept.com
gocept gmbh & co. kg · forsterstraße 29 · 06112 halle (saale) · germany
http://gocept.com · tel +49 345 1229889 0 · fax +49 345 1229889 1
Zope and Plone consulting and development
4
7
Summary of messages to the zope-tests list.
Period Sun Nov 28 13:00:00 2010 UTC to Mon Nov 29 13:00:00 2010 UTC.
There were 79 messages: 6 from Zope Tests, 4 from buildbot at pov.lt, 19 from buildbot at winbot.zope.org, 9 from ccomb at free.fr, 41 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 13:53:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025157.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:06:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025161.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:06:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025162.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:10:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025165.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:12:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025167.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:16:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025171.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:40:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025180.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:51:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025183.html
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 16:02:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025189.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 13:29:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025154.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 13:32:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025155.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 13:47:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025156.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:03:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025158.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:04:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025159.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:06:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025160.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:08:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025163.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:08:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025164.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:10:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025166.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:13:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025168.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:14:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025169.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:15:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025170.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:20:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025172.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:21:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025173.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:22:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025174.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:26:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025175.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:29:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025176.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:31:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025177.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:36:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025178.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:36:14 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025179.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:41:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025181.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Nov 28 14:46:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025182.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 15:18:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025184.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 15:27:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025185.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Nov 28 15:36:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025186.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 15:45:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025187.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Nov 28 15:53:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025188.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 16:11:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025190.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 16:19:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025191.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Nov 28 16:28:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025192.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 16:39:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025193.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 16:50:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025194.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Nov 28 17:01:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025195.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 17:13:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025196.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Nov 28 17:24:20 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025197.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 18:20:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025198.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 19:17:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025199.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Nov 28 19:44:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025200.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Nov 28 19:45:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025201.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Nov 28 19:45:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025202.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Nov 28 20:13:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025203.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Nov 28 21:08:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025204.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Sun Nov 28 21:10:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025205.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Nov 28 21:32:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025206.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Nov 28 21:34:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025207.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Nov 28 21:36:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025208.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Nov 28 21:38:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025209.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Nov 28 21:40:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025210.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Nov 28 21:42:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025211.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Sun Nov 28 21:58:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025212.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Nov 28 22:04:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025213.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sun Nov 28 22:06:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025214.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Sun Nov 28 22:06:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025215.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sun Nov 28 22:06:45 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025216.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Nov 28 22:07:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025217.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Nov 28 22:08:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025218.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Nov 28 22:08:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025219.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Sun Nov 28 22:10:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025220.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Sun Nov 28 23:01:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025221.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 02:39:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025222.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 02:42:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025223.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 02:45:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025224.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 02:47:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025225.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 02:50:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025226.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 02:59:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025227.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 03:08:32 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025228.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 03:17:32 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025229.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 03:23:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025230.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 03:29:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025231.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 29 03:34:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025232.html
1
0
Hello,
http://winbot.zope.org will now test the trunk of all the packages
listed here:
svn://svn.zope.org/repos/main/zope.wineggbuilder/trunk/project-list.cfg
It's a bit lazy, tests will kick in after some 10 minutes the tree is
stable. No nightlies (yet?) -- I'm afraid all test won't fit into 24 hours.
If anyone wants more packages tested, update the list and drop me a
mail.
--
Best regards,
Adam GROSZER mailto:agroszer@gmail.com
--
Quote of the day:
The society that scorns excellence in plumbing because plumbing is a humble activity and tolerates shoddiness in philosophy because it is an exalted activity will have neither good plumbing nor good philosophy. Neither its pipes nor its theories will hold water.
- John Gardner
1
0
Summary of messages to the zope-tests list.
Period Sat Nov 27 13:00:00 2010 UTC to Sun Nov 28 13:00:00 2010 UTC.
There were 75 messages: 6 from Zope Tests, 4 from buildbot at pov.lt, 21 from buildbot at winbot.zope.org, 9 from ccomb at free.fr, 5 from ct at gocept.com, 30 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:32:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025084.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:43:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025087.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:44:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025089.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:46:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025091.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:17:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025099.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:38:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025102.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:41:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025104.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 15:18:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025111.html
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 16:02:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025116.html
Subject: FAILED : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Nov 27 20:10:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025130.html
Subject: FAILED : Total languishing bugs for zopeapp: 2
From: ct at gocept.com
Date: Sat Nov 27 20:30:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025131.html
Subject: FAILED : Total languishing bugs for zopetoolkit: 194
From: ct at gocept.com
Date: Sat Nov 27 20:37:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025132.html
Subject: FAILED : Total languishing bugs for zope: 43
From: ct at gocept.com
Date: Sat Nov 27 20:40:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025133.html
Subject: FAILED: Repository policy check found errors in 337 projects
From: ct at gocept.com
Date: Sat Nov 27 21:12:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025137.html
Tests passed OK
---------------
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Nov 27 11:46:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025079.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Nov 27 11:58:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025080.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:09:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025081.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:11:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025082.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:26:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025083.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:39:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025085.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:41:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025086.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:44:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025088.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:44:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025090.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:51:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025092.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:52:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025093.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:57:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025094.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 13:59:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025095.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:03:32 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025096.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:08:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025097.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:12:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025098.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:34:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025100.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:36:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025101.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:40:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025103.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:48:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025105.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 14:55:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025106.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 15:02:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025107.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 15:07:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025108.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Nov 27 15:13:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025109.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 15:18:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025110.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 15:26:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025112.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Nov 27 15:36:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025113.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 15:44:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025114.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Nov 27 15:53:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025115.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 16:11:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025117.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 16:19:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025118.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Nov 27 16:27:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025119.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 16:38:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025120.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 16:49:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025121.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Nov 27 17:00:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025122.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 17:12:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025123.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Nov 27 17:23:20 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025124.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 18:19:28 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025125.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 19:15:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025126.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sat Nov 27 19:44:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025127.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Nov 27 19:44:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025128.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Nov 27 19:45:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025129.html
Subject: OK : Total languishing bugs for zope2: 0
From: ct at gocept.com
Date: Sat Nov 27 20:45:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025134.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Nov 27 21:06:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025135.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Sat Nov 27 21:10:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025136.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Nov 27 21:31:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025138.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Sat Nov 27 21:33:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025139.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Nov 27 21:35:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025140.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Nov 27 21:37:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025141.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Nov 27 21:39:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025142.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sat Nov 27 21:41:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025143.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Sat Nov 27 21:58:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025144.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Nov 27 22:02:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025145.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sat Nov 27 22:06:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025146.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sat Nov 27 22:06:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025148.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Sat Nov 27 22:06:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025147.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sat Nov 27 22:06:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025149.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Nov 27 22:07:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025150.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Nov 27 22:07:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025151.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Sat Nov 27 22:10:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025152.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Sat Nov 27 23:01:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025153.html
1
0
Summary of messages to the zope-tests list.
Period Fri Nov 26 13:00:00 2010 UTC to Sat Nov 27 13:00:00 2010 UTC.
There were 68 messages: 6 from Zope Tests, 4 from buildbot at pov.lt, 19 from buildbot at winbot.zope.org, 9 from ccomb at free.fr, 30 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:07:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025016.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:07:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025017.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:11:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025019.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:19:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025022.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:42:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025031.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:43:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025032.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:47:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025034.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 14:22:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025040.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Nov 26 17:04:45 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025052.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Fri Nov 26 17:26:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025054.html
Subject: FAILED : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 18:22:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025055.html
Subject: FAILED : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Nov 26 22:08:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025075.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 12:43:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025011.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 12:46:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025012.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:00:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025013.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:03:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025014.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:05:28 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025015.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:09:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025018.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:17:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025020.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:19:14 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025021.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:22:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025023.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:26:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025024.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:28:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025025.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:33:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025026.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:34:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025027.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:38:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025028.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:39:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025029.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:41:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025030.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:45:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025033.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 13:53:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025035.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 14:00:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025036.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 14:07:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025037.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 14:12:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025038.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 14:17:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025039.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 15:19:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025041.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 15:29:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025042.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Nov 26 15:38:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025043.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 15:48:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025044.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Fri Nov 26 15:57:28 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025045.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 16:06:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025046.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 16:15:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025047.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 16:23:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025048.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Nov 26 16:31:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025049.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 16:42:57 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025050.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 16:54:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025051.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 17:16:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025053.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 19:18:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025056.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Fri Nov 26 19:53:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025057.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Nov 26 19:54:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025058.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Nov 26 19:54:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025059.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Fri Nov 26 20:14:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025060.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Fri Nov 26 21:10:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025061.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Fri Nov 26 21:11:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025062.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Nov 26 21:34:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025063.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Fri Nov 26 21:36:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025064.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Nov 26 21:38:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025065.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Nov 26 21:40:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025066.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Nov 26 21:42:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025067.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Fri Nov 26 21:44:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025068.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Fri Nov 26 21:58:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025069.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Fri Nov 26 22:05:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025070.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Fri Nov 26 22:06:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025071.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Fri Nov 26 22:06:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025072.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Fri Nov 26 22:06:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025073.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Fri Nov 26 22:07:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025074.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Fri Nov 26 22:08:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025076.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Fri Nov 26 22:11:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025077.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Fri Nov 26 23:00:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025078.html
1
0
Summary of messages to the zope-tests list.
Period Thu Nov 25 13:00:00 2010 UTC to Fri Nov 26 13:00:00 2010 UTC.
There were 91 messages: 6 from Zope Tests, 4 from buildbot at pov.lt, 19 from buildbot at winbot.zope.org, 9 from ccomb at free.fr, 53 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 14:55:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024923.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 14:59:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024926.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:03:20 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024928.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:07:28 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024932.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:07:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024933.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:07:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024934.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:07:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024935.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:11:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024938.html
Subject: FAILED : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 15:12:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024939.html
Subject: FAILED : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 15:15:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024941.html
Subject: FAILED : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Nov 25 15:18:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024943.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:20:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024945.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:20:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024946.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:20:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024947.html
Subject: FAILED : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 15:20:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024948.html
Subject: FAILED : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Nov 25 15:23:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024950.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:31:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024952.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:31:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024953.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:31:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024954.html
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 15:33:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024956.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 16:11:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024968.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 16:11:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024969.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 16:12:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024970.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Nov 25 16:30:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024972.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Nov 25 16:52:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024974.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:06:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024999.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:10:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025000.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:11:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025001.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 14:31:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024920.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 14:34:20 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024921.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 14:48:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024922.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 14:56:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024924.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 14:58:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024925.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:01:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024927.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:03:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024929.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:05:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024930.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:07:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024931.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:08:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024936.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:09:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024937.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:14:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024940.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:17:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024942.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:20:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024944.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:23:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024949.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:30:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024951.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:33:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024955.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:36:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024957.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:39:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024958.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:41:45 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024959.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 15:41:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024960.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:44:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024961.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 15:50:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024962.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 15:53:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024963.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Nov 25 15:58:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024964.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 16:02:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024965.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 16:09:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024966.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Nov 25 16:11:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024967.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 16:20:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024971.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 16:42:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024973.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 17:48:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024975.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 18:45:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024976.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Nov 25 19:41:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024977.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Thu Nov 25 19:45:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024978.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Nov 25 19:45:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024979.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Nov 25 19:45:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024980.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Nov 25 20:52:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024981.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Thu Nov 25 21:11:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024982.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Nov 25 21:31:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024983.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Nov 25 21:33:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024984.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Nov 25 21:35:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024985.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Nov 25 21:37:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024986.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Nov 25 21:39:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024987.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Nov 25 21:41:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024988.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Nov 25 21:47:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024989.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Thu Nov 25 21:58:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024990.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Thu Nov 25 22:06:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024991.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Thu Nov 25 22:06:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024992.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Thu Nov 25 22:06:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024993.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Thu Nov 25 22:07:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024994.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Nov 25 22:08:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024995.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Nov 25 22:08:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024996.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Thu Nov 25 22:10:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024997.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Thu Nov 25 23:01:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/024998.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:13:57 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025002.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:15:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025003.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:15:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025004.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:16:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025005.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:20:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025006.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:21:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025007.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:21:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025008.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:23:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025009.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Fri Nov 26 03:31:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/025010.html
1
0