Re: [Zope-dev] ANN: Extended ManagementTabs Mixin for Python Product Developers

2000-12-10 Thread Michael Bernstein
Johan Carlsson wrote: Hi, I just uploaded my Extended ManagementTabs Mixin Product you can find it at: http://www.zope.org/Members/johanc/ExtendedManagmentTabs/ExtendedManagmentTabsMixin/ http://www.zope.org/Members/johanc/ExtendedManagmentTabs/ExtendedManagmentTabsMixin/ It's should

Re: [Zope-dev] ANN: Extended ManagementTabs Mixin for Python Product Developers

2000-12-10 Thread Johan Carlsson
Michael Bernstein. Sounds interesting. Can you add a few screenshots to the product page? Ok, have a look at this (Click Edit, MyMenu1 and MyMenu4 to see how they behave.) http://www.zope.org/Members/johanc/ExtendedManagmentTabs/ExtendedManagmentTabsMixin/screamshots

[Zope] Re: boolean help

2000-12-10 Thread Martijn Pieters
On Sat, Dec 09, 2000 at 01:29:41PM -0800, [EMAIL PROTECTED] wrote: I hope you don't think this email innappropriate, but you were so kind in responding to a previous question that I posted on the zope mailing list that I thought I would direct this simple question to you alone. It flatters

Re: [Zope] HTTP status code 302

2000-12-10 Thread Steve Spicklemire
Hi Hung Jung, Did you set a 'Host' header in your request? Is the request going straight to ZServer, or through Apache? (Also... do you have a SiteRoot?) These can all affect how the request is handled by the server... It woould be interesting to try urllib, rather than httplib since it

[Zope] Important Fix for Zope 2.0 through 2.1.6

2000-12-10 Thread Evan Simpson
Thanks to Jeff Ragsdale, we've finally been able to kill a longstanding bug that allows POST requests to interfere with each other. Symptoms include corrupted or aborted File and Image uploads, and stupid-log messages about "AttributeError: data" killing threads. The attached HTTPServer.py is

[Zope] Important Fix for Zope 2.2.x

2000-12-10 Thread Evan Simpson
Thanks to Jeff Ragsdale, we've finally been able to kill a longstanding bug that allows POST requests to interfere with each other. Symptoms include corrupted or aborted File and Image uploads, and stupid-log messages about "AttributeError: data" killing threads. The attached HTTPServer.py is

[Zope] Read-only zope (not zope from a readonly Data.fs)

2000-12-10 Thread Pericles Akritides
Hi, Is there a way to make zope run read-only(with whatever loss of functionality doing that implies)? I don't mean to prevent it from trying to write to disk (demo storage, -r), I mean to make it impossible to change persistent objects in the running Zope instance, something like disabling

Re: [Zope] HTTP status code 302

2000-12-10 Thread Hung Jung Lu
From: "Steve Spicklemire" [EMAIL PROTECTED] Did you set a 'Host' header in your request? Is the request going straight to ZServer, or through Apache? (Also... do you have a SiteRoot?) These can all affect how the request is handled by the server... Ahh... that's it. Thank you very much!!

Re: [Zope] Random choice in dtml-in?

2000-12-10 Thread Tino Wildenhain
Hi J, "J. Atwood" schrieb: I think dtml-with "_.whrandom.choice(folder_name.objectValues())" /dtml-with should do what you want. HTH Tino Wildenhain Ok.. so I can get a random item out of a folder with. dtml-var expr="_.whrandom.choice(folder_name.objectValues())" And I can

Re: [Zope] HTTP status code 302

2000-12-10 Thread Oliver Bleutgen
Do you know any pointer where I can get info on all the headers? This is the specification for http 1.1 http://www.faqs.org/rfcs/rfc2616.html esp. Section 14 for headers, you'll also find 302 and friends explained in this document. and for more pointers http://www.w3.org/Protocols/

Re: [Zope] HTTP status code 302

2000-12-10 Thread Steve Spicklemire
Hi Hung, No! Urllib does that too! import urllib x = urllib.urlopen('http://user:pass@host:8080/path/to/get') print x.read() -steve "Hung" == Hung Jung Lu [EMAIL PROTECTED] writes: Hung From: "Steve Spicklemire" [EMAIL PROTECTED] Did you set a 'Host' header in your request? Is

[Zope] Install problem with fastcgi

2000-12-10 Thread sdouche . ml
Hello all, I try to install mod_fastcgi but Apache says : Cannot load /usr/lib/apache/1.3/mod_fastcgi.so into server: / usr/lib/apache/1.3/mod_fastcgi.so: undefined symbol: ap_os_is_path_absolute /usr/sbin/apachectl start: httpd could not be started I compiled with the options: apxs -o

Re: [Zope] Why I Love Zope

2000-12-10 Thread Curtis Maloney
(ie going from zero to zen quickly!). You know, this sounds like a great title for a "Learn Zope Quick" book "From Zero to Zen in 15 minutes!" Regards, Ivan It's early monday, ok? Have a better one, Curtis Maloney ___ Zope

[Zope] PythonMethod problem

2000-12-10 Thread kosh
I know I am still using PythonMethods however I have not seen Python Scripts out yet for 2.2.4. Okay here is the problem. How do I call one PythonMethod from another PythonMethod? Example object foo is a python method and it takes a='',b='',c='',d='' does stuff returns a string foo_spec

Re: [Zope] ZClass with images

2000-12-10 Thread Michael Bernstein
Diego Rodrigo Neufert wrote: Anyone know how to put some images in ZClass? I have done things like putting ZClass with base class OFS:Image but with it I can only assing one Image do the object... I need to assign two or tree images do the object. I've been thinking about something similar

[Zope] Multiple databases and ZEO

2000-12-10 Thread Bill Anderson
Shane Hathaway wrote: Bill Anderson wrote: Shane Hathaway wrote: On Tue, 5 Dec 2000, Bill Anderson wrote: So, what would you suggest for the following scenario? o Site distirbuted via ZEO o Using SiteAccess2 for virtual hosting sites under /vhosts/thissite

[Zope] access log analyzer (analog, webalizer etc.)

2000-12-10 Thread Martin Winkler
Hi listies, since we all use names for urls that are not "standardized" - ending with ".html", ".gif" etc - I am wondering how to do a good logfile analyzing with standard tools like those in the subject line. I am usually running zope behind a http-accelerated squid, so I've configured

[Zope] Transparent Folders

2000-12-10 Thread Brenton Bills
Hi, v0.2 I attempting to use transparent folders. Like Andrew Milton's suggestions on using them to unclutter your tree, I wanted (want) to put all SQL methods in a folder in the root of my zope tree. From under this I wanted to put various tranparent

[Zope] regex vs ts_regex

2000-12-10 Thread Ross Lazarus
Apropos http://www.zope.org/Documentation/How-To/ThreadSafety Am I missing something here? There seem to be a number of places in the current 2.2.4 source where the python regex module is used - not ts_regex, thus apparently violating your advice on thread safety? For example, I was just