[Zope-dev] Re: [Zope3-dev] Change in repository approach to software sharing

2004-05-06 Thread Jim Fulton
Chris Withers wrote: Jim Fulton wrote: ... Now, when we set up the Zope 3 repository, we will create the ZConfig package in Zope 3 by copying a *tag* from the ZConfig project: svn copy svn+ssh://svn.zope.org/repos/ZConfig/tags/T1/src/ZConfig \ svn+ssh://svn.zope.org/repos/Zope3

[Zope-dev] Announce: Reusable Zope Public License 2.1

2004-05-15 Thread Jim Fulton
. Keeping track of many different licenses is a burden to users. For more information, see: http://www.zope.org/Resources/License Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http

[Zope-dev] Re: [Zope3-dev] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-19 Thread Jim Fulton
Casey Duncan wrote: On Wed, 19 May 2004 16:00:43 -0400 Jim Fulton [EMAIL PROTECTED] wrote: I've posted two proposals: http://dev.zope.org/Zope3/TALESPathExpressionAdapters I have to say I am not found of *, I'm not attached to '*'. Feel free to suggest alternatives (other than

[Zope-dev] RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-19 Thread Jim Fulton
are welcome, here or in the pages. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope

[Zope-dev] Re: [ZPT] RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-20 Thread Jim Fulton
Evan Simpson wrote: Jim Fulton wrote: I've posted two proposals: http://dev.zope.org/Zope3/TALESPathExpressionAdapters Proposes a mechanism for easily using adapters in TALES expressions. I'm not at all clear on how the proposed mechanism is superior to the implementation of path segment

[Zope-dev] Re: [ZPT] RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-20 Thread Jim Fulton
Evan Simpson wrote: Jim Fulton wrote: I thought you had proposed this, but I couldn't find a proposal or documentation. You say this is implemented in Zope 2? Where is it documented? Actually, it's only implemented on evan-pathprefix-branch. It has been quite a while since I had a chance

[Zope-dev] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-21 Thread Jim Fulton
Jim Fulton wrote: I've posted two proposals: http://dev.zope.org/Zope3/TALESPathExpressionAdapters Proposes a mechanism for easily using adapters in TALES expressions. http://dev.zope.org/Zope3/ZPTVariableNamespaces proposes a mechanism for qualifying names defined in TAL and used in TALES

Re: [Zope-dev] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-21 Thread Jim Fulton
Stephan Richter wrote: On Friday 21 May 2004 09:07, Jim Fulton wrote: So far the cast syntax seems to be the most popular: (adaptername)ob (dc)context/title Why don't we use adaptername(ob)? Then it looks exactely like in Python! Less to memorize. Because that would be the top

[Zope-dev] Re: [Zope3-dev] Re: [ZPT] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-27 Thread Jim Fulton
Evan Simpson wrote: Jim Fulton wrote: ... Unless I'm misunderstanding something fundamental here, in the TALES context an adapter is essentially a function accepting a single argument. Yes, except s/function/callable The adapted object that results from applying the adapter function is either

[Zope-dev] Re: [Zope3-dev] Re: [ZPT] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-27 Thread Jim Fulton
Ian Bicking wrote: Jim Fulton wrote: One disadvantage I see with the cast notation is that it's a bit jarring in: a/b/(adapter)c/d as the adapter is applied to a/b/c. The order just doesn't seem quite right. That is indeed jarring, especially since c isn't an object, it's just a name, and a/b

[Zope-dev] Re: [Zope3-dev] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-27 Thread Jim Fulton
Casey Duncan wrote: On Fri, 21 May 2004 09:07:24 -0400 Jim Fulton [EMAIL PROTECTED] wrote: Jim Fulton wrote: I've posted two proposals: http://dev.zope.org/Zope3/TALESPathExpressionAdapters Proposes a mechanism for easily using adapters in TALES expressions. http://dev.zope.org/Zope3

Re: [Zope-dev] Re: [Zope3-dev] Re: [ZPT] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-27 Thread Jim Fulton
nxml-mode). Wrong. Double check the spec. (I did. :) http://www.w3.org/TR/2004/REC-xml11-20040204/#NT-AttValue You only need to escape the less-than because there's no way to mistake a-b as a tag. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540

Re: [Zope-dev] Re: [Zope3-dev] Re: Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-27 Thread Jim Fulton
Tres Seaver wrote: Jim Fulton wrote: Sidnei da Silva wrote: | So far, I like: | | foo/bar-dc/title | | the best. OTOH, for 'valid' xhtml, u would have to write: You mean well-formed. foo/bar-gt;dc/title Totally defeating the purpose. One may argue that this would not be part of the output

[Zope-dev] Re: [Zope3-dev] Re: Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-27 Thread Jim Fulton
Evan Simpson wrote: Jim Fulton wrote: IMO, if we take this route, we should think of the notation as providing an alternate traversal operator. That is, there is syntax that either modifies or replaces /, so of the examples above, only: context/*dc/title In that case, I'd be happy to consider

[Zope-dev] Re: [Zope3-dev] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-28 Thread Jim Fulton
. :) Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope-Dev maillist - [EMAIL PROTECTED

[Zope-dev] Re: [Zope3-dev] Re: Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-05-28 Thread Jim Fulton
I want to thank everyone who's participating in this thread. The input is extremely valuable. Garrett Smith wrote: Jim Fulton wrote: We don't. In fact, one could argue that adaptation is a bit like a different kind of traversal. In fact, in Zope 3, we already have a notion

[Zope-dev] Re: [Zope3-dev] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-06-01 Thread Jim Fulton
/adapter: Why are we having this whole discussion again? Steve pointed out some problems with the syntax, which the above examples should make obvious. Was there something wrong with the code? :-S Nope. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540

[Zope-dev] Re: [Zope3-dev] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-06-01 Thread Jim Fulton
Chris Withers wrote: Jim Fulton wrote: Yup. We implemented: ob/adapter:name ...which to me says: take adapter, apply to it object with name as a parameter That's close to the meaning of Even Simpson's Zope 2 ':' extension. Which is why we don't want to use this syntax for adapters. ...what I'd

[Zope-dev] Re: [Zope3-dev] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-06-02 Thread Jim Fulton
for that off hand? http://dev.zope.org/Zope3/TALESPathExpressionAdapters Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org

[Zope-dev] Re: [Zope3-dev] Re: RFC: TALES adapters and TAL/Tales variable namespaces

2004-06-02 Thread Jim Fulton
I've updated http://dev.zope.org/Zope3/TALESPathExpressionAdapters based on comments to date. I think we are narrowing down on a short syntx of the form: ob/##adaptername where '#' is some character. See the proposal for reasons. I've also given the current status there. Jim Jim Fulton wrote

[Zope-dev] Zope runs again on the Zope 2 trunk

2004-06-02 Thread Jim Fulton
Zope hasn't run on the trunk for about a month and a half due to a bug introduced into the mounting code. The bug is now fixed and Zope runs again. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope

[Zope-dev] Re: [Zope3-dev] status of Zope versus zope?

2004-06-04 Thread Jim Fulton
to get 2.8 out, so I'm inclined not to include zope.interface in 2.8, and thus not deal with the zope vs Zope issue in 2.8. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http

[Zope-dev] Re: [Zope3-dev] status of Zope versus zope?

2004-06-04 Thread Jim Fulton
Martijn Faassen wrote: Jim Fulton wrote: Martijn Faassen wrote: So what does this mean for Five on Windows? It means that you should tell people to put zope in a different directory than Zope. Both of these directories need to be on the Python path. Hm, that's not a big deal then. I'm just

[Zope-dev] Five and 2.9

2004-06-15 Thread Jim Fulton
fairly soon identify the parts that are stable and the parts that are subject to change. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org

[Zope-dev] Re: Five and 2.9

2004-06-15 Thread Jim Fulton
Raphael Ritz wrote: Jim Fulton wrote: I heard that there was some discussion about the relationship between Martijn Faassen's Five project and future versions of Zope. I'd like to say, for the record, that I think Five is an important project. It is one of a number of projects to work out how

[Zope-dev] Re: [Plone-developers] Re: Five and 2.9

2004-06-15 Thread Jim Fulton
lookup. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope-Dev maillist - [EMAIL

Re: [Zope-dev] Re: [Plone-developers] Re: Five and 2.9

2004-06-21 Thread Jim Fulton
, I think its great that Jim responded. Now we (collectively) need to get some usage out of Five. Jim, Thanks for explaining ZC's position re: FrankenZope or backporting CA into Zope2. One of the big questions that I believe is open is how to use more of zope.app in Zope 2 - specifically Schema

Re: [Zope3-dev] Re: [Zope-dev] Re: Five and 2.9

2004-06-21 Thread Jim Fulton
. Or will this be integrated into Zope 2.8 at the end? Hopefully, depending on timing. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org

Re: [Zope-dev] Possible Windows Service improvements.

2004-08-04 Thread Jim Fulton
for Zope to exit with that. On another note, I'd really prefer to work out a general facility that can be used with any Python program, including both Zope 2 and Zope 3. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http

Re: [Zope-dev] Possible Windows Service improvements.

2004-08-05 Thread Jim Fulton
Mark Hammond wrote: ... Thanks Jim. I agree with those concerns. Note that already we do not recognise startup failure and keep retyring even though we shouldn't, and is exactly what I am trying to solve. Yup Is there some sort of IPC that can be used here? On Unix, we use a reserved exit code

[Zope-dev] Zope X3 3.0 Beta 4 is available

2004-09-03 Thread Jim Fulton
next week or early the following week. We'd really appreciate it if people would try this release out and post any issues found in the Zope 3 Issue Collector at: http://collector.zope.org/Zope3-dev Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540

[Zope-dev] Re: Zope X3 3.0 Beta 4 is available

2004-09-03 Thread Jim Fulton
Jim Fulton wrote: Zope X3 3.0 Beta 4 is available at: http://zope.org/Products/ZopeX3/3.0.0b4 Here's a reported problem and a work around (for now). This doesn't apply to Windows. The configure script only works with bash. :( We are working on a fix, but in the mean time, if you are running

[Zope-dev] Renabled ViewCVS at svn.zope.org

2004-09-09 Thread Jim Fulton
After updating all of the relevent libraries, I decided to try reenabling ViewCVS for a while to see if the behavior is any more stable. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation

[Zope-dev] Re: AW: AW: [Zope3-dev] Release for Views As Adapters

2004-09-28 Thread Jim Fulton
[EMAIL PROTECTED] wrote: Jim Fulton wrote: ... Is there a way for to register this views for both version of z3? You might be able to call the default view directive. I can't really tell because I don't know what you're doing. I will take a look at the new api. That's probably best. Write your

Re: [Zope-dev] RE: [Zope3-dev] Re: svn vs. cvs (some documentation)

2004-10-18 Thread Jim Fulton
;) :) Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope-Dev maillist - [EMAIL

Re: [Zope-dev] RE: [Zope3-dev] Re: svn vs. cvs (some documentation)

2004-10-18 Thread Jim Fulton
Tres Seaver wrote: Jim Fulton wrote: Brian Lloyd wrote: ... Speaking of, the dev.zope.org/CVS/ area should probably be updated to: 1. capture the current state of affairs (2.8 / HEAD on svn and 2.7 on CVS), since it is currently mostly 'in the heads' of the various Zope devs Good

Re: [Zope-dev] RE: Re: svn vs. cvs (some documentation)

2004-10-19 Thread Jim Fulton
Tres Seaver wrote: Jim Fulton wrote: 3. Up to this point, we haven't had to be careful about managing bugfixes across multiple releases. Sure we have. We've had a release branch for some time. Perhaps I should add: The complaint you made earlier today (about bugs fixed on the head

Re: [Zope-dev] RE: Re: svn vs. cvs (some documentation)

2004-10-19 Thread Jim Fulton
Tres Seaver wrote: ... Another reason for an activity branch: the work is experimental, and may never be merged; putting on a branch lets others evaluate it without risking stability. Agreed. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540

[Zope-dev] RFC: Proposed backward-compatibility policy

2004-10-27 Thread Jim Fulton
to fix backward-compatibility problems. Consumers of Zope have a right to backward compatibility, but they also have a responsibility to test Zope against their applications during the beta release cycle (or sooner) to make sure their applications work. Questions? Thoughts? Jim -- Jim

Re: [Zope-dev] RFC: Proposed backward-compatibility policy

2004-10-27 Thread Jim Fulton
to run a buildbot server? We (Fred :) can help set it up, as we've done that here in F12g. If we can get the server going, then we'd also need volunteers to run buildbot slaves. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http

Re: [Zope-dev] RFC: Proposed backward-compatibility policy

2004-10-27 Thread Jim Fulton
Chris McDonough wrote: Maybe we should have a bw compat category in the collector(s) for this to make it easy to find bw compat issues. It would make it easy to get a list of showstopper issues around release time. Great idea! Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python

Re: [Zope-dev] Zope on 64-bit Linux

2004-11-19 Thread Jim Washington
in Fedora Core 3. I have no experience with Fedora, but it is probably worth a try. I did not have to do anything special. -Jim Washington ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML

Re: [Zope-dev] Removing XML export from Zope 2.8

2004-11-26 Thread Jim Fulton
work now, and thus, if the change would not cause a backward incompatibility. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org

Re: [Zope-dev] Removing XML export from Zope 2.8

2004-11-26 Thread Jim Fulton
it *wink* :-) +1 :) Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope-Dev maillist

Re: [Zope-dev] Why third_party/docutils?

2004-11-29 Thread Jim Fulton
to say in a separate message. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope-Dev

[Zope-dev] including docutils in Zope -- two issues: IP and location

2004-11-29 Thread Jim Fulton
to sort this out with you off line if you like. Perhaps we can do with Zope 2 what we did for Zope 3, and, for Zope 2.8, perhaps we can even share the same tree. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http

Re: [Zope-dev] zpt code crashes zope 2.7.3

2004-12-09 Thread Jim Fulton
to dereference a NULL pointer. Let's discuss off-line how to get a fix out. Jim Jean-Marc Orliaguet wrote: Andreas Jung wrote: --On Donnerstag, 9. Dezember 2004 13:12 Uhr +0100 Jean-Marc Orliaguet [EMAIL PROTECTED] wrote: Jean-Marc Orliaguet wrote: Hi! the following zpt snippet crashes zope 2.7.3

Re: [Zope-dev] Is Zope.2.7.4 feature frozen ?

2004-12-16 Thread Jim Fulton
Rodrigo Dias Arruda Senra wrote: Hi, is the Zope 2.7.4 feature frozen ? Huh? Zope 2.7 is feature frozen. New features need to go into 2.8. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope

Re: [Zope-dev] Why third_party/docutils?

2004-12-16 Thread Jim Fulton
, I see no problem that this extra directory solves. Could you please explain what problem you think an extra directory will solve? Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation

Re: [Zope-dev] Why third_party/docutils?

2004-12-16 Thread Jim Fulton
Andreas Jung wrote: --On Donnerstag, 16. Dezember 2004 15:34 Uhr -0500 Jim Fulton [EMAIL PROTECTED] wrote: Andreas Jung wrote: --On Donnerstag, 16. Dezember 2004 20:30 Uhr +0100 Stefan H. Holek [EMAIL PROTECTED] wrote: *sound of me protesting noisily* Let me remind you of the Pope's decree

Re: [Zope-dev] Why third_party/docutils?

2004-12-20 Thread Jim Fulton
Andreas Jung wrote: --On Donnerstag, 16. Dezember 2004 16:01 Uhr -0500 Jim Fulton [EMAIL PROTECTED] wrote: Andreas Jung wrote: --On Donnerstag, 16. Dezember 2004 15:34 Uhr -0500 Jim Fulton [EMAIL PROTECTED] wrote: Andreas Jung wrote: --On Donnerstag, 16. Dezember 2004 20:30 Uhr +0100 Stefan H

Re: [Zope-dev] Is Zope.2.7.4 feature frozen ?

2004-12-20 Thread Jim Fulton
features in earlier releases. I'm not sure what to do about that. I know I won't be able to spend time on 2.8 until after the new year, at least. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope

Re: [Zope-dev] Why third_party/docutils?

2004-12-20 Thread Jim Fulton
Andreas Jung wrote: --On Montag, 20. Dezember 2004 7:36 Uhr -0500 Jim Fulton [EMAIL PROTECTED] wrote: Please explain why including all of docutils requires adjusting the paths. I did that already in an earlier mail last week. You may think you did. We include all of docutils in Zope 3

[Zope-dev] Re: cvs for Zope 2.7.X

2004-12-20 Thread Jim Fulton
of this file? Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope-Dev maillist - [EMAIL

Re: [Zope-dev] Why third_party/docutils?

2004-12-20 Thread Jim Fulton
Tim Peters wrote: ... Jim, while I personally don't care much, Zope3's repackaging of docutils doesn't meet license requirements to retain the original licenses in derivative works. Zope2's does, because it includes docutil's whole 'licenses' subdirectory (except for the GPL). At least

Re: [Zope-dev] Why third_party/docutils?

2004-12-20 Thread Jim Fulton
Andreas Jung wrote: --On Montag, 20. Dezember 2004 11:08 Uhr -0500 Tim Peters [EMAIL PROTECTED] wrote: [Jim Fulton] We include all of docutils in Zope 3 and don't adjust the paths. We *did*adjust docutils slightly. [Andreas Jung] No, Zope 3 ships only with the 'docutils' subdirectory

Re: [Zope-dev] Reorganizing docutils

2005-01-06 Thread Jim Fulton
to help with anything. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope-Dev maillist

[Zope-dev] Renamed the Zope package to Zope2 and including Zope 3 packages in Zope 2.8

2005-01-31 Thread Jim Fulton
decided which parts of Zope 3 should be included in Zope 2.8 and would like to get input. If you have suggestions on what to include or exclude, please respond here or on the z3-file list, where I am also posting this message. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered

Re: [Zope-dev] Renamed the Zope package to Zope2 and including Zope 3 packages in Zope 2.8

2005-01-31 Thread Jim Fulton
Jim Fulton wrote: I've just checked in a change on the Zope 2 trunk for Zope 2.8 that renames the Zope package to Zope2. Importing the Zope module is now deprecated, but will be supported until Zope 2.11. Actually, that's 2.10. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python

Re: [Zope-dev] Renamed the Zope package to Zope2 and including Zope 3 packages in Zope 2.8

2005-01-31 Thread Jim Fulton
can. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope-Dev maillist - Zope-Dev

Re: [Zope-dev] Renamed the Zope package to Zope2 and including Zope 3 packages in Zope 2.8

2005-02-01 Thread Jim Fulton
Chris Withers wrote: Jim Fulton wrote: please respond here or on the z3-file list, Which list is this? z3-five, of course. :) http://codespeak.net/mailman/listinfo/z3-five Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714

Re: [Zope-dev] Renamed the Zope package to Zope2 and including Zope 3 packages in Zope 2.8

2005-02-02 Thread Jim Fulton
Martijn Faassen wrote: Jim Fulton wrote: Paul Winkler wrote: +1 on all of those from me. However, I will be satisfied with anything that gets released as 2.8 sometime this year ;-) Absolutely. The top priority, IMO, is getting 2.8 out as soon as we can. Excuse me, but it seems bizarre to me

Re: [Zope-dev] Renamed the Zope package to Zope2 and including Zope 3 packages in Zope 2.8

2005-02-02 Thread Jim Fulton
benefit independent of five. These packages are pretty stable so I'm reasonably confident that this needed pose too great a hassel. At least I hope not. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope

Re: [Zope-dev] Re: Renamed the Zope package to Zope2 and including Zope 3 packages in Zope 2.8

2005-02-02 Thread Jim Fulton
Would it make sense to have Zope 2.8 include all of the packages below other than zope.app and for Five to supply it's own zope.app? Jim P.S. We definately want zope.testing too. I'm surprised that Five isn't using it. Lennart Regebro wrote: Christian Heimes wrote: Zope 2.8 should be shipped

Re: [Zope-dev] Re: Renamed the Zope package to Zope2 and including Zope 3 packages in Zope 2.8

2005-02-02 Thread Jim Fulton
Lennart Regebro wrote: Jim Fulton wrote: P.S. We definately want zope.testing too. I'm surprised that Five isn't using it. Well, I didn't grep the tests directory. ;) I'm leaning more towards realeasing 2,8 now, and skipping this renaming thing alltogether. But then, I don't know your

[Zope-dev] Re: [Zope3-dev] Zope 3 Developer's Handbook

2005-02-03 Thread Jim Fulton
Wow! Congratulations! Jim Stephan Richter wrote: Hello everyone, I just wanted to let you all know that the first book covering Zope 3 hit the shelves yesterday. It is called the Zope 3 Developer's Handbook and was published by Sams' Developer's Library. Link to Sams Web-Site: http

Re: [Zope-dev] Renamed the Zope package to Zope2 and including Zope 3 packages in Zope 2.8

2005-02-03 Thread Jim Fulton
of work. How much of it is real and how much of it is cruft? There is certainly cruft there, but we've trie dto keep the cruft/real ratio low. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope

[Zope-dev] Re: guarded_getattr

2005-02-14 Thread Jim Fulton
of acquiring a simple type (string). These tests still | fail. | | I have also added tests to CMFDefault on CMF 1.4 branch that show how | getToolByName suffers from a similar fate as direct acquisition. | | Again, everything passes fine in Zope 2.7.2. Jim and I worked on an alternative fix today -- he

Re: [Zope-dev] Re: guarded_getattr

2005-02-17 Thread Jim Fulton
This is a spurious failure. Someone forgot to check in a fix to this test that I checked in on the branch. Jim Stefan H. Holek wrote: Oops, I just noticed there is a CMFCore test failing now, all branches... == ERROR

Re: [Zope-dev] method attribute __roles__ in Zope 2.8

2005-02-21 Thread Jim Fulton
__roles__ attribute. It actually checkes for a __roles__ attribute on the third object passed. For now, this api is the prefered way to do what you want. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope

Re: [Zope-dev] method attribute __roles__ in Zope 2.8

2005-02-21 Thread Jim Fulton
You didn't use the getattr that Dieter suggested. But see my other follow on note. Jim Andreas Jung wrote: --On Sonntag, 20. Februar 2005 19:42 Uhr +0100 Dieter Maurer [EMAIL PROTECTED] wrote: You can use the getattr above to resolve the attribute. That really did not help: - print getattr

__roles__ hack (was Re: [Zope-dev] method attribute __roles__ in Zope 2.8)

2005-02-21 Thread Jim Fulton
the __roles__ hack. I don't know if anyone is interested in working on either backporting the Zope 3 security system, or on just cleaning up the Zope 2 security system. If so, I'd be happy to provide advise. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO

Re: [Zope-dev] method attribute __roles__ in Zope 2.8

2005-02-21 Thread Jim Fulton
Andreas Jung wrote: I can across the following problem while trying to fix the broken FTP service for Zope 2.8: ObjectManager.manage_FTPstat() tries to access self.manage_FTPlist.__roles__ Why is it trying to do this? Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered

Re: [Zope-dev] Clarification re: Zope X3.1, 2.8

2005-03-18 Thread Jim Fulton
Martijn Faassen wrote: ... Do some of these have something to do with a change to Python 2.4, by the way? No. It's a bit unclear to me what version of Python this release is targetting. 2.3 Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361

Re: [Zope-dev] Clarification re: Zope X3.1, 2.8

2005-03-18 Thread Jim Fulton
loose ends are wrapped up, we'll ask Andreas to make a 2.8 beta 1 release. While Jim still has a few things to do, people will be able to start using the beta for real work. I think that the following outstanding to-dos for Zope 2.8 should be completed before a beta release: [snip todos

Re: [Zope-dev] Clarification re: Zope X3.1, 2.8

2005-03-19 Thread Jim Fulton
Andreas Jung wrote: --On Freitag, 18. März 2005 12:31 Uhr -0500 Jim Fulton [EMAIL PROTECTED] wrote: A beta release should be feature-complete means it should contain everything that will be part of the final release. A beta should not development release where things are subject to change

Re: [Zope-dev] Clarification re: Zope X3.1, 2.8

2005-03-19 Thread Jim Fulton
Brian Lloyd wrote: Hi all, There have been a number of threads going on today re: Zope X3.1 feature freeze and the 2.8 effort. I'd like to clarify some decisions re: Zope 2.8 Jim is the product mgr for Zope 3 and I'm it for Zope 2, so hopefully this can be considered authoritative and end part

Re: [Zope-dev] Clarification re: Zope X3.1, 2.8

2005-03-31 Thread Jim Fulton
In this case, the answer is clear to me. :) We should fix the offending Z3 code to match the interface. Similarly, we should fix the uses of get_transaction. Jim Tim Peters wrote: I'm merging ZODB 3.4 into Zope on a branch. As Tres noted earlier in a checkin comment, a test failure results

Re: [Zope-dev] Clarification re: Zope X3.1, 2.8

2005-03-31 Thread Jim Fulton
().commit() you should: import transaction ... transaction.commit() or from transaction import commit ... commit() Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http

Re: [Zope-dev] I want Zope 2.9 to use Zope 3's security architecture.

2005-04-06 Thread Jim Fulton
Paul Winkler wrote: On Wed, Apr 06, 2005 at 08:33:39AM -0400, Jim Fulton wrote: I very much want Zope 2.9 to use Zope 3's security architecture. Zope 3's security architecture is far more robust, but it is different in some significant ways: (snip) Will this all be under the hood? i.e

Re: [Zope-dev] I want Zope 2.9 to use Zope 3's security architecture.

2005-04-06 Thread Jim Fulton
Dieter Maurer wrote: Jim Fulton wrote at 2005-4-6 08:33 -0400: I very much want Zope 2.9 to use Zope 3's security architecture. Zope 3's security architecture is far more robust, but it is different in some significant ways: Even small modifications to the security machinery tend to end up

Re: [Zope-dev] I want Zope 2.9 to use Zope 3's security architecture.

2005-04-07 Thread Jim Fulton
Richard Jones wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 7 Apr 2005 02:49 am, Jim Fulton wrote: Paul Winkler wrote: i.e. will I still write: security.declareProtected(SomePermission, 'foo') def foo(self): ... That will work, and I don't see a need to deprecate

Re: [Zope-dev] To ZCML or not ;-)

2005-04-07 Thread Jim Fulton
=zope.View / Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org ___ Zope-Dev maillist - Zope

Re: [Zope-dev] To ZCML or not ;-)

2005-04-08 Thread Jim Fulton
in that apidoc already has code for extracting documentation from meta configuration. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org

[Zope-dev] Data manager interface -- tpc_begin and other changes

2005-04-25 Thread Jim Fulton
that I need to support, please let me know. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http://www.zope.org

[Zope-dev] Raw-input control for input widgets

2005-04-25 Thread Jim Fulton
case is to allow inputs to be cleared so that user inputs aren't displayed after a form is redisplayed after acting on previous inputs. I believe we discussed this a couple of years ago, but nothing was ever done. Thoughts? Unfortunately, I don't think we can do anything for this before 3.2. Jim

[Zope-dev] Re: Raw-input control for input widgets

2005-04-25 Thread Jim Fulton
Sorry, wrong list, although, with Zope 2.8, including Zope 3, I suppose it applies. Hm, I suppose we should be thinking about folding Zope 3 development discussion back into zope-dev. Jim Jim Fulton wrote: I'd like to have more control over input widgets. I'd like to have a way to get, set

Re: [Zope-dev] Re: Windows Binaries for 2.8b1

2005-04-26 Thread Jim Fulton
expect we'll evolve it a bit more in the course of the 3.1 release. In any case, nothing in Z2 (including WinBuilders) knows anything about how to live with zpkgtools now. Yup. I'd like to fix this for 2.9. :) Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO

Re: [Zope-dev] Upcoming Zope 2.8 release

2005-05-19 Thread Jim Fulton
development (Zope 2.9). Bugs (as always) have to be fixed on the 2.8 branch, SVN trunk and 2.7 branch (CVS). -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO (540) 361-1714http://www.python.org Zope Corporation http://www.zope.com http

Re: [Zope-dev] Upcoming Zope 2.8 release

2005-05-19 Thread Jim Fulton
Dieter Maurer wrote: Andreas Jung wrote at 2005-5-19 13:43 +0200: after resolving all outstanding problems with Zope 2.8 under Windows the next releases will be Zope 2.8 b2 (this weekend) and Zope 2.8.0 final (scheduled for 2005/06/11). What about the ZClasses? They work fine AFAIK. Jim -- Jim

Re: [Zope-dev] Re: hasattr implementation for Zope?

2005-05-27 Thread Jim Fulton
explicit. That's what ZODB does. I certainly agree that changing the behavior of a builtin function by magic is at best highly dubious practice. In fact, consider this vetoed for the Zope core. :) Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python Powered! CTO

Re: [Zope-dev] Re: hasattr implementation for Zope?

2005-05-27 Thread Jim Fulton
Paul Winkler wrote: On Fri, May 27, 2005 at 09:25:58AM -0400, Jim Fulton wrote: Tim Peters wrote: OTOH, defining importing a utility function-- say, safehasattr() --would make it all explicit. That's what ZODB does. OK. (BTW, I just went grepping for this safehasattr() in zope 2.7.6

Re: [Zope-dev] Re: hasattr implementation for Zope?

2005-05-27 Thread Jim Fulton
Paul Winkler wrote: On Fri, May 27, 2005 at 12:08:55PM -0400, Paul Winkler wrote: On Fri, May 27, 2005 at 11:49:03AM -0400, Jim Fulton wrote: BTW, I prefer to code things like this in the following way: def safe_hasattr(): marker = object() def safe_hasattr(obj, attr

Re: [Zope-dev] Re: hasattr implementation for Zope?

2005-05-27 Thread Jim Fulton
This is amazing. Really amazing. I stand corrected. Jim Tim Peters wrote: [Paul Winkler] But of course we don't do it because accessing globals in a method that might be looped over is slow. Which, hopefully, will become a non-issue some day (PEP 267, 268, 280). [Jim Fulton] Note

Re: [Zope-dev] [Proposal] Drop Mount.py from ZODB 3.5

2005-06-04 Thread Jim Fulton
Tim Peters wrote: http://www.zope.org/Collectors/Zope/1800 describes some of the code problems with Zope's current way of mounting databases. ZODB 3.4 (still) has a Mount.py module, unused and untested by ZODB. Jim and I were both surprised today to discover that Zope (2.8) still imports

Re: [Zope-dev] [Proposal] Drop Mount.py from ZODB 3.5

2005-06-04 Thread Jim Fulton
Shane Hathaway wrote: Tim Peters wrote: http://www.zope.org/Collectors/Zope/1800 describes some of the code problems with Zope's current way of mounting databases. ZODB 3.4 (still) has a Mount.py module, unused and untested by ZODB. Jim and I were both surprised today to discover

Re: [Zope-dev] Zope 2.9 goals

2005-06-17 Thread Jim Fulton
2 and Zope 3. Further, we will coordinate the releases. Essentially, *Zope* is switching to a new release schedule. Zope will be released every 6 months and the releases will be in two parts, a Zope 2 part that includes the current Zope 3 and a Zope 3 part. Jim -- Jim Fulton mailto

Re: [Zope-dev] Re: Zope 2.9 goals

2005-06-17 Thread Jim Fulton
Max M wrote: Jim Fulton wrote: Further, we will coordinate the releases. Essentially, *Zope* is switching to a new release schedule. Zope will be released every 6 months and the releases will be in two parts, a Zope 2 part that includes the current Zope 3 and a Zope 3 part

Re: [Zope-dev] Zope 2.9 goals

2005-06-17 Thread Jim Fulton
Martijn Faassen wrote: Jim Fulton wrote: Martijn Faassen wrote: [snip] I'll just remind everybody that, starting with Zope 2.9 and Zope 3.2, we are switching to time based, rather than feature-based releases. We will make feature releases of Zope 2 and Zope 3 every 6 months, starting

Re: [Zope-dev] Zope 2.9 goals

2005-06-17 Thread Jim Fulton
check things into the trunk that would prevent a bets. There is a little bit more flexability for Zope 3 because we don't release the whole repository. The Zope 3 repository tree has parts that aren't and may never be released. Jim -- Jim Fulton mailto:[EMAIL PROTECTED] Python

<    1   2   3   4   5   6   7   8   9   10   >