Re: [Zope] Newbie Install: Solaris/Zeus

2000-11-16 Thread Aleksander Salwa
On Wed, 15 Nov 2000, Lee Hunter wrote: Zope requires Python thread support! You need to recompile Python with thread support turned on. [EMAIL PROTECTED] /--\ | `long long long' is too long for GCC | \--/

[Zope] Web mail with POP3

2000-11-16 Thread Aleksander Salwa
I need to build a web mail product with pop3 back-end. There is WorldPilot, but AFAIK it has no pop3 support. I'm thinking about taking web inteface/application design from WorldPilot and writing code to talk to pop3 server (probably based on POPMail product). Is this a good approach, or someone

Re: [Zope] Newbie Install: Solaris/Zeus

2000-11-16 Thread Tony McDonald
On 16/11/00 4:23 am, "Lee Hunter" [EMAIL PROTECTED] wrote: I'm trying to install Zope 2.2.2 on a shared web host that uses Zeus running on Solaris. When I try to run "python w_pcgi.py" I get the following error: Zope requires Python thread support! The version

Re: [Zope] Web mail with POP3

2000-11-16 Thread seb bacon
* Aleksander Salwa [EMAIL PROTECTED] [001116 09:00]: I need to build a web mail product with pop3 back-end. There is WorldPilot, but AFAIK it has no pop3 support. I'm thinking about taking web inteface/application design from WorldPilot and writing code to talk to pop3 server (probably based

Re: [Zope] using if with date values

2000-11-16 Thread Chris Withers
"Herring, William O." wrote: I would like to insert into the this sql table the form variable birth.x. I would like to do it only if the date variable identification.birthdate is greater the that listed below. I know the current 'if' statement is incorrect and probably not even close.

Re: [Zope] Dr.Watson on NT

2000-11-16 Thread Toby Dickenson
On Fri, 10 Nov 2000 17:54:37 WET, "Júlio Dinis Silva" [EMAIL PROTECTED] wrote: Hi all, Is there a NT guru in the house :-) Last time you asked exactly the same question I pointed you to Microsoft's Knowledge Base articles Q188296 and Q103861. In what way do these not help? Have you tried

[Zope] Transaction sizes

2000-11-16 Thread Paul Zwarts
Hi all, I have a few forms that really work intermitently. They are quite large in processing, accessing several thousand occurences in several tables, several times. Wont go into details, but its a resource hog. Alot of times the page eventually returns a No data error. This causes me to wonder

[Zope] chapter 5 Zope book - problems with the examples

2000-11-16 Thread Lee Reilly CS1997
Hi, I'm going through the examples in Chapter 5 of the Zope book and am having some problems. For those of you familiar with it, it is the 'Zope Zoo' example. Can anyone help me out? 1 - I create a DTML method called navigation as follows: ul dtml-in expr="objectValues('Folder')" lia

Re: [Zope] Web mail with POP3

2000-11-16 Thread Morten W. Petersen
[Aleksander Salwa] | Is this a good approach, or someone already has wrote something like this | for Zope ? You could take a look at ZopeGUM, http://www.zope.org/Members/morphex/ZopeGUM . -Morten ___ Zope maillist - [EMAIL PROTECTED]

Re: [Zope] How do I form an XML-RPC query to a remote server?

2000-11-16 Thread Ender
Tony McDonald wrote: Hi all, I'm experimenting with collating data from a remote database that uses XML-RPC. I can send it messages like; import xmlrpclib medweb = xmlrpclib.Server("http://bogus.server.com") medweb.getImages('scar') '?xml version="1.0" encoding="ISO-8859-1"

Re: [Zope] Avoiding acquisition aka testing for contained objects

2000-11-16 Thread Stefan H. Holek
On Wed, 15 Nov 2000, Johan Carlsson wrote: If I want to know whether a certain object is contained in the current folder I do this: dtml-if "'index_html' in this().objectIds()" yes it's here dtml-else not here /dtml-if hasattr(self.aq_base, 'index_html') should probably

RE: [zope] Help!!! (was: sudden ZClass breakage)

2000-11-16 Thread James Sintz
My ZClass is broken, but only in Zope 2.2.2 why? I exported my ZClass and imported it into a Zope 2.2.0 installation and it works GREAT. I figured, some how, I must have really screwed up my 2.2.2 installation so I removed it off my server. I then downloaded and installed 2.2.2 again, installed

[Zope] dtml-if and dtml-with problems

2000-11-16 Thread James Sintz
Could someone tell me why the follow statement is never true. dtml-in "news.objectValues(['newsLetters'])" sort="nl_goLiveDate" dtml-if "nl_goLiveDate == '2000/11/16'" h2dtml-var nl_subject - dtml-var nl_goLiveDate/h2 p dtml-var nl_body fmt=structured-text /p /dtml-if /dtml-in

[Zope] Visualization of inherited attributes

2000-11-16 Thread Jean Rodrigo Ferri
Greetings, I created an abstract ZClasse call "person" and a "service_prestator" ZClasse that it inherits the classroom "person". It would like to only visualize in a border (view) the attributes of the two classrooms, for this, I created a method calling the attributes these classrooms

[Zope] Risks. Was ZopeLDAP 1.0b4 breaks the root directory security tab

2000-11-16 Thread Wolfgang Strobl
On 16 Nov 2000, 9:02 Kyler B. Laird wrote: Remember the satellite that blew up because of a missed comma? (O.k., something like that. Is it an urban legend?) "MARINER 1, the first U.S. attempt to send a spacecraft to Venus, failed minutes after launch in 1962. The guidance instructions

Re: [Zope] Web mail with POP3

2000-11-16 Thread Joachim Werner
Look at Morten Petersen's ZopeGUM project (http://www.zope.org/Members/morphex). It has POP3. The interface is still more or less missing, but Morten is advancing quite well ... Also see my comments below ... Joachim - Original Message - From: Aleksander Salwa [EMAIL PROTECTED] To:

[Zope] ZClasse default in the product

2000-11-16 Thread Jean Rodrigo Ferri
Greetings again, I created a Product with 16 ZClasses, however these 16 classrooms are listed in the box of selection "Available Objects" : -), where it would need that only the main classroom was listed. I only qualify the main classroom through permissions or exists some "trick", as I

Re: [Zope] dtml-if and dtml-with problems

2000-11-16 Thread Andy McKay
If your nl_goLiveDate is a date, then you might need to str() the variable dtml-if "_.str(nl_goLiveDate)=='2000/11/16'" -- Andy McKay, Developer. ActiveState. - Original Message - From: "James Sintz" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 16, 2000 9:13 AM

RE: [Zope] dtml-if and dtml-with problems

2000-11-16 Thread James Sintz
Thanks that did the trick... dtml-if "_.str(nl_goLiveDate) == ZopeTime().strftime('%Y/%m/%d')" also found out that dtml-if "nl_goLiveDate.strftime('%Y/%m/%d') == ZopeTime().strftime('%Y/%m/%d')" works as well. -Original Message- From: Andy McKay [SMTP:[EMAIL PROTECTED]]

[Zope] DoD Users That You Know Of?

2000-11-16 Thread Kraska, Andy W.
I am considering application of Zope to a Department of Defense (DoD) customer. It would be very helpful to talk with other DoD type users of Zope so we can establish to other DoD people that the product's already successfully in use. Can you give me contact information on any such users

Re: [Zope] DoD Users That You Know Of?

2000-11-16 Thread Martijn Pieters
On Thu, Nov 16, 2000 at 12:59:25PM -0500, Kraska, Andy W. wrote: I am considering application of Zope to a Department of Defense (DoD) customer. It would be very helpful to talk with other DoD type users of Zope so we can establish to other DoD people that the product's already successfully

[Zope] Letting a user create something

2000-11-16 Thread Anders Eriksson
Hello, I have installed the Yihaw product and it work just fine. But I have one problem, and I guess this is kind of a general question. How do I let the user do something? e.g. Create a folder. In this particular case it's a Yihaw folder (or any of the other Yihaw entities. I understand that

[Zope] How to use the manage_add - methods

2000-11-16 Thread Espen Sorbye Frederiksen
I am a very novice zope/python user that needs to become an expert as soon as possible, since my whole dissertaion is based on Zope/Python. I have read all documentation availible on the zope.org site but can't find the answer to the following... 1. To run python scripts written as dtml methods.

[Zope] SiteAcess

2000-11-16 Thread Mechtild Hofmann
Hallo, We tried to install SiteAccess. But when we try to connect with a SiteRoot Objekt, we get error: Error Type: TypeError Error Value: unexpected keyword argument: validated_hook [...] Traceback (innermost last): File /var/zope/lib/python/ZPublisher/Publish.py, line 222, in

[Zope] Invalid Date-Time String - Yihaw

2000-11-16 Thread Mechtild Hofmann
Hello again, I use Yihaw and have a problem with the yihawNewsItem and IE (4.0): When I add a longer news, I got the error: Invalid Date-Time String with IE, not with netscape. The only way: I take a part of the massage and add the rest by editing. What's wrong ? Thank you for help Mechtild

Re: [Zope] Web mail with POP3

2000-11-16 Thread Aleksander Salwa
On Thu, 16 Nov 2000, seb bacon wrote: What do you mean, 'pop3 support'? If you want people to access their mailboxes both through the web and from a pop3 mail client, then all you need to do is use a mail server like UW-imap which speaks both pop3 and imap. Then you can just stick with

Re: [Zope] SiteAcess

2000-11-16 Thread The Doctor What
* Mechtild Hofmann ([EMAIL PROTECTED]) [001116 13:53]: We use Zope 2.2.2. and Linux. Guten tag! If the your linux distrobution os Debian, I know what the problem is, and can mail you a fixed debian that should work till the Debian maintainer fixes the problem. Ciao! -- "We can go back to

[Zope] How to get around non-propogating proxy roles, also security problem with zsql traversal?

2000-11-16 Thread Brad Clements
Zope 2.2.2 on linux I have a web site where almost every page can only be viewed by authenticated (non anymous) users. I want to create one page that anonymous viewers can see. But to create this page I want to reuse (not duplicate) existing dtml, so I gave this page a proxy role "PUBLIC"

Re: [Zope] Avoiding acquisition aka testing for contained objects

2000-11-16 Thread Dieter Maurer
Stefan H. Holek writes: If I want to know whether a certain object is contained in the current folder I do this: dtml-if "'index_html' in this().objectIds()" yes it's here dtml-else not here /dtml-if Id like to know whether this is the best/most efficient way to do it.

[Zope] The new Python Method renaming Poll

2000-11-16 Thread Michel Pelletier
http://www.zope.org/Members/michel/Scratch/Poll Hope Netscape doesn't mess up my formatting on the rest of this. The above link goes to the HTML version if it does! -Michel The New and Improved Python Method Poll We recently held a poll on Zope.org about renaming Python Methods. The

Re: [Zope] Data.fs - can't pack: Oversized int - HELP!!!

2000-11-16 Thread Andy McKay
Q: I saw Jim's mail on fsrecover.py. Does this work on Zope 2.1.6 databases too? I'll try tomorrow, with a backup copy. But personal experience would be nice :-) Every time Ive had a data.fs problem running fsrecover or simply restarting (does the same thing has worked). There is

Re: [Zope] Catalog sort-on parameter

2000-11-16 Thread Tres Seaver
[EMAIL PROTECTED] wrote: I'm trying to use the 'sort-on' parameter in a Catalog search, and it doesn't work. I use Zope 2.2.2. I read in pasts messages that the 'sort-on' feature was broken, is it still? The parameter to the Catalog's 'searchResults' method is spelled 'sort_on' (it must

[Zope] Running Mailman CGI under Zope ZServer

2000-11-16 Thread Fred Wilson Horch
Hello out there, I'm looking for someone with some more Zope "Zen" to help me figure out how to add support for legacy CGI scripts (specifically Mailman 1.1) to Zope. To recap, I know and understand how to get Apache to play nicely with Zope. What I'm trying to do is remove the need for Apache

Re: [Zope] The new Python Method renaming Poll

2000-11-16 Thread Bill Anderson
Anyway we could get maybe daily list of submitted candidates, or a page listing them, so we don't duplicate (I get the feeling there may be multiple request for Python ZMethod, for example.) efforts on getting candidates? Might keep your inbox from swelling with duplicates too. :) Bill

Re: [Zope] The new Python Method renaming Poll

2000-11-16 Thread Shane Hathaway
Michel Pelletier wrote: *Once again* we will be soliciting names from inside DC and from the community. In addition to submitting a name, we encourage you to also submit a one-liner description or justification for you name, it can be in any form, Haiku poetry, a Dutch

Re: [Zope] The new Python Method renaming Poll

2000-11-16 Thread Yves-Eric Martin
On Thu, 16 Nov 2000 19:00:29 -0700 Bill Anderson [EMAIL PROTECTED] wrote: Anyway we could get maybe daily list of submitted candidates, or a page listing them How about a wiki ? -- Yves-Eric Martin Digital Garage Inc. [EMAIL PROTECTED] ___ Zope

[Zope] GNOME Web Team - Call for Volunteers

2000-11-16 Thread rainlood
Hello. http://news.gnome.org/gnome-news/974368712/ GNOME Web Team - Call for Volunteers Posted by Christian Schaller on Thursday November 16, @04:58AM from the spiderman-wanted dept. Joakim Ziegler has posted a statement to the GNOME announce list calling for volunteers to help out with the

Re: [Zope] The new Python Method renaming Poll

2000-11-16 Thread Steven D. Majewski
On Fri, 17 Nov 2000, Andrew Kenneth Milton wrote: +---[ Michel Pelletier ]-- | | asking the question "Who is buried in Grant's tomb?". Duh. Perhaps for the non-americans, someone can tell us why the answer to this is 'nobody.' I thought the answer was

Re: [Zope] The new Python Method renaming Poll

2000-11-16 Thread Michel Pelletier
Andrew Kenneth Milton wrote: +---[ Michel Pelletier ]-- | | asking the question "Who is buried in Grant's tomb?". Duh. Perhaps for the non-americans, someone can tell us why the answer to this is 'nobody.' Oops. Ulysses S. Grant is buried in Grant's tomb.

Re: [Zope] The new Python Method renaming Poll

2000-11-16 Thread Andrew Kenneth Milton
+---[ Michel Pelletier ]-- | Andrew Kenneth Milton wrote: | | +---[ Michel Pelletier ]-- | | | | asking the question "Who is buried in Grant's tomb?". Duh. | | Perhaps for the non-americans, someone can tell us why the answer to this is

[Zope] overriding manage_beforeDelete in a CatalogAware Product

2000-11-16 Thread Dennis Nichols
I think I need help in overriding the manage_beforeDelete method from CatalogAware. Just to be sure I'm asking the right question, here's the background: I have a Product (in Python, not TTW) whose instances get cataloged in a separate ZCatalog called CommentCatalog. My product's class

Re: [Zope-dev] License issues

2000-11-16 Thread Juan David Ibáñez Palomar
In article [EMAIL PROTECTED], Jimmie Houchin [EMAIL PROTECTED] wrote: The GPL would protect DC from predatory competitors. It would also allow for Zope's adoption in certain environments. I also believe some people And prevent it in others. would relicense their products to the

Re: [Zope-dev] License issues

2000-11-16 Thread Juan David Ibáñez Palomar
On Tue, 14 Nov 2000 09:48:20 +0100 (MET), [EMAIL PROTECTED] (Juan David Ibáñez Palomar) wrote: it's illegal to distribute GPL code together with [ZPL] code I dont see this as an issue for Zope (taken as a whole). There is no problem with other developers releasing GPL products for

Re: [Zope-dev] Two glaring omissions

2000-11-16 Thread Toby Dickenson
On Tue, 14 Nov 2000 15:39:59 -0500, Shane Hathaway [EMAIL PROTECTED] wrote: 2. The ability to rename properties after instances of the classes have been created (and have the data in those fields preserved) This is also more difficult than it sounds. You'd have to either scan through the

Re: [Zope-dev] CVS and Zope methods

2000-11-16 Thread Steve Spicklemire
Hi Petr, If you're running on something unixy.. you could use ZCVSMixin... -steve "PK" == Petr Knapek [EMAIL PROTECTED] writes: PK Hi Zopists, I am working on a Zope project and we decided to PK store source code in CVS. With python Zope products there is PK no problem. The

Re: [Zope-dev] CVS and Zope methods

2000-11-16 Thread Steve Spicklemire
Hi Robin, You can FTP to the 'methods' tab of your ZClass using: ftp://name@server:xx21/Control_Panel/Products/YourProductFolder/YourZClass/propertysheets/methods -steve "Robin" == Robin Becker [EMAIL PROTECTED] writes: Robin On the same kind of note I find that while the code in my

[Zope-dev] Folders w/Customizer Support

2000-11-16 Thread Chris Withers
If a FwCS, supports a meta_type, does that mean it has to provide everything for DataSkins of that meta_type? To put it another way, could you have a FwCS that provided soem properties and let another FwCS further up the acquisition tree supply the rest? cheers, Chris

Re: [Zope-dev] CVS and Zope methods

2000-11-16 Thread Robin Becker
In article [EMAIL PROTECTED], Steve Spicklemire [EMAIL PROTECTED] writes Hi Robin, You can FTP to the 'methods' tab of your ZClass using: ftp://name@server:xx21/Control_Panel/Products/YourProductFolder/YourZClass/prope rtysheets/methods -steve ... yes I found that out although one of my

Re: [Zope-dev] strange FTP bug

2000-11-16 Thread Ender
Robin Becker wrote: I'm using python's ftplib to automate transfer of my dtml methods back and forth into my ZClasses I seem to be unable to GET a method called 'filtered_meta_types' from /Control_Panel/Procucts/myProduct/myZClass/propertysheets/methods I get instead a permissions

Re: [Zope-dev] strange FTP bug

2000-11-16 Thread Robin Becker
In article [EMAIL PROTECTED], Ender [EMAIL PROTECTED] writes Robin Becker wrote: I'm using python's ftplib to automate transfer of my dtml methods back and forth into my ZClasses I seem to be unable to GET a method called 'filtered_meta_types' from

Re: [Zope-dev] CVS and Zope methods

2000-11-16 Thread Robin Becker
In article xrldNBAyh$[EMAIL PROTECTED], Robin Becker [EMAIL PROTECTED] writes In article [EMAIL PROTECTED], Steve Spicklemire [EMAIL PROTECTED] writes Hi Robin, You can FTP to the 'methods' tab of your ZClass using:

Re: [Zope-dev] Folders w/Customizer Support

2000-11-16 Thread Phillip J. Eby
At 02:46 PM 11/16/00 +, Chris Withers wrote: To put it another way, could you have a FwCS that provided soem properties and let another FwCS further up the acquisition tree supply the rest? Nope. But there's nothing stopping you from writing a new version of the "link to parent providers"

Re: [Zope-dev] License issues

2000-11-16 Thread Simon Michael
Simon Michael [EMAIL PROTECTED] writes: Or, if someone wants to distribute something which includes zope and one or more GPL products. I mean, eg, you want to distribute your end-user package Easy Portal Creator 2000, based on zope/ptk/squishdot/zwiki.

[Zope-dev] How do I create folders/methods etc. within the code?

2000-11-16 Thread Espen Sorbye Frederiksen
I am a very novice zope/python user that needs to become an expert as soon as possible, since my whole dissertaion is based on Zope/Python. I have read all documentation availible on the zope.org site but can't find the answer to the following... 1. To run python scripts written as dtml methods.

Re: [Zope-dev] How do I create folders/methods etc. within the code?

2000-11-16 Thread Rik Hoekstra
Some additions: 2. To create folders, mthods etc in the code. I have found some functions manage_addDTMLMethod, manage_addFolder, but how do I use them? well look at their signature in the code eg: self.manage_addFolder(id='Testing') The Zope Help system that comes with your Zope

[Zope-dev] the Parsed XML project

2000-11-16 Thread Karl Anderson
The Parsed XML project is now public and ready for input. Parsed XML is the successor to XMLDocument. We have a wiki at http://www.zope.org/Wikis/DevSite/Projects/ParsedXML. [EMAIL PROTECTED] is also a good place for discussion at this time. -- Karl Anderson [EMAIL

Re: [Zope-dev] zope and os/2

2000-11-16 Thread Tres Seaver
"Paulo Dias" [EMAIL PROTECTED] wrote: hi/2 all... I'm new to this list, and i'm trying to port zope to os/2 to provide the os/2 community with such a fine program:) well, i installed the emx/gcc package and put python for os/2 1.5.2 up and running, and then picked up the zope src

Re: [Zope-dev] ZopeBug: No Last-Modified for misc_/.../*.gif objects!!!!

2000-11-16 Thread The Doctor What
* Dieter Maurer ([EMAIL PROTECTED]) [001116 16:17]: The Doctor What writes: I was looking at the cacheability of my website in zope, and saw that the misc_/OFSP/*.gif images (as in the icon objects) are NOT cacheable because they don't return *any* date info. If they *at least*