Re: [Zope-dev] To the brave folks trying Zope HEAD...

2003-12-11 Thread Jeremy Hylton
I think there's a fix for this in CVS. Can you try it again? Jeremy ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -

Re: [Zope-dev] To the brave folks trying Zope HEAD...

2003-12-11 Thread Sidnei da Silva
On Thu, Dec 11, 2003 at 10:07:51AM -0500, Jeremy Hylton wrote: | I think there's a fix for this in CVS. Can you try it again? Just tried. Seems to have fixed it. Now, for the next step *wink*. If I try starting Zope with an old existing database I get the traceback below. Correct me if I'm

Re: [Zope-dev] To the brave folks trying Zope HEAD...

2003-12-11 Thread Jeremy Hylton
On Thu, 2003-12-11 at 10:24, Sidnei da Silva wrote: On Thu, Dec 11, 2003 at 10:07:51AM -0500, Jeremy Hylton wrote: | I think there's a fix for this in CVS. Can you try it again? Just tried. Seems to have fixed it. Now, for the next step *wink*. If I try starting Zope with an old existing

Re: [Zope-dev] RE: api docs [Was: Re: Post-mortem ...]

2003-12-11 Thread Paul Winkler
On Wed, Dec 10, 2003 at 10:20:22AM -0500, Brian Lloyd wrote: Ghaaa... :( API docs come from OFSP/help, so you'll probably have to copy it for now. As you rightly pointed out, this is problematic for keeping things in sync, but we should hold our nose for now and do it, since it's too late

RE: [Zope-dev] To the brave folks trying Zope HEAD...

2003-12-11 Thread Tim Peters
[Jeremy] I think the attribute error on data is just a symptom of the BTree failure. The object has no data attribute, because ZODB failed to unpickle the object that would be assigned to data. I don't know what happened with backwards compatibility for the old BTree classes. When Jim and

[Zope-dev] Re: api docs [Was: Re: Post-mortem ...]

2003-12-11 Thread Yuppie
Hi! Paul Winkler wrote: What would be sane in your view? Using interfaces for help, as CMF does? I was curious how CMF sets this up, and found the following in CMFCore/__init__.py: try: context.registerHelpTitle( 'CMF Core Help' )

Re: [Zope-dev] Preview of a Stackless Zope Application

2003-12-11 Thread Leonardo Rochael Almeida
On Thu, 2003-12-11 at 01:50, Christian Tismer wrote: Howdy, I made a little demo of Stackless Zope. It is just a quick hack to see how things can work. The example is a long-running Python method which prints lines to the browser. The key to this surprizing solution is tasklets,

[Zope-dev] Changing the Appearance of a Local File System Object

2003-12-11 Thread Asad Habib
Hello. I have a folder that I have created at the root level and inside this folder I have placed one Local File System object. The Local File System object contains two File objects. When I view the Local File System object by clicking on the 'View' option provided by the management interface, I

Re: [Zope-dev] Preview of a Stackless Zope Application

2003-12-11 Thread Christian Tismer
Leonardo Rochael Almeida wrote: On Thu, 2003-12-11 at 01:50, Christian Tismer wrote: [Stackless Zope App] The key to this surprizing solution is tasklets, channels, and thread pickling. Let me know your thoughts... http://www.centera.de/tismer/stackless/zope_demo This is very impressive. Can

[Zope-dev] Re: Post-mortem [Was: Zope 2.7.0 b3 regressions]

2003-12-11 Thread Yuppie
Hi Evan! Evan Simpson wrote: Done and done! ??? Are you sure? Today I built Zope 2.7 from a new checkout. And all icons in the ZMI are broken :-( They have src paths starting with // I didn't have a closer look at your checkin, but I'm afraid something went wrong. Cheers, Yuppie

RE: [Zope-dev] To the brave folks trying Zope HEAD...

2003-12-11 Thread Tim Peters
[Jeremy Hylton] I don't know if there is any documentation for BTree, I don't know of any dcos for (the old) BTree either. so the code will need to be your guide. I checked the code and each of the BTree types does support items(). So walk over the database, find each top-level BTree

Re: [Zope-dev] To the brave folks trying Zope HEAD...

2003-12-11 Thread Sidnei da Silva
| Then it may not be necessary to extract the items -- a constructor for a | BTrees-style BTree object: | | /** | ** Accepts a sequence of 2-tuples, or any object with an items() | ** method that returns an iterable object producing 2-tuples. | */ Neat! I'm glad I didn't started on it as

Re: [Zope-dev] 2.7 on Windows

2003-12-11 Thread Lennart Regebro
OK, I think I found the trick! Heres the steps: C:\Python23\python.exe inst\configure.py Edit the Makefile. nmake install C:\Python23\python.exe bin\mkzopeinstance.py ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] To the brave folks trying Zope HEAD...

2003-12-11 Thread Jeremy Hylton
On Thu, 2003-12-11 at 15:15, Sidnei da Silva wrote: Do'h, that's a bit difficult since Jim removed them for good :( Hmmm... I suppose you could write the script in Zope 2.7 and tell people they have to use that version of Zope to convert the database before upgrading. Now, back to the

[Zope-dev] SMPT Authorization support

2003-12-11 Thread Lennart Regebro
I just checked in (on regebro-esmpt_support-branch) support for setting a username and password on the mailhost. Very nice and easy fix, and lot's of people want it. But I realized that what you actually might want is to have different login and password for each user, that is a possibility to

Re: [Zope-dev] SMPT Authorization support

2003-12-11 Thread Barry Pederson
Lennart Regebro wrote: I just checked in (on regebro-esmpt_support-branch) support for setting a username and password on the mailhost. Very nice and easy fix, and lot's of people want it. But I realized that what you actually might want is to have different login and password for each user, that

Re: [Zope-dev] SMPT Authorization support

2003-12-11 Thread Leonardo Rochael Almeida
On Thu, 2003-12-11 at 18:26, Lennart Regebro wrote: I just checked in (on regebro-esmpt_support-branch) support for setting a username and password on the mailhost. Very nice and easy fix, and lot's of people want it. But I realized that what you actually might want is to have different

Re: [Zope-dev] SMPT Authorization support

2003-12-11 Thread Jens Vagelpohl
But I realized that what you actually might want is to have different login and password for each user, that is a possibility to pass username + password to send(). And maybe you want a setting to allow this or not. Or is this overkill? What do you think? IMHO, YAGNI. Besides, a lot of

[Zope-dev] ZServer HTTP 1.1 support

2003-12-11 Thread Paul Winkler
I noticed this in ZServer/README.txt (zope 2.6.2): HTTP 1.1 support is ZServer is incomplete, though it should work for most HTTP 1.1 clients. Anybody know what specifically is incomplete? In particular, some people on my team asked me if zserver supports persistent connections, and I

[Zope-dev] ZServer HTTP 1.1 support

2003-12-11 Thread Clemens Robbenhaar
Hi Paul, I cannot answer Your original question: I noticed this in ZServer/README.txt (zope 2.6.2): HTTP 1.1 support is ZServer is incomplete, though it should work for most HTTP 1.1 clients. Anybody know what specifically is incomplete? but instead a complete random off

Re: [Zope-dev] Zope Head (2.8) breaks refresh

2003-12-11 Thread Stuart Bishop
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/12/2003, at 5:50 AM, Dieter Maurer wrote: Stuart Bishop wrote at 2003-12-10 11:24 +1100: On 08/12/2003, at 12:15 AM, Dieter Maurer wrote: Playing with Zope Head (as of 2003-12-04) revealed problems with refresh. This is not just a 2.8 issue -

Re: [Zope-dev] ZServer HTTP 1.1 support

2003-12-11 Thread Jamie Heilman
Paul Winkler wrote: I noticed this in ZServer/README.txt (zope 2.6.2): HTTP 1.1 support is ZServer is incomplete, though it should work for most HTTP 1.1 clients. Anybody know what specifically is incomplete? A lot of stuff. There's a also a good deal of just flat-out brokenness.

Re: [Zope-dev] ZServer HTTP 1.1 support

2003-12-11 Thread Paul Winkler
On Thu, Dec 11, 2003 at 10:44:56PM +0100, Clemens Robbenhaar wrote: You can try out yourself: connect to the Zope server via telnet and type in: GET / HTTP/1.1 Host: localhost The server should serve the page, and if it supports persistent connections, if should not close the

Re: [Zope-dev] ZServer HTTP 1.1 support

2003-12-11 Thread Toby Dickenson
On Thursday 11 December 2003 21:39, Paul Winkler wrote: In particular, some people on my team asked me if zserver supports persistent connections, and I didn't know how to answer. I'm looking now at HTTPServer.py and the docstrings suggest that it does ... yes? no? If you have a squid proxy

Re: [Zope-dev] ZServer HTTP 1.1 support

2003-12-11 Thread Paul Winkler
Excellent, that's a much more thorough answer than I hoped for. Thanks! On Thu, Dec 11, 2003 at 02:16:46PM -0800, Jamie Heilman wrote: (a whole lot) -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's THE RIGHTEOUS DOCTOR! (random hero from isometric.spaceninja.com)

Re: [Zope-dev] To the brave folks trying Zope HEAD...

2003-12-11 Thread Jim Fulton
I announced that, for now, The Zope head won't work with old databases. We are going to have to come up with some code to deal with the old btrees and intsets. The good news is that, databases created with Zope 2.7 final should work. :) Jim Jeremy Hylton wrote: On Thu, 2003-12-11 at 10:24, Sidnei

Re: [Zope-dev] To the brave folks trying Zope HEAD...

2003-12-11 Thread Jim Fulton
Sidnei da Silva wrote: | Jim asked about it on zope-dev, and got no response; see: | | Can we forsake database backward compatability on the head for | a while? | | http://mail.zope.org/pipermail/zope-dev/2003-November/021055.html | | ... | | This would mean that old