Zope-Dev
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1999 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1998 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
December 2010
- 38 participants
- 63 discussions
Re: [Zope-dev] SVN: Zope/branches/2.13/ fix `LazyMap` to avoid unnecessary function calls when not accessing items in order (fixes http://dev.plone.org/plone/ticket/9018)
by Tres Seaver 15 Dec '10
by Tres Seaver 15 Dec '10
15 Dec '10
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 12/14/2010 09:12 AM, Andreas Zeidler wrote:
> Log message for revision 118863:
> fix `LazyMap` to avoid unnecessary function calls when not accessing
> items in order (fixes http://dev.plone.org/plone/ticket/9018)
First, thanks for looking into this issue.
> Changed:
> U Zope/branches/2.13/doc/CHANGES.rst
> U Zope/branches/2.13/src/Products/ZCatalog/Lazy.py
> U Zope/branches/2.13/src/Products/ZCatalog/tests/test_lazy.py
>
> -=-
> Modified: Zope/branches/2.13/doc/CHANGES.rst
> ===================================================================
> --- Zope/branches/2.13/doc/CHANGES.rst 2010-12-14 13:24:24 UTC (rev 118862)
> +++ Zope/branches/2.13/doc/CHANGES.rst 2010-12-14 14:12:11 UTC (rev 118863)
> @@ -11,6 +11,8 @@
> Bugs Fixed
> ++++++++++
>
> +- Fix `LazyMap` to avoid unnecessary function calls.
> +
> - LP 686664: WebDAV Lock Manager ZMI view wasn't accessible.
>
> 2.13.1 (2010-12-07)
>
> Modified: Zope/branches/2.13/src/Products/ZCatalog/Lazy.py
> ===================================================================
> --- Zope/branches/2.13/src/Products/ZCatalog/Lazy.py 2010-12-14 13:24:24 UTC (rev 118862)
> +++ Zope/branches/2.13/src/Products/ZCatalog/Lazy.py 2010-12-14 14:12:11 UTC (rev 118863)
> @@ -145,44 +145,28 @@
> # Don't access data until necessary
>
> def __init__(self, func, seq, length=None):
> - self._seq = seq
> - self._data = []
> - self._func = func
> + self._seq=seq
> + self._func=func
> if length is not None:
> - self._len = length
> + self._len=length
Please don't un-PEP8 a cleaned-up module: leave spaces around
operators. If that was unintentional (maybe you pasted from a copy of a
file made before the module was cleaned up?), then you still need to
review the diff and edit out unintended changes first.
> else:
> self._len = len(seq)
> + self._marker = object()
> + self._data = [self._marker] * self._len
Have you measured the impact of pre-allocating here for very large
sequences? You are trading off space in return for speed for the
(relatively) rare case of random-access indexing off-the end.
I'm *sure* that is a not a good trade-off for all cases: the catalog is
often used for queries which return result sets in the order of 10^5 or
more objects, and *very* rarely is it accessed randomly (I had never
seen it before reading the bug entry you cite). The normal case is to
take the first few entries (batch_size * batch_number) from the huge set.
I think you would be better off finding a way to inject your style of
LazyMap into the catalog for the random-access case, e.g., by passing
'_lazy_map' into the methods you are using.
BTW, another interesting alternative impplementation might be to use a
dictionary instead of a list for 'data'. You could then avoid any
pre-allocation at all.
> - def __getitem__(self, index):
> - data = self._data
> + def __getitem__(self,index):
> + data=self._data
> try:
> - s = self._seq
> + s=self._seq
> except AttributeError:
> return data[index]
While we're at it, the 'try: ... except:' here is wasteful and slow.
Lazy objects aren't persistent, and the '_seq' attribute is added
unconditionally in '__init__'.
> - i = index
> - if i < 0:
> - i = len(self) + i
> - if i < 0:
> - raise IndexError(index)
> + value = data[index]
> + if value is self._marker:
> + value = data[index] = self._func(s[index])
> + return value
> - ind = len(data)
> - if i < ind:
> - return data[i]
> - ind = ind - 1
>
> - func = self._func
> - while i > ind:
> - try:
> - ind = ind + 1
> - data.append(func(s[ind]))
> - except IndexError:
> - del self._func
> - del self._seq
> - raise IndexError(index)
> - return data[i]
> -
> -
Finally, whatever cleanup we settle on also needs to be forward-ported
to the trunk.
Tres.
- --
===================================================================
Tres Seaver +1 540-429-0999 tseaver(a)palladion.com
Palladion Software "Excellence by Design" http://palladion.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAk0HpV0ACgkQ+gerLs4ltQ4FsQCg2zpfEn+Hih6lNBqboQJDDBl5
7cIAn1rnqKtXsBv7j/s+PlcK0Nals7m1
=b/uG
-----END PGP SIGNATURE-----
2
1
Summary of messages to the zope-tests list.
Period Mon Dec 13 12:00:00 2010 UTC to Tue Dec 14 12:00:00 2010 UTC.
There were 92 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 30 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 39 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 16:02:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026515.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:02:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026536.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:03:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026537.html
Subject: FAILED : winbot / z3c.xmlhttp_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 22:13:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026578.html
Subject: FAILED : winbot / z3c.language.negotiator_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 22:34:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026579.html
Subject: FAILED : winbot / zope.broken_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 22:51:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026580.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 22:52:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026581.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 22:59:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026582.html
Subject: FAILED : winbot / z3c.zrtresource_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 23:05:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026584.html
Subject: FAILED : winbot / zope.browserresource_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 23:10:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026585.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 23:16:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026586.html
Subject: FAILED : winbot / zope.container_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 23:19:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026587.html
Subject: FAILED : winbot / z3c.jsonrpcproxy_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 23:19:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026588.html
Subject: FAILED : winbot / zope.traversing_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 23:45:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026589.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Dec 14 06:02:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026600.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Dec 14 06:03:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026601.html
Tests passed OK
---------------
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 15:18:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026510.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 15:26:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026511.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Dec 13 15:35:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026512.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 15:44:14 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026513.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Dec 13 15:52:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026514.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 16:10:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026516.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 16:19:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026517.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Dec 13 16:27:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026518.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 16:38:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026519.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 16:50:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026520.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Dec 13 17:00:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026521.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 17:12:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026522.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Dec 13 17:23:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026523.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 18:19:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026524.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:30:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026525.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:31:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026526.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:33:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026527.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:34:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026528.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:35:57 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026529.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:41:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026530.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:47:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026531.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:53:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026532.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:56:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026533.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:58:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026534.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 18:59:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026535.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:03:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026538.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:15:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026539.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 19:15:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026540.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:23:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026541.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:26:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026542.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:29:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026543.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:31:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026544.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:31:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026545.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:33:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026546.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:35:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026547.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:44:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026548.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:45:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026549.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Dec 13 19:45:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026550.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Dec 13 19:46:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026551.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:46:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026553.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Dec 13 19:46:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026552.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:48:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026554.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:49:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026555.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:51:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026556.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:54:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026557.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 19:57:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026558.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 20:03:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026559.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 20:04:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026560.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 20:09:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026561.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 20:11:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026562.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Dec 13 20:11:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026563.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 20:15:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026564.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 20:16:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026565.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Dec 13 20:21:28 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026566.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Dec 13 21:06:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026567.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Mon Dec 13 21:11:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026568.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Mon Dec 13 21:58:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026569.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Dec 13 22:02:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026570.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Mon Dec 13 22:07:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026571.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Mon Dec 13 22:07:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026572.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Mon Dec 13 22:07:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026573.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Dec 13 22:08:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026574.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Dec 13 22:08:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026575.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Dec 13 22:08:57 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026576.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Mon Dec 13 22:11:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026577.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Mon Dec 13 23:01:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026583.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Tue Dec 14 00:21:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026590.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Tue Dec 14 00:42:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026591.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Dec 14 01:05:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026592.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Dec 14 01:07:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026593.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Dec 14 01:09:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026594.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Dec 14 01:11:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026595.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Dec 14 01:13:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026596.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Dec 14 01:15:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026597.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Dec 14 01:17:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026598.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Dec 14 01:19:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026599.html
1
0
Hi,
Theuni is still away - presumably pining for snow on some sun-drenched
beach - you've got to make do with me!
Weekly developer meeting today, 14th December, at 15:OO GMT/UTC on #zope
Possible topics:
* next bug day
* ironing out bugs reported by the buildbots.
See you then!
Charlie
--
Charlie Clark
Managing Director
Clark Consulting & Research
German Office
Helmholtzstr. 20
Düsseldorf
D- 40215
Tel: +49-211-600-3657
Mobile: +49-178-782-6226
1
0
Hi,
here's a quick wrap-up of what I did to zope.i18n today:
- I merged the duplicate bugs asking for ngettext support.
- I started working on Sphinx documentation by taking Tres' example
from zope.event, playing with it, and start pulling in some API
documentation. It's really nowhere useful yet, but hey, it's a start.
- I merged a (long missing) NAME_RE change from zope.tal.taldefs to
zope.i18n. I'm feeling somewhat uncomfortable with having to just
blindly copy it over: neither packages test for the change and I was
unable to locate where it came from as it seemed to have happened
during the large rename/restructure back in 2003.
So, what's up for everyone else who joined the bug day?
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
3
6
Hello developers,
As I am packaging Zope for Ubuntu, I encounter various small problems,
like incorrect copyrights, wrong dependencies, and bugs. I would like
to be able to make minor releases when there are fixes.
At the moment, I have fixes for the following:
zope.app.content
zope.app.folder
zope.app.zopeappgenerations
zope.html
zope.ucol
zc.datetimewidget
Could I get pypi admin access to all packages in ZTK 1.0?
--
Gediminas Paulauskas
SchoolTool release manager
2
1
Summary of messages to the zope-tests list.
Period Sun Dec 12 12:00:00 2010 UTC to Mon Dec 13 12:00:00 2010 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 / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 11:29:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026403.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:18:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026414.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:34:20 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026419.html
Subject: FAILED : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 15:19:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026421.html
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 15:53:45 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026425.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 16:44:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026434.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 16:59:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026437.html
Subject: FAILED : winbot / z3c.xmlhttp_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 22:05:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026481.html
Subject: FAILED : winbot / z3c.language.negotiator_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 22:25:57 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026489.html
Subject: FAILED : winbot / zope.broken_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 22:56:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026490.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 22:56:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026491.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 23:05:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026493.html
Subject: FAILED : winbot / z3c.zrtresource_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 23:12:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026494.html
Subject: FAILED : winbot / zope.browserresource_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 23:17:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026495.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 23:23:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026496.html
Subject: FAILED : winbot / zope.container_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 23:26:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026497.html
Subject: FAILED : winbot / z3c.jsonrpcproxy_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 23:26:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026498.html
Subject: FAILED : winbot / zope.traversing_py_265_32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 23:48:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026499.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 12:51:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026404.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 12:53:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026405.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:02:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026406.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:03:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026407.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:04:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026408.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:06:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026409.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:07:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026410.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:11:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026411.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:12:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026412.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:18:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026413.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:23:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026415.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:28:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026416.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:33:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026417.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 13:34:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026418.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 15:18:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026420.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Dec 12 15:27:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026422.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 15:36:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026423.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Dec 12 15:44:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026424.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 16:02:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026426.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 16:10:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026427.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 16:15:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026428.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 16:17:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026429.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Dec 12 16:19:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026430.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 16:29:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026431.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 16:36:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026432.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 16:41:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026433.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Dec 12 16:52:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026435.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 16:58:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026436.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:02:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026438.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 17:03:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026439.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:05:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026440.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:07:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026441.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:08:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026442.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:09:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026443.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:11:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026444.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Dec 12 17:14:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026445.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:18:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026446.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:20:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026447.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:20:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026448.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:21:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026449.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:23:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026450.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:24:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026451.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:29:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026452.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:31:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026453.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:34:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026454.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:35:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026455.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:36:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026456.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:37:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026457.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:38:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026458.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:38:32 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026459.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:39:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026460.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:44:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026461.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:44:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026462.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:45:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026463.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:49:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026464.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:49:57 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026465.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:50:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026466.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:54:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026467.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 17:56:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026468.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 18:00:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026469.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Dec 12 18:05:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026470.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 18:11:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026471.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 19:07:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026472.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Dec 12 19:46:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026473.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Dec 12 19:46:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026474.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Dec 12 19:47:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026475.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Dec 12 20:02:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026476.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Dec 12 20:58:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026477.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Sun Dec 12 21:11:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026478.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Dec 12 21:53:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026479.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Sun Dec 12 21:58:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026480.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sun Dec 12 22:07:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026482.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Sun Dec 12 22:07:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026483.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sun Dec 12 22:07:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026484.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Dec 12 22:08:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026485.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Dec 12 22:08:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026486.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Dec 12 22:09:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026487.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Sun Dec 12 22:10:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026488.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Sun Dec 12 23:01:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026492.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Mon Dec 13 00:21:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026500.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Mon Dec 13 00:44:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026501.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Dec 13 01:06:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026502.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Dec 13 01:08:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026503.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Dec 13 01:10:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026504.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Dec 13 01:12:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026505.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Dec 13 01:14:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026506.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Dec 13 01:16:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026507.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Dec 13 01:18:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026508.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Dec 13 01:20:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026509.html
1
0
Summary of messages to the zope-tests list.
Period Sat Dec 11 12:00:00 2010 UTC to Sun Dec 12 12:00:00 2010 UTC.
There were 103 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 38 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 5 from ct at gocept.com, 37 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Total languishing bugs for zopeapp: 2
From: ct at gocept.com
Date: Sat Dec 11 20:30:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026338.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:30:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026339.html
Subject: FAILED : Total languishing bugs for zopetoolkit: 194
From: ct at gocept.com
Date: Sat Dec 11 20:36:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026340.html
Subject: FAILED : Total languishing bugs for zope: 52
From: ct at gocept.com
Date: Sat Dec 11 20:40:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026344.html
Subject: FAILED : Total languishing bugs for zope2: 4
From: ct at gocept.com
Date: Sat Dec 11 20:45:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026348.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:45:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026350.html
Subject: FAILED: Repository policy check found errors in 330 projects
From: ct at gocept.com
Date: Sat Dec 11 21:10:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026361.html
Subject: FAILED : winbot / z3c.xmlhttp_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 22:10:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026372.html
Subject: FAILED : winbot / z3c.configurator_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 22:25:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026374.html
Subject: FAILED : winbot / z3c.language.negotiator_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 22:30:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026375.html
Subject: FAILED : winbot / zc.recipe.egg_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 22:53:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026376.html
Subject: FAILED : winbot / zc.queue_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 22:55:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026377.html
Subject: FAILED : winbot / z3c.breadcrumb_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 22:56:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026378.html
Subject: FAILED : winbot / zope.broken_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:00:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026379.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:00:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026380.html
Subject: FAILED : winbot / z3c.viewtemplate_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:05:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026382.html
Subject: FAILED : winbot / z3c.contents_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:08:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026383.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:12:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026384.html
Subject: FAILED : winbot / zc.lockfile_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:13:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026385.html
Subject: FAILED : winbot / z3c.zrtresource_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:15:20 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026386.html
Subject: FAILED : winbot / z3c.sampledata_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:16:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026387.html
Subject: FAILED : winbot / zope.browserresource_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:19:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026388.html
Subject: FAILED : winbot / zope.container_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:26:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026389.html
Subject: FAILED : winbot / z3c.jsonrpcproxy_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:26:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026390.html
Subject: FAILED : winbot / z3c.pdftemplate_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:31:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026391.html
Subject: FAILED : winbot / zope.traversing_py_265_32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 23:49:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026392.html
Tests passed OK
---------------
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 15:18:14 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026300.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 15:26:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026301.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Dec 11 15:35:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026302.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 15:44:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026303.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Dec 11 15:52:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026304.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 16:02:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026305.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 16:10:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026306.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 16:18:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026307.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Dec 11 16:26:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026308.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 16:37:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026309.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 16:48:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026310.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Dec 11 16:58:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026311.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 17:10:00 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026312.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Dec 11 17:21:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026313.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 18:16:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026314.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:09:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026315.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:11:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026316.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 19:12:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026317.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:12:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026318.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:13:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026319.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:15:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026320.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:21:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026321.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:27:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026322.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:32:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026323.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:38:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026324.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 19:43:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026325.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sat Dec 11 19:45:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026326.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Dec 11 19:46:20 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026327.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Dec 11 19:46:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026328.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:01:53 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026329.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:04:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026330.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sat Dec 11 20:07:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026331.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:21:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026332.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:22:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026333.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:23:38 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026334.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:25:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026335.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:28:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026336.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:30:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026337.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:38:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026341.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:39:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026342.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:39:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026343.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:41:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026345.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:42:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026346.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:44:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026347.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:45:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026349.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:48:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026351.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:50:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026352.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:54:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026353.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:57:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026354.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 20:57:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026355.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 21:02:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026356.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sat Dec 11 21:03:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026357.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 21:03:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026358.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 21:08:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026359.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 21:08:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026360.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Sat Dec 11 21:11:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026362.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sat Dec 11 21:13:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026363.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sat Dec 11 21:58:18 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026364.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Sat Dec 11 21:58:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026365.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sat Dec 11 22:06:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026366.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Sat Dec 11 22:06:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026367.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sat Dec 11 22:06:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026368.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sat Dec 11 22:08:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026369.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Dec 11 22:08:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026370.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sat Dec 11 22:08:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026371.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Sat Dec 11 22:11:01 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026373.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Sat Dec 11 23:01:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026381.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sun Dec 12 00:21:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026393.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sun Dec 12 00:42:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026394.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Dec 12 01:05:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026395.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Dec 12 01:07:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026396.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Dec 12 01:09:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026397.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Dec 12 01:11:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026398.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Dec 12 01:13:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026399.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Dec 12 01:15:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026400.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Dec 12 01:17:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026401.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Dec 12 01:19:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026402.html
3
2
Hello,
Could you please fix that version spec?
This is a forwarded message
From: buildbot(a)winbot.zope.org <buildbot(a)winbot.zope.org>
To: agroszer(a)gmail.com, zope-tests(a)zope.org
Date: Sunday, December 12, 2010, 5:49:55 AM
Subject: FAILED : winbot / zope.traversing_py_265_32
===8<==============Original message text===============
FAILED : winbot / zope.traversing_py_265_32
Build: http://winbot.zope.org/builders/zope.traversing_py_265_32/builds/0
Build Reason: The Nightly scheduler named 'zope.traversing nightly' triggered this build
Build Source Stamp: [branch zope.traversing/trunk] HEAD
Blamelist:
Buildbot: http://winbot.zope.org/
===8<===========End of original message text===========
--
Best regards,
Adam GROSZER mailto:agroszer@gmail.com
2
1
Summary of messages to the zope-tests list.
Period Thu Dec 9 12:00:00 2010 UTC to Fri Dec 10 12:00:00 2010 UTC.
There were 153 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 19 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 111 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 Dec 9 08:56:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026074.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:09:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026079.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:17:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026114.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:30:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026118.html
Subject: FAILED : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 16:03:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026147.html
Subject: FAILED : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 18:23:45 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026156.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:10:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026166.html
Subject: FAILED : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:22:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026171.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:49:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026183.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:49:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026184.html
Subject: FAILED : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Thu Dec 9 22:07:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026214.html
Subject: FAILED : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Dec 9 22:08:28 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026215.html
Subject: FAILED : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Dec 9 22:08:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026216.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 08:32:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026068.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 08:35:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026069.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 08:50:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026070.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 08:52:51 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026071.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 08:54:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026072.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 08:56:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026073.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 08:57:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026075.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 08:59:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026076.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:05:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026077.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:09:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026078.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:11:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026080.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:16:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026081.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:17:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026082.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:22:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026083.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:27:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026084.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:40:23 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026085.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:42:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026086.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:45:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026087.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:47:20 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026088.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:49:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026089.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:56:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026090.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:57:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026091.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:58:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026092.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 09:59:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026093.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:00:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026094.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:02:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026095.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:07:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026096.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:08:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026097.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:15:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026098.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:16:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026099.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:21:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026100.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:22:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026101.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:26:55 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026102.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:27:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026103.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 10:32:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026104.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 13:54:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026105.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 13:56:15 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026106.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:04:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026107.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:06:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026108.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:07:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026109.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:09:08 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026110.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:10:28 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026111.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:11:13 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026112.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:15:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026113.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:21:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026115.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:27:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026116.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:29:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026117.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:31:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026119.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:36:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026120.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 14:37:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026121.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:08:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026122.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:08:28 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026123.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:09:33 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026124.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:10:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026125.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:11:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026126.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:12:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026127.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:13:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026128.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:13:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026129.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:15:14 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026130.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:17:27 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026131.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 15:18:45 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026132.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:19:57 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026133.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:26:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026134.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:26:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026135.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 15:27:14 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026136.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:33:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026137.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:35:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026138.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Dec 9 15:36:16 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026139.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:38:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026140.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:43:37 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026141.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:44:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026142.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 15:45:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026143.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:49:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026144.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Dec 9 15:54:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026145.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 15:55:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026146.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 16:12:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026148.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 16:21:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026149.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Dec 9 16:30:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026150.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 16:40:59 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026151.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 16:52:26 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026152.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Dec 9 17:03:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026153.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 17:15:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026154.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Dec 9 17:26:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026155.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 18:47:35 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026157.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 18:49:39 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026158.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 18:57:28 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026159.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 18:58:50 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026160.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:00:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026161.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:01:29 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026162.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:02:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026163.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:04:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026164.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:08:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026165.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:13:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026167.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:19:24 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026168.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 19:19:58 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026169.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:22:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026170.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:23:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026172.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:28:31 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026173.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:30:19 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026174.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:43:12 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026175.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:44:40 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026176.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Thu Dec 9 19:46:02 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026177.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:46:09 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026178.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Dec 9 19:46:30 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026179.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Thu Dec 9 19:46:49 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026180.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:47:32 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026181.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:48:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026182.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:56:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026185.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 19:58:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026186.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:00:52 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026187.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:01:44 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026188.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:03:10 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026189.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:05:21 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026190.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:06:54 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026191.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:07:32 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026192.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Thu Dec 9 20:16:03 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026193.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:16:25 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026194.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:25:22 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026195.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:34:17 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026196.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:39:56 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026197.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Thu Dec 9 20:45:42 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026198.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Thu Dec 9 21:11:46 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026199.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Thu Dec 9 21:12:48 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026200.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Dec 9 21:14:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026201.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Dec 9 21:16:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026202.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Dec 9 21:18:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026203.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Dec 9 21:20:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026204.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Dec 9 21:22:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026205.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Dec 9 21:24:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026206.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Dec 9 21:26:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026207.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Dec 9 21:28:47 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026208.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Thu Dec 9 22:00:06 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026209.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Thu Dec 9 22:06:34 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026210.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Thu Dec 9 22:06:36 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026211.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Thu Dec 9 22:06:41 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026212.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Thu Dec 9 22:07:07 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026213.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Thu Dec 9 22:11:11 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026217.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Thu Dec 9 23:01:04 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026218.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Fri Dec 10 00:21:05 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026219.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Fri Dec 10 00:42:43 EST 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-December/026220.html
3
3
Hello,
One more windows failure.
Can we get rid of the part "coc"?
This is a forwarded message
From: buildbot(a)winbot.zope.org <buildbot(a)winbot.zope.org>
To: agroszer(a)gmail.com
Date: Friday, December 10, 2010, 5:43:31 PM
Subject: FAILED : winbot / zope.generations_py_265_32
===8<==============Original message text===============
FAILED : winbot / zope.generations_py_265_32
Build: http://winbot.zope.org/builders/zope.generations_py_265_32/builds/0
Build Reason: scheduler
Build Source Stamp: [branch zope.generations/trunk] 118792
Blamelist: asmith
Buildbot: http://winbot.zope.org/
===8<===========End of original message text===========
--
Best regards,
Adam GROSZER mailto:agroszer@gmail.com
2
2