[Zope3-dev] [EMAIL PROTECTED] address not working

2005-09-21 Thread Bernd Dorn
This address is not working when sending a mail to: [EMAIL PROTECTED] (Zope CVS administration [EMAIL PROTECTED]) i get... Your message To: Zope CVS administration Subject: Re: Commit privileges for zope source code repositories Sent:Thu, 22 Sep 2005 07:18:22 +0200 did not

[Zope3-dev] i18n translate tal:contents not translated

2005-10-12 Thread Bernd Dorn
hello list if i do this in a page template: div tal:attributes=title python:u'Title' i18n:attributes=title i18n:translate= tal:content=python:u'Title' i18n:domain=zope/ div i18n:translate= i18n:domain=zopeTitle/div the content of the first div gets not translated,

[Zope3-dev] initial checkin of cxoracleda

2005-10-19 Thread Bernd Dorn
For anyone who is interested in connecting zope3 to oracle I checked in an Oracle DB Adapter to the zope repository which is using the cx_oracle library http://www.computronix.com/ utilities.shtml#Oracle it is tested against 3.0 and 3.1 versions of zope see: http://svn.zope.org/cxoracleda/

Re: [Zope3-dev] initial checkin of cxoracleda

2005-10-20 Thread Bernd Dorn
On 20.10.2005, at 14:13, Stephan Richter wrote: On Wednesday 19 October 2005 16:26, Bernd Dorn wrote: it is tested against 3.0 and 3.1 versions of zope see: http://svn.zope.org/cxoracleda/ Note that if you create a SETUP.cfg file, the ZCML slug, i.e. cxoracleda-configure.zcml

Re: [Zope3-dev] problem with multiple instances of zope3 as daemon via init script on gentoo

2006-01-11 Thread Bernd Dorn
On 11.01.2006, at 14:27, Jim Washington wrote: Bernd Dorn wrote: hi all i have two init scripts (see below) which start a zope3 instance this works fine if i start one of them, but if i try to start the second, the following message appears * Starting Zope in /home/zope1/timetables

Re: [Zope3-dev] problem with multiple instances of zope3 as daemon via init script on gentoo

2006-01-11 Thread Bernd Dorn
On 11.01.2006, at 15:42, Bernd Dorn wrote: On 11.01.2006, at 14:27, Jim Washington wrote: Bernd Dorn wrote: hi all i have two init scripts (see below) which start a zope3 instance this works fine if i start one of them, but if i try to start the second, the following message appears

Re: [Zope3-dev] a plan for widgets?

2006-03-17 Thread Bernd Dorn
On 17.03.2006, at 10:32, Martijn Faassen wrote: One problem I seem to have is that I cannot find the mailing list to subscribe to to find checkin messages to the zc package. Is there any? the normal checkin list is [EMAIL PROTECTED], but not all packages are included (i think only

[Zope3-dev] zc.datetimewidget and ITZInfo request adapter

2006-04-02 Thread Bernd Dorn
hello guys from zc is there an implementation of the adapter from request to ITZInfo you use in zc.datetimewidget for example in http://svn.zope.org/zc.datetimewidget/trunk/src/zc/ datetimewidget/datetimewidget.py?rev=41765view=auto ... tzinfo = ITZInfo(request, None) ... if not, what

Re: [Zope3-dev] RFC: The browser:page compromise

2006-04-20 Thread Bernd Dorn
On 20.04.2006, at 18:56, Philipp von Weitershausen wrote: http://dev.zope.org/Zope3/TheBrowserPageCompromise I've long been thinking about how to make browser:page / simpler and less magical. Some radical ideas weren't received well and I couldn't convince even myself 100% that they were the

Re: [Zope3-dev] RFC: The browser:page compromise

2006-04-25 Thread Bernd Dorn
On 25.04.2006, at 20:27, Lennart Regebro wrote: At https://svn.z3lab.org/z3lab/hello/trunk there is now a page this url seems to be broken implementation that is easy to use and doens't do class generation. In fact, there are two versions, one that sets the __call__ attribute during

[Zope3-dev] pytz daylight savings bug?

2006-04-30 Thread Bernd Dorn
Hello I don't know if should put this on the zope3 tracker or somewhere else so i post it to the list too. in pytz the daylight savings are not correctly returned by the dst() methods, i looked into the source code and saw that the passed in datetime is ignored imho this should be used

Re: [Zope3-dev] getting started with AJAX

2006-05-19 Thread Bernd Dorn
there are packages for zope3 which include javascript libraries you may need http://svn.zope.org/z3c.javascript regards, bernd On 19.05.2006, at 11:45, Sam Stainsby wrote: Hi all, Just wondering what the current status of AJAX in Zope 3 is and how best to get started with it. I believe

Re: [Zope3-dev] Re: [Checkins] SVN: lovely.rating/ Initial import from Lovely Systems repository

2006-08-19 Thread Bernd Dorn
On 19.08.2006, at 11:41, Lennart Regebro wrote: I'd like to throw a stick in the fire by taking up a completely different issue: The amount of top level modules and repositories. :-) if lovely.rating depends on schooltool.something, not only does this mean any usage of lovely.rating (which

Re: [Zope3-dev] photo/photoslide packages

2006-09-14 Thread Bernd Dorn
Hi Darryl On 14.09.2006, at 09:41, Darryl Cousins wrote: Hi all, Is BjornT about? I have been working with photo and photoslide packages - got them working now with 3.3 branch - made resizeUtility schema field a vocabaulary choice Other features I'm beginning on: - make displayIds sizes

Re: Use launchpad ! (was Re: [Zope3-dev] the maintenance of change logs)

2006-09-23 Thread Bernd Dorn
On 23.09.2006, at 06:46, Baiju M wrote: On 9/22/06, Jim Fulton [EMAIL PROTECTED] wrote: snip Finally, I'm experimenting with using launchpad for bugs: https://launchpad.net/products/zc.buildout/+bugs and feature requests: https://features.launchpad.net/products/zc.buildout/ So far

[Zope3-dev] should schema.Date accectp datetime values

2006-11-14 Thread Bernd Dorn
hi all i just saw that zope.schema.Date objects accept datetime values because the default validate implementation uses isinstance to check the value. this is a problem imho, because datetime is a subclass of date but instances can't be compmared to each other. so what are you guys

Re: [Zope3-dev] should schema.Date accectp datetime values

2006-11-15 Thread Bernd Dorn
On 15.11.2006, at 00:39, Fred Drake wrote: any problems with this? and if no, is it ok to backport it to 3.3 I don't know. It seems like a bug to me, but I'm no bastion of backward-compatibility. for me too, so i checked in the fixes on trunk and 3.3

Re: [Zope3-dev] zope.tal.xmlparser.XMLParser() dislikes unicode

2007-01-14 Thread Bernd Dorn
On 13.01.2007, at 18:49, Andreas Jung wrote: Hi, the XMLParser.parseString() method raises an exception File /opt/python-2.4.4/lib/python2.4/unittest.py, line 260, in run testMethod() File /Users/ajung_data/sandboxes/Zope/Zope/lib/python/zope/tal/ tests/test_xmlparser.py, line 127, in

Re: [Zope3-dev] zope.mimetype / z3c.filetype

2007-02-07 Thread Bernd Dorn
On 07.02.2007, at 03:42, Benji York wrote: Luis De la Parra wrote: I don't know if there is some licesing or some other kind of political issues ( zope vs z3c ), but IMVHO it would be great if the two packages were merged. I'm not really a zope developer yet, but if the maintainers of

Re: [Zope3-dev] Proposal for optimized Blob handling

2007-03-07 Thread Bernd Dorn
On 07.03.2007, at 17:37, Christian Theune wrote: Hi, I'm writing up a proposal for the ZODB to make even more efficient Blob handling possible. This includes not copying the data from an uploaded file, but using a `link` operation when possible. However, the Zope 3 publisher currently

Re: [Zope3-dev] Cleaning up dependencies for Zope 3.4 eggs

2007-04-05 Thread Bernd Dorn
On 05.04.2007, at 16:23, Stephan Richter wrote: On Thursday 05 April 2007 09:08, Christian Theune wrote: we're starting work on an application that we're going to use Zope 3.4 for and that I'd like to base on the eggs. That should give me the chance to clean up some of the egg dependencies.

Re: [Zope3-dev] Cleaning up dependencies for Zope 3.4 eggs

2007-04-05 Thread Bernd Dorn
On 05.04.2007, at 17:34, Stephan Richter wrote: On Thursday 05 April 2007 11:08, Bernd Dorn wrote: i use this tiny script http://svn.zope.org/z3c.configurator/trunk/importchecker.py? rev=73771view=log Right, I know about the importchecker. But it does nto generate the dependency tree

Re: [Zope3-dev] what dependency to use for zope 3

2007-05-11 Thread Bernd Dorn
On 10.05.2007, at 10:01, Chris Withers wrote: Hi All, As a newcomer to the world of setuptools, I'm excited by the prospect of automatic dependency handling. However, with the eggification of Zope 3, this leaves me wondering: if I have a package that relies of a certain version of Zope

Re: [Zope3-dev] what dependency to use for zope 3

2007-05-11 Thread Bernd Dorn
On 11.05.2007, at 17:29, Chris Withers wrote: Fred Drake wrote: On 5/11/07, Chris Withers [EMAIL PROTECTED] wrote: I dunno, do we actually need an offical big zope 3 release anymore? No. What's more, we don't even want to use one anymore. cool :-) My only slight concern here is when

Re: [Zope3-dev] Re: egg version numbers and zope releases

2007-05-30 Thread Bernd Dorn
On 30.05.2007, at 20:20, Jim Fulton wrote: maybe it's a good idea to use the same pattern as other distribution/packaging systems. so foo2 or even foo21 is ok if you compare it to the name 'python24' in macports or ubuntu so that means that any incompatible version results in a new

Re: [Zope3-dev] A thought on backward compatibility and minimum versions

2007-05-31 Thread Bernd Dorn
On 31.05.2007, at 20:08, Dieter Maurer wrote: I fear my colleagues responsible to maintain the productive versions would not be happy: They want the system to be as stable as possible. If they need to introduce a new component, they usually prefer to just add this one component. Only

Re: AW: [Zope3-dev] Re: AW: publisher performance

2007-06-18 Thread Bernd Dorn
On 17.06.2007, at 22:25, Roger Ineichen wrote: Hi Juergen Regards Roger Ineichen _ END OF MESSAGE -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Jürgen Kartnaller Gesendet: Sonntag, 17. Juni 2007 06:43 An:

Re: [Zope3-dev] package branches

2007-06-26 Thread Bernd Dorn
On 23.06.2007, at 12:38, Christian Theune wrote: Am Samstag, den 23.06.2007, 07:04 -0400 schrieb Gary Poster: Hey Christian. I intend to check in some code that fixes zope.app.keyreference conflict error issues I wrote about last week. This will take advantage of some code that I checked in

Re: [Zope3-dev] package branches

2007-06-27 Thread Bernd Dorn
On 26.06.2007, at 21:44, Gary Poster wrote: On Jun 26, 2007, at 3:29 PM, Bernd Dorn wrote: On 23.06.2007, at 12:38, Christian Theune wrote: Am Samstag, den 23.06.2007, 07:04 -0400 schrieb Gary Poster: Hey Christian. I intend to check in some code that fixes zope.app.keyreference

Re: [Zope3-dev] Specifying upper limits in dependencies

2007-06-27 Thread Bernd Dorn
On 27.06.2007, at 16:01, Christian Theune wrote: Hi, the recent introduction of zope.app.keyreference-3.5dev with it's dependency on ZODB 3.9 brought some issues for me as I get conflicts in various buildouts (e.g. z3c.zalchemy). In my example, z3c.zalchemy doesn't care about which

Re: RFC: versioning proposal Re: [Zope3-dev] Specifying upper limits in dependencies

2007-07-03 Thread Bernd Dorn
On 02.07.2007, at 20:54, Jim Fulton wrote: See me response to Gary's note. Here's what I propose: 1. We adopt the policy that a distribution's version number must be of less or equal maturity than all of it's dependencies, where maturity is based on it's position in the release cycle.

Re: [Zope3-dev] zope.app.session/zope.minmax

2007-07-03 Thread Bernd Dorn
On 03.07.2007, at 09:31, Gary Poster wrote: Christian et al: What do you want in regards to the zope.app.session changes that rely on the new package zope.minmax? Very briefly, the change allows the simple zope.app.session approach to cause fewer unnecessary write conflicts. Is this

[Zope3-dev] Re: [Checkins] SVN: zc.dict/trunk/ Initial version of zc.dict -- a persistent BTree based dict.

2007-07-03 Thread Bernd Dorn
On 03.07.2007, at 20:39, Albertas Agejevas wrote: Log message for revision 77375: Initial version of zc.dict -- a persistent BTree based dict. hi this package matches a use-case we have often, very nice! just some thoughts use a BTree.Length object to hold the length, otherwise you

Re: AW: [Zope3-dev] Retire zope.app.boston

2007-08-13 Thread Bernd Dorn
On 12.08.2007, at 22:55, Roger Ineichen wrote: Hi Christian Betreff: [Zope3-dev] Retire zope.app.boston Please. It's badly tested and I assume widely unused. I tried to fix a bug that was reported for it and it's just a mess. +1, it was more a tryout then a ready to use package. The

Re: AW: [Zope3-dev] Retire zope.app.boston

2007-08-14 Thread Bernd Dorn
On 13.08.2007, at 13:15, Christian Theune wrote: Am Montag, den 13.08.2007, 12:14 +0200 schrieb Bernd Dorn: On 12.08.2007, at 22:55, Roger Ineichen wrote: Hi Christian Betreff: [Zope3-dev] Retire zope.app.boston Please. It's badly tested and I assume widely unused. I tried to fix a bug

Re: [Zope3-dev] Re: z3c.widget not on pypi?

2007-09-20 Thread Bernd Dorn
On 20.09.2007, at 20:50, Wichert Akkerman wrote: Previously Stefan H. Holek wrote: I fully agree that such eggs should not have been released into the wild. It is just that, down here in real-life, these eggs *have* been released, and their versions *have* been nailed (not nailing the