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
November 2010
- 36 participants
- 65 discussions
03 Nov '10
Good day!
Refs:
http://pypi.python.org/pypi/RestrictedPython
I want to pass existing bound variables into the environment of some restricted code before running it.
This is similar to when globals are passed to compile_restricted_function.
The idea...
x = 42
y = 'foo'
src="""print x*2; print y; return printed"""
code=compile_restricted(src, '<string>', 'exec')
code.global['x'] = x # <- just dreaming, here.
code.global['y'] = y # <- just dreaming, here.
ans = exec(code) in restricted_globals
print ans # prints "84\n'foo'\n"
It's clear that passing in arbitrary objects is not feasible. But what if I'm prepared to constrain input to built-in numeric and string types, possibly in or with nested dicts?
In many cases the input will be large integer or float arrays, and I want to avoid any nasty
kludge such as printing those inputs into the top lines of the src ;). The src in the demo is a constant,
but in the application, it's provided by users via a list of pre-defined and user-created 'macros'.
If I'm missing something obvious, flames welcome!
--r.
Russ Ferriday --
CEO Topia Systems Ltd.
russf(a)topia.com -- +1 (805) 910 7877 -- www.topia.com
1
1
Summary of messages to the zope-tests list.
Period Tue Nov 2 13:00:00 2010 UTC to Wed Nov 3 13:00:00 2010 UTC.
There were 73 messages: 6 from Zope Tests, 4 from buildbot at pov.lt, 19 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 33 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:32:44 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022962.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:36:13 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022964.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:43:56 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022968.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:47:48 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022971.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:05:23 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022977.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:20:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022981.html
Subject: FAILED : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 16:11:20 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022993.html
Subject: FAILED : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Nov 2 21:00:20 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023010.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:29:03 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022960.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:30:57 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022961.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:34:30 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022963.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:39:52 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022965.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:41:39 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022966.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:41:53 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022967.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:45:57 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022969.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:47:23 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022970.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:53:27 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022972.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:54:32 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022973.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 13:57:35 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022974.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:01:13 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022975.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:01:34 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022976.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:07:42 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022978.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:12:05 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022979.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:16:35 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022980.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:21:10 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022982.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:24:05 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022983.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:27:07 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022984.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:29:59 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022985.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:32:54 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022986.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:41:56 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022987.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 14:51:19 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022988.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 15:13:01 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022989.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 15:53:07 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022990.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 15:59:22 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022991.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Nov 2 16:05:24 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022992.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 16:23:30 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022994.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Nov 2 16:34:07 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022995.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 16:43:39 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022996.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Nov 2 16:52:22 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022997.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 17:01:24 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022998.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 17:09:40 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022999.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 17:17:30 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023000.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Nov 2 17:25:46 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023001.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 17:35:50 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023002.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 17:46:54 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023003.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Nov 2 17:57:45 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023004.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 18:09:03 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023005.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Nov 2 18:20:05 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023006.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 19:16:05 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023007.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 20:11:21 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023008.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Tue Nov 2 20:59:07 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023009.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Nov 2 21:00:55 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023011.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Nov 2 21:05:59 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023012.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Nov 2 22:01:31 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023013.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Tue Nov 2 22:11:32 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023014.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Nov 2 22:37:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023015.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Nov 2 22:39:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023016.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Nov 2 22:41:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023017.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Nov 2 22:43:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023018.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Nov 2 22:45:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023019.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Nov 2 22:47:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023020.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Nov 2 22:56:33 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023021.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Tue Nov 2 22:58:47 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023022.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Tue Nov 2 23:06:58 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023023.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Tue Nov 2 23:07:03 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023024.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Tue Nov 2 23:07:04 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023025.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Tue Nov 2 23:08:07 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023026.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Nov 2 23:08:53 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023027.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Nov 2 23:09:15 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023028.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Tue Nov 2 23:12:02 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023029.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Wed Nov 3 00:01:57 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023030.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Wed Nov 3 01:23:17 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023031.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Wed Nov 3 01:44:58 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/023032.html
4
3
Summary of messages to the zope-tests list.
Period Mon Nov 1 13:00:00 2010 UTC to Tue Nov 2 13:00:00 2010 UTC.
There were 73 messages: 6 from Zope Tests, 4 from buildbot at pov.lt, 19 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 33 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:06:44 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022889.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:10:02 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022892.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:13:26 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022894.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:17:00 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022897.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:38:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022905.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:48:23 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022908.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:03:16 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022887.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:04:59 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022888.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:08:23 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022890.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:09:45 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022891.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:11:40 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022893.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:15:11 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022895.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:15:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022896.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:20:52 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022898.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:23:01 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022899.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:26:21 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022900.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:29:00 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022901.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:30:29 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022902.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:34:25 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022903.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:35:50 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022904.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:39:52 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022906.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 13:44:14 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022907.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 14:19:41 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022909.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 14:22:29 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022910.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 14:25:19 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022911.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 14:28:03 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022912.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 14:30:46 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022913.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 14:39:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022914.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 14:48:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022915.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 14:57:50 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022916.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 15:03:55 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022917.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 15:10:01 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022918.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Nov 1 15:16:04 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022919.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 16:19:11 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022920.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 16:28:13 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022921.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 1 16:37:16 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022922.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 16:45:50 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022923.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 1 16:54:42 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022924.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 17:03:55 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022925.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 17:12:17 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022926.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 17:20:12 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022927.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 1 17:28:22 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022928.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 17:38:39 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022929.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 17:49:47 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022930.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 1 18:00:23 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022931.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 18:11:32 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022932.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 1 18:22:27 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022933.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 19:18:41 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022934.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 20:14:16 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022935.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 1 20:58:43 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022936.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 1 20:59:53 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022937.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 1 21:00:23 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022938.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 1 21:09:29 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022939.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Nov 1 22:05:04 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022940.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Mon Nov 1 22:13:01 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022941.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Nov 1 22:36:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022942.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Mon Nov 1 22:38:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022943.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Nov 1 22:40:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022944.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Nov 1 22:42:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022945.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Nov 1 22:44:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022946.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Mon Nov 1 22:46:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022947.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Nov 1 23:00:57 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022948.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Mon Nov 1 23:02:31 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022949.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 1 23:06:12 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022950.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Mon Nov 1 23:06:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022951.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Mon Nov 1 23:06:50 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022952.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Mon Nov 1 23:06:52 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022953.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 1 23:07:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022954.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Nov 1 23:07:57 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022955.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Mon Nov 1 23:11:05 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022956.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Tue Nov 2 00:01:53 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022957.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Tue Nov 2 01:23:10 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022958.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Tue Nov 2 01:44:55 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022959.html
1
0
Hi all,
at the Zope summit in September, we were talking about what Zope
actually is or should be and how to define the goal of the Zope
project. This led to the idea of identifying the functional areas
of Zope. I'd like to pursue this by starting a discussion about
Zope's functional areas among the developer community and hope to
come up with a number of commonly agreed-upon items. Wherever it
matters, I suggest limiting ourselves to discussing the ZTK in
order to keep things focussed.
As functional areas (for some examples, see below), we consider
diverse, broadly defined tasks and problems that a web developer
is being faced with, and that a web framework ought to have an
answer for. We hope to be able to define better what Zope is and
is not and how it compares to other web frameworks by starting
from a set of functional areas and trying to state Zope's answer
to each of them.
Another benefit from having a grip on functional areas of Zope
the project would be the possibility to organise the large and
grown set of individual packages that make up Zope's code.
To get the discussion started, I'll give a few random examples of
functional areas that we thought of immediately:
- software architecture (interfaces, components)
- data persistence (ZODB)
- URL resolution (object traversal)
- form generation (form libs for HTML forms, other possibilities?)
- resource handling (CSS, Javascript delivery)
- client-side programming framework (no good solution so far, people use
all sorts of Javascript technologies and programming styles)
I hope for the discussion to produce a list of functional areas
that most developers agree upon, maybe further areas that need more
consideration, and possibly even some clues about Zope's answers to the
challenges of each functional area.
Thank you very much for your participation.
--
Thomas
3
6
Summary of messages to the zope-tests list.
Period Sun Oct 31 13:00:00 2010 UTC to Mon Nov 1 13:00:00 2010 UTC.
There were 73 messages: 6 from Zope Tests, 4 from buildbot at pov.lt, 19 from buildbot at winbot.zope.org, 11 from ccomb at free.fr, 33 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:26:44 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022831.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:30:29 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022835.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:31:19 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022836.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:34:52 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022838.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:59:31 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022848.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:06:25 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022850.html
Tests passed OK
---------------
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 16:19:01 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022814.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 16:27:55 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022815.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Oct 31 16:36:43 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022816.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 16:45:15 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022817.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Oct 31 16:54:06 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022818.html
Subject: OK : winbot / ztk_10 py_244_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 17:03:11 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022819.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 17:11:29 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022820.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 17:19:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022821.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Oct 31 17:27:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022822.html
Subject: OK : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 17:37:27 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022823.html
Subject: OK : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 17:48:22 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022824.html
Subject: OK : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Oct 31 17:58:56 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022825.html
Subject: OK : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 18:10:00 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022826.html
Subject: OK : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Oct 31 18:20:46 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022827.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 19:16:28 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022828.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:23:04 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022829.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:24:55 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022830.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:27:22 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022832.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:28:33 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022833.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:29:17 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022834.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:33:07 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022837.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:36:08 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022839.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:41:18 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022840.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:41:47 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022841.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:47:22 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022842.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:47:31 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022843.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:51:37 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022844.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:53:35 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022845.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:55:40 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022846.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 19:57:47 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022847.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:02:08 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022849.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:10:30 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022851.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 20:11:38 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022852.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:13:23 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022853.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:16:15 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022854.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:18:59 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022855.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:21:46 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022856.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:30:42 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022857.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:39:45 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022858.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:48:47 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022859.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 20:54:53 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022860.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Oct 31 20:58:43 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022861.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Oct 31 20:59:45 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022862.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Oct 31 21:00:30 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022863.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 21:01:00 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022864.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Sun Oct 31 21:06:47 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022865.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Sun Oct 31 21:07:03 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022866.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Sun Oct 31 22:01:43 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022867.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Sun Oct 31 22:11:02 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022868.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Oct 31 22:32:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022869.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Sun Oct 31 22:34:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022870.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Oct 31 22:36:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022871.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Oct 31 22:38:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022872.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Oct 31 22:40:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022873.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Sun Oct 31 22:42:49 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022874.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Sun Oct 31 22:56:38 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022875.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Sun Oct 31 22:58:27 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022876.html
Subject: OK : Bluebream / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Sun Oct 31 23:07:29 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022877.html
Subject: OK : Bluebream / Python2.6.5 64bit linux
From: ccomb at free.fr
Date: Sun Oct 31 23:07:30 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022878.html
Subject: OK : Bluebream / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Sun Oct 31 23:07:32 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022879.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Sun Oct 31 23:10:17 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022880.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Oct 31 23:10:46 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022881.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Sun Oct 31 23:10:58 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022882.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Sun Oct 31 23:11:15 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-October/022883.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Mon Nov 1 00:01:17 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022884.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Mon Nov 1 01:22:55 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022885.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Mon Nov 1 01:44:58 EDT 2010
URL: http://mail.zope.org/pipermail/zope-tests/2010-November/022886.html
1
0