Re: [Zope-dev] Dependencies and future of zope 3

2008-09-05 Thread Dieter Maurer
David Pratt wrote at 2008-9-3 20:32 -0300:
>Can we also discuss the potential
>of only including testing setup for dev eggs and removing testing as
>part of a release when the eggs are packaged to pypi or other
>repository for consumption.

-1.

This would really only save disk space



-- 
Dieter
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Call for translating z3c.form

2008-09-05 Thread Christophe Combelles
Dan Korostelev a écrit :
> Hello, fellow users and developers of zope components!
> 
> I just added support for i18n in z3c.form, so it can be now translated
> to many languages. If you want to contribute to z3c.form
> internationalization, checkout the z3c.form.pot file from the
> z3c.form's trunk and translate it to your language, then send back to
> me or commit to the repo, if you are a committer.
> 
> Thanks!

the french translation is commited!

thanks for the i18n support!

Christophe
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] Zope Tests: 5 OK

2008-09-05 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Thu Sep  4 11:00:00 2008 UTC to Fri Sep  5 11:00:00 2008 UTC.
There were 5 messages: 5 from Zope Tests.


Tests passed OK
---

Subject: OK : Zope-2.8 Python-2.3.6 : Linux
From: Zope Tests
Date: Thu Sep  4 20:53:02 EDT 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-September/010115.html

Subject: OK : Zope-2.9 Python-2.4.4 : Linux
From: Zope Tests
Date: Thu Sep  4 20:54:32 EDT 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-September/010116.html

Subject: OK : Zope-2.10 Python-2.4.4 : Linux
From: Zope Tests
Date: Thu Sep  4 20:56:04 EDT 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-September/010117.html

Subject: OK : Zope-2.11 Python-2.4.4 : Linux
From: Zope Tests
Date: Thu Sep  4 20:57:34 EDT 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-September/010118.html

Subject: OK : Zope-trunk Python-2.4.4 : Linux
From: Zope Tests
Date: Thu Sep  4 20:59:05 EDT 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-September/010119.html

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] [Zope-Checkins] SVN: zdaemon/trunk/bootstrap.py Added support to bootstrap on Jython.

2008-09-05 Thread Chris Withers
Georgy Berdyshev wrote:
> +is_jython = sys.platform.startswith('java')
> +
> +if is_jython:
> +import subprocess
> +
>  ws = pkg_resources.working_set
> -assert os.spawnle(
> -os.P_WAIT, sys.executable, sys.executable,
> -'-c', 'from setuptools.command.easy_install import main; main()',
> -'-mqNxd', tmpeggs, 'zc.buildout',
> -{'PYTHONPATH':
> - ws.find(pkg_resources.Requirement.parse('setuptools')).location
> - },
> -) == 0
>  
> +if is_jython:
> +assert subprocess.Popen(
> +   [sys.executable] + ['-c', 
> +   'from setuptools.command.easy_install import main; main()',
> +   '-mqNxd', tmpeggs, 'zc.buildout'],
> +   env = dict(
> +PYTHONPATH = 
> +
> ws.find(pkg_resources.Requirement.parse('setuptools')).location
> +   ),
> +).wait() == 0
> +
> +else:
> +assert os.spawnle(
> +os.P_WAIT, sys.executable, sys.executable,
> +'-c', 'from setuptools.command.easy_install import main; main()',
> +'-mqNxd', tmpeggs, 'zc.buildout',
> +{'PYTHONPATH':
> +ws.find(pkg_resources.Requirement.parse('setuptools')).location
> +},
> +) == 0
> +

If subprocess works on Jython, why does it *not* work on CPython?

ie: If subprocess works, why not use it everywhere.

Also, I do hope you're aware that bootstrap.py isn't "owned" by zdaemon, 
it's part of the zc.buildout project, so it seems a little odd making 
these changes to bootstrap.py here...

cheers,

Chris

-- 
Simplistix - Content Management, Zope & Python Consulting
- http://www.simplistix.co.uk
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )