[Zope-dev] Github repo request: zope.tal, zope.testrunner

2013-02-11 Thread Marius Gedminas
Could someone with the magic admin bit please create Github repositories for zope.tal and zope.testrunner? Thanks, Marius Gedminas -- http://pov.lt/ -- Zope 3/BlueBream consulting and development signature.asc Description: Digital signature ___

Re: [Zope-dev] Github repo request: zope.tal, zope.testrunner

2013-02-11 Thread Jens Vagelpohl
On Feb 11, 2013, at 11:53 , Marius Gedminas mar...@gedmin.as wrote: Could someone with the magic admin bit please create Github repositories for zope.tal and zope.testrunner? Done. jens ___ Zope-Dev maillist - Zope-Dev@zope.org

[Zope-dev] Examples of ZODB.event

2013-02-11 Thread Jean-Daniel
Hello, I would like to build a config repository on the ZODB for an appliance where many processes would boot and talk to at boot to load their configuration. Some processes might modify or add new conf, and some different component should take this change of configuration into account. Is

Re: [Zope-dev] Examples of ZODB.event

2013-02-11 Thread Jim Fulton
On Mon, Feb 11, 2013 at 11:45 AM, Jean-Daniel jeandaniel.bro...@gmail.com wrote: Hello, I would like to build a config repository on the ZODB for an appliance where many processes would boot and talk to at boot to load their configuration. Some processes might modify or add new conf, and

[Zope-dev] Porting zope.tal to Python 3

2013-02-11 Thread Marius Gedminas
I don't plan to write about every package I port, but there were some lessons learned from zope.tal that I thought I should mention. - Running 2to3 on your sources is a good way to identify places that need changing, but you'll have to revert most of the actual changes to keep it compatible

[Zope-dev] Lessons from zope.testrunner

2013-02-11 Thread Marius Gedminas
I didn't port zope.testrunner to Python 3, but I did make its tests pass (eventually) on 3.2 and 3.3. - If python setup.py test passes, and tox -e py27 passes, and detox indicates that all Python versions also pass all tests --- that might just mean you have a bug in your setup.py that

Re: [Zope-dev] Porting zope.tal to Python 3

2013-02-11 Thread Lennart Regebro
On Mon, Feb 11, 2013 at 7:44 PM, Marius Gedminas mar...@gedmin.as wrote: - Running 2to3 on your sources is a good way to identify places that need changing, but you'll have to revert most of the actual changes to keep it compatible with Python 2. I've find the easiest way to keep

[Zope-dev] zope.security on github?

2013-02-11 Thread Stephan Richter
Hi everyone, I was just about to start porting zope.security using the SVN version, when I noticed it is already on Github and Tres has even worked on it today. So 2 things: 1. Can we delete the contents of zope.security on svn.zope.org? 2. Can we enable checkin messages for all moved

Re: [Zope-dev] zope.security on github?

2013-02-11 Thread Jim Fulton
On Mon, Feb 11, 2013 at 3:14 PM, Stephan Richter stephan.rich...@gmail.com wrote: Hi everyone, I was just about to start porting zope.security using the SVN version, when I noticed it is already on Github and Tres has even worked on it today. So 2 things: 1. Can we delete the contents of

Re: [Zope-dev] zope.security on github?

2013-02-11 Thread Stephan Richter
On Monday, February 11, 2013 03:19:54 PM Jim Fulton wrote: 1. Can we delete the contents of zope.security on svn.zope.org? Please remove the contents of trunk and add a MOVED_TO_GITHUB file in trunk and in the project root with the git repo url. When that's done, I'll make the project

Re: [Zope-dev] zope.security on github?

2013-02-11 Thread Jim Fulton
On Mon, Feb 11, 2013 at 3:29 PM, Stephan Richter stephan.rich...@gmail.com wrote: On Monday, February 11, 2013 03:19:54 PM Jim Fulton wrote: 1. Can we delete the contents of zope.security on svn.zope.org? Please remove the contents of trunk and add a MOVED_TO_GITHUB file in trunk and in the

Re: [Zope-dev] zope.security on github?

2013-02-11 Thread Stephan Richter
On Monday, February 11, 2013 03:37:17 PM Jim Fulton wrote: It seems to be readonly already, so I cannot remove the files. Sorry. Fixed. Can you try again please? All done. Regards, Stephan -- Entrepreneur and Software Geek Google me. Zope Stephan Richter

Re: [Zope-dev] zope.security on github?

2013-02-11 Thread Jim Fulton
On Mon, Feb 11, 2013 at 3:39 PM, Stephan Richter stephan.rich...@gmail.com wrote: On Monday, February 11, 2013 03:37:17 PM Jim Fulton wrote: It seems to be readonly already, so I cannot remove the files. Sorry. Fixed. Can you try again please? All done. Thanks. Back to read only. Jim --

Re: [Zope-dev] github repositories needed

2013-02-11 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/11/2013 03:44 PM, Stephan Richter wrote: Hi everyone, In my effort to port packages I would also like to move them to github. I have ported or are in the process of porting the following packages and would like to get Github repositories

Re: [Zope-dev] zope.security

2013-02-11 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/11/2013 03:36 PM, Stephan Richter wrote: Hi Tres (and everyone else reading along), as you are probably aware, zope.security is a package that blocks a lot of other packages from being ported. I just checked out the coverage on Github and

[Zope-dev] zope-tests - FAILED: 7, OK: 16

2013-02-11 Thread Zope tests summarizer
This is the summary for test reports received on the zope-tests list between 2013-02-10 00:00:00 UTC and 2013-02-11 00:00:00 UTC: See the footnotes for test reports of unsuccessful builds. An up-to date view of the builders is also available in our buildbot documentation:

Re: [Zope-dev] zope.security

2013-02-11 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/11/2013 09:16 PM, Stephan Richter wrote: On Monday, February 11, 2013 06:34:52 PM Tres Seaver wrote: I propose to split zope.security.untrustedpython into a separate package called zope.untrustedpython, so that a port of zope.security to

Re: [Zope-dev] Examples of ZODB.event

2013-02-11 Thread Jean-Daniel
Ok thanks, I can implement that in the controler code wrapping the ZODB. The Model-View-Controller On Mon, Feb 11, 2013 at 6:21 PM, Jim Fulton j...@zope.com wrote: On Mon, Feb 11, 2013 at 11:45 AM, Jean-Daniel jeandaniel.bro...@gmail.com wrote: Hello, I would like to build a config

Re: [Zope-dev] Examples of ZODB.event

2013-02-11 Thread Jean-Daniel
Ok thanks, I can implement that in the controller code wrapping the ZODB. The Model-View-Controller says the model can update the views. I find it hard actually find a model which really has the the capability to notify the views directly. What we usually get, unlike the diagram from Wikipedia,

Re: [Zope-dev] zope-tests - FAILED: 7, OK: 16

2013-02-11 Thread Marius Gedminas
On Tue, Feb 12, 2013 at 01:00:02AM +, Zope tests summarizer wrote: Non-OK results -- [1]FAILED winbot / zope.security_py_265_32 https://mail.zope.org/pipermail/zope-tests/2013-February/072239.html Bootstrap failed: While: Initializing. Error: