[Zope-dev] Unsupported UserDb LoginRequired bug

2000-11-19 Thread francine broekhove
Hi everyone, i know UserDb is not supported, but ... I need a userlogin system on zope 2.1.6. and gave it a try with UserDb 1.3.0. It 'seemed' (spooky stuff this authentication) to work fine, until i moved a folder it resided in. Now i get the usual (it's been mentioned as from around august

Re: [Zope] Stupid Installation Question Remains Unanswered

2000-11-19 Thread Jens Vagelpohl
Well, actually, the REAME.txt doesn't say ANYTHING about how to install it. It *does* refer to doc/INSTALL.txt, which, unfortunately, is nowhere to be found: there is no directory called *doc* nor any INSTALL.txt file that I can see. Here's what unzipped: snip snip drwxr-xr-x 3 webmaste

Re: [Zope] expiring dtml documents

2000-11-19 Thread Cees de Groot
[EMAIL PROTECTED] said: any insight as to how one might code something like that? Document traversal is a simple recursive Python function - with one call to objectValues on a folder you can extract all documents (and iterate over them, check their creation date, remove them if necessary);

Re: [Zope] Still More Problems On the Install...

2000-11-19 Thread Ben Ocean
At 12:19 PM 11/19/2000 +, you wrote: * Ben Ocean [EMAIL PROTECTED] [001119 06:38]: Hi; Okay, I've untarred the distro. The instructions said to type in *python w_pcgi.py*. Did so and lots of stuff printed to screen, the last of which was *SystemError 512*. Should I worry about that?

Re: [Zope] Still More Problems On the Install...

2000-11-19 Thread Jens Vagelpohl
ben, as far as i know python 2.0 is not (yet) fully supported. if you look at that famous INSTALL.txt again you will see this: Important notes ZOPE 2.0 REQUIRES PYTHON 1.5.2! See CHANGES.txt for important notes on Zope 2.0. so i suggest you try it with python 1.5.2. jens

Re: [Zope] Problem with escaped double quotes

2000-11-19 Thread Steve Spicklemire
Another option... if you care ;- is to use _.chr() to include any ascii character.. dtml-let foo="'Look--' + _.chr(0x22) + '-- Here '" dtml-var foo /dtml-let produces.. Look--"-- Here -steve "Spicklemire," == Spicklemire, Jerry [EMAIL PROTECTED] writes: Spicklemire, Aitor asked:

[Zope] Search and replace

2000-11-19 Thread Lee Hunter
Is there any way to do a 'search and replace' in a Zope folder (and it's subfolders)? TIA Lee Hum Communications Ltd. ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! **

Re: [Zope] Need some help with installing ZPatterns

2000-11-19 Thread Dieter Maurer
Steve Waterbury writes: make: Fatal error: Don't know how to make target `/vol01/software/zope/lib/python1.5/config/Makefile' Current working directory /vol01/software/zope/lib/python/Products/ZPatterns *** Error code 1 make: Fatal error: Command failed for target `boot' Apparently, the

RE: [Zope] Still More Problems On the Install...

2000-11-19 Thread Ben Ocean
At 11:14 AM 11/19/2000 -0500, you wrote: Are you sure you need the source version? The binary is easier to install. Well, that *was* easier (now that I figured out which is which). First of all, apologies to all you hard-core techies for whom this is so easy, *but*... I got as far as

Re: [Zope] expiring dtml documents

2000-11-19 Thread Dieter Maurer
wade naveja writes: i maintain a zope server that collects several hundred dtml documents per day. there is a need to have dtml documents removed 2 weeks after they are created. any suggestions on how to go about doing this? You find them with "ZopeFind" (- built-in API documentation),

[Zope] Double quotes in (Python) strings (was: Problem with escaped double quotes)

2000-11-19 Thread Dieter Maurer
Inside Python strings, i.e. inside expr="'...'", you can use "\042" or "\x22" to embed a '"'. How it works: Python recognizes various escapes inside strings. Usually, they are used to insert characters that otherwise are difficult to include (usually, because they are unprintable or

Re: [Zope] Still More Problems On the Install...

2000-11-19 Thread Michel Pelletier
Ben Ocean wrote: At 11:14 AM 11/19/2000 -0500, you wrote: Are you sure you need the source version? The binary is easier to install. Well, that *was* easier (now that I figured out which is which). First of all, apologies to all you hard-core techies for whom this is so easy, *but*... I

[Zope] ZMailIn - alternatives?

2000-11-19 Thread Vincent - D. Ertner
Hi Zope, I tried to install ZMailIn but due to several x-envelope-to-header problems from different providers I think it'll not become a viable way of getting articles into the system. Is there any alternative to ZMailIn? Cheers, Vince ''' ô¿ô -

Re: [Zope] RE: ANNOUNCE Zope 2.2.3 release...

2000-11-19 Thread Curtis Maloney
On Saturday 18 November 2000 09:07, Joachim Werner wrote: FYI - someone has noticed a problem with the posted 2.2.3 release that needs looking into, so I've unlisted it for the time being. I'll send out a note and re-list it after we dig into this a bit... Oh no, not this one again ...

Re: [Zope] ZMailIn - alternatives?

2000-11-19 Thread Morten W. Petersen
[[EMAIL PROTECTED]] | Is there any alternative to ZMailIn? You can probably take a look at ZopeGUM, url:http://www.zope.org/Members/morphex/ZopeGUM. I'm currently looking into ways to make the distinct parts of ZopeGUM into separate products, and it's quite possible that a archive-like product

Re: [Zope] Search and replace

2000-11-19 Thread Martin Winkler
At 21:03 19.11.2000, you wrote: Is there any way to do a 'search and replace' in a Zope folder (and it's subfolders)? AFAIK: no. But on the other hand: why do you need it? That's what objects are for... Just create a method with the text that may change sometimes and is displayed on many

Re: [Zope] Still More Problems On the Install...

2000-11-19 Thread Ben Ocean
At 09:50 PM 11/19/2000 +, you wrote: from INSTALL.txt: snip ./start I apparently didn't mention in my last email that I *tried* ./start and it hung my computer. It got this far: [webmaster@thor Zope-2.2.2-linux2-x86]$ ./start -- 2000-11-19T23:11:01 PROBLEM(100) ZServer

Re: [Zope] Still More Problems On the Install...

2000-11-19 Thread Phil Harris
The result you got is what is supposed to happen. By default Zope runs in 'debug' mode and doesn't unattach itself from the console. To make it unattach itself, basically making it run in the background, you need to edit the start script and remove the '-D'. See z2.py for more start options.

[Zope] Permission problems...

2000-11-19 Thread Curtis Maloney
Green things, I really can't understand this... I am logged in as my normal Manager role user, editing away on my site. In the management section, no problems... I can edit, add and delete to my hearts content. However, when I try the normal view, one a certain page I get permission

[Zope] snappier zope.org/how to make sites as snappy

2000-11-19 Thread Bak @ kedai
hi all it looks to me that zope.org is reponding better than previous days. what was done? any tips on how to go about this? my site (http://www.emedia.com.my) currently suffers from long latency between the request and loading the page. tables may be the cause but a request for normal html

[Zope] Problem Solved!

2000-11-19 Thread Ben Ocean
Thanks, everyone! Works fine now :) Especially thanks for showing me *the book* :)) BenO At 02:04 PM 11/19/2000 -0800, you wrote: Ben Ocean wrote: At 11:14 AM 11/19/2000 -0500, you wrote: Are you sure you need the source version? The binary is easier to install. Well, that *was*

[Zope] RE : [Zope] NESTED IN STATEMENTS AND PASSING VARIABLES in DTML

2000-11-19 Thread Kelvin Cheong
dtml-in "category_method(id='1')" size=100 start=query_start id=dtml-var idseq=dtml-var seqvid=dtml-var vid where can i find out more about these properties, i.e. the seq...vid... and so on..? thanx for any directions in advance, later, amoebia VCN - The Leader In Corporate Communication

Re: [Zope] RE : [Zope] NESTED IN STATEMENTS AND PASSING VARIABLES inDTML

2000-11-19 Thread Bak @ kedai
ZQR is a good bundle of joy to keep on the desk top. search at zope.org. also, with zope2.2.2, there's a help button that'll put out the API. -Original Message- From: Kelvin Cheong [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Monday, November 20, 2000 12:23 PM

RE: [Zope] Search and replace

2000-11-19 Thread Lee Hunter
Ouch! Zope has no built in way to do search and replace? As an editor, that is a *very* serious drawback indeed! The first workaround you suggest may be useful when creating new pages although only when you can guess what might change in the future and it also requires that all of the people

Re: [Zope] Search and replace

2000-11-19 Thread Paul Winkler
Lee Hunter wrote: Shouldn't there be a S R tab on every folder object that provides a choice of replacing html, dtml or text and that spits out a report on what was changed? Oho, I like it. Yes, please!!! Or even better, that first gives you a report of *proposed* changes and then allows

[Zope] How exactly do I restart zope?

2000-11-19 Thread NYNewMedia
How exactly do I restart zope? I have an eight month old zope box running on Linux 5.1 We had to manually restart the server. The question for us now is how exactly to restart zope? We tried to restart http, and tried some of the intructions on zope.org, but have not been able to get it to