Re: [Zope-dev] LoginManager.

2000-08-24 Thread Bill Anderson
Terje Malmedal wrote: [Bill Anderson] Terje Malmedal wrote: Can anybody please provide a simple example of a working usersource written in python? Look at the UserSource source for LoginManager and Membership. I did that. I feel I am missing something obvious. What I do is:

RE: [Zope-dev] Logs stamped with wrong time

2000-08-24 Thread Brian Lloyd
I just checked, and my copy of Apache logs in local time (my last example). So I agree that following the convention and logging in localtime is best. FYI - I've checked in the fix for this for 2.2.1 (we've been offline for a few days though, and I have to catch up on reply notifications

Re: [Zope-dev] Voting for Patches?

2000-08-24 Thread Adam Karpierz
Adam Karpierz wrote: There is a patch for it: http://classic.zope.org:8080/Collector/1540/view I wonder whether it'd be worth enabling people to vote on what patches they'd like integreated and what bugs they'd like solved in the collector? Sorry ChrisW but I dont understand what you mean :(

Re: [Zope-dev] bug in CatalogAwareness?

2000-08-24 Thread Chris Withers
Shane Hathaway wrote: Does it work with SiteAccess? Untested, but it should work, yes. I hope so, Squishdot uses exactly the same code now ;-) cheers, Chris ___ Zope-Dev maillist - [EMAIL PROTECTED]

[Zope-dev] ZPatterns.. Property sheets... once and for all. ;-)

2000-08-24 Thread Steve Spicklemire
Hi Folks, OK.. I didn't hear much from my last plea for advice... I thought perhaps such a concrete problem would product lots of sage advice... but there's good news: here's another chance! Really Really Basic: If I have a class like so: class Shopper( OFS.SimpleItem.Item,

[Zope-dev] RE: Voting for patches?

2000-08-24 Thread Jon Franz
This is already being setup as part of the patch and small change integration page... more details once it's up this weekend ;P you will like. Message: 9 Date: Thu, 24 Aug 2000 15:09:32 +0100 From: Chris Withers [EMAIL PROTECTED] Organization: New Information Paradigms To: Adam Karpierz [EMAIL

[Zope-dev] Re: ZPatterns.. Property sheets... once and for all. ;-)

2000-08-24 Thread Steve Alexander
Steve, Ok, it is a bug in manage_tabs. Here's a proper fix: dtml-if manage_options dtml-with "_(option=manage_options[a_])" dtml-if "option.has_key('help')" td align="right" valign="top" dtml-var "HelpSys.button(HelpSys, REQUEST, product=option['help'][0],

Re: [Zope-dev] Zope as CGI with IIS Windows 2000 Server

2000-08-24 Thread Rik Hoekstra
URGENT! Need assistance with Zope as a PCGI with IIS 5 on Windows 2000 server. After configuring Zope for use as a PCGI, and configuring IIS to use the pcgi-wrapper.exe, etc... The test link:http://localhost/Scripts/Zope.pcgi ...is returning the following message within the

[Zope-dev] Re: ZPatterns.. Property sheets... once and for all. ;-)

2000-08-24 Thread Steve Spicklemire
Cool! Thanks Steve.. I'll give that a try. I guess the question behind the question though is is this a reasonable way to handle property sheets? Is this how the designers of ZPatterns envision property sheets will be used? I keep getting the feeling that I'm missing a basic 'grokism' of

Re: [Zope-dev] Zope Content Management System

2000-08-24 Thread Rik Hoekstra
Hi there, I am working on a project and have been looking at the Zope Content Management System as part of the solution. However, I have a couple of questions. From what I have seen so far, the page generation is all done through the Zope Management Interface, and the content of the page is

[Zope-dev] ZPatterns bug: Specialist does not implement _PropertySheetsFor(client)

2000-08-24 Thread Steve Alexander
I'm using ZPatterns 0.4.1snap1. The LinkToParentProviders datamanager doesn't work properly because it assumes that the Specialist it lives in has a _PropertySheetsFor(client) method. However, Specialists (and DataManagers) don't provide this method. This stops

Re: [Zope-dev] Zope Content Management System

2000-08-24 Thread Dieter Maurer
Troy Coburn writes: I need page content to be generated be users that have little or no knowledge of HTML Any suggestions and/or comments would be very helpful. You may want to look at Wiki's, especially the ZWiki product. You find it (and information about Wiki) at zope.org.

[Zope-dev] Re: ZPatterns.. Property sheets... once and for all. ;-)

2000-08-24 Thread Steve Alexander
Steve Spicklemire wrote: Cool! Thanks Steve.. I'll give that a try. I guess the question behind the question though is is this a reasonable way to handle property sheets? Is this how the designers of ZPatterns envision property sheets will be used? I think so. You add

Re: [Zope-dev] ZPatterns bug: Specialist does not implement _PropertySheetsFor(client)

2000-08-24 Thread Phillip J. Eby
At 09:23 PM 8/24/00 +0100, Steve Alexander wrote: I'm using ZPatterns 0.4.1snap1. The LinkToParentProviders datamanager doesn't work properly because it assumes that the Specialist it lives in has a _PropertySheetsFor(client) method. However, Specialists (and DataManagers) don't provide this

[Zope-dev] Product release: ExtFile/ExtImage 0.91

2000-08-24 Thread Heine, Gregor
Version 0.91 of the ExtFile/ExtImage Software Product has just been released. The ExtFile and ExtImage Products store large files in an external file-repository and are able to display icons for different MIME-Types. The ExtImage Product additionally creates preview-thumbnails from images and

RE: [Zope] Including a method returning batches inside a page.

2000-08-24 Thread Jean Jordaan
hi Dieter For a DTML method(!), "id" is the id of the object of which the method is used as a method. In your case, this is the folder. No, actually -- since 'index_html' is a document, it turns out to be the id of 'index_html'. In some cases, you would use "this().id". OK, I'll try and

Re: [Zope] Can't compare apples to apples. (document_id != id_of_my_document)

2000-08-24 Thread Jens Quade
"T.J. Mannos" [EMAIL PROTECTED] writes: Hi, there, I have a DTML document called "apples". A call to dtml-var document_id gives the string "apples" However, a dtml-if "document_id == 'apples'" returns false. Am I missing something? I've tried _.str(document_id) and even

[Zope] Where do I find out about cookies?

2000-08-24 Thread Jean Jordaan
Hi Zopers It looks like I'm going to be using cookies now, and I don't find any How-To on cookies. What's the most instructive place to look? "UTSL" is fine as an answer, especially if it points me somewhere, and even more if it's DTML source .. The *ZQR* is a bit too cryptic for me. The *DTML

[Zope] Re: Can't compare apples to apples. (document_id != id_of_my_document)

2000-08-24 Thread Steve Alexander
T.J. Mannos wrote: I have a DTML document called "apples". A call to dtml-var document_id gives the string "apples" However, a dtml-if "document_id == 'apples'" returns false. Am I missing something? I've tried _.str(document_id) and even _.string.strip(_.str(document_id)). The tag

[Zope] The tree tag, SQL and what should be simple

2000-08-24 Thread icottee
I thought this was going to be simple but having read numerous postings on the mailing list and all related HOW-TOs I can find, I think I can confirm I am stuck. This is sad because I've just spent a very productive couple of days with Zope and MySQL making the world a better place. I have a

[Zope] ZClass and external Methods

2000-08-24 Thread Vincent
Hi, I just would like to call from a DTMl document an external method defined in a ZClass. - I created an instance of this ZClass - Ztest (for example), - But I can't call the external method : - dtml-call "Ztext.myMethod(Arg1)" If somebody knows where I am wrong ;-) Thansk again

[Zope] Zope as an NT service in developement mod

2000-08-24 Thread Vincent
Does somebody know how to launch Zope as an NT service in development mode (I need to pass the -D parameter) Thanks Vincent PS : I got my answer for my previous question (Thanks again) ___ Zope maillist - [EMAIL PROTECTED]

[Zope] review waiting for 3 days!!!

2000-08-24 Thread Hugo Ramos
Yellow ppl at DC, Is everybody on holyday at DC? :-) I've a some reviews waiting for 3 days now to be validated on zope.org Maybe there's a lot more reviews waiting from other guys. please check it regards = Hugo Ramos - [EMAIL PROTECTED] ZopersORG - http://www.zopers.org = Do not

Re: [Zope] Zope as an NT service in developement mod

2000-08-24 Thread Phil Harris
Vincent, You will need to change the rgistry entry for the service: Open regedit and goto hkey_local_machine/system/currentcontrolset/services/zope service name/parameters. Then double click on the 'start' parameter in the right hand window, when the edit box comes up simply add a -D to the

[Zope] NTUserFolder Object. Where is it?

2000-08-24 Thread Christian Adams
I have, apparently, sucessfully installed NTUserFolder into my Zope installation. Now I need to add some NTUserFolder objects to some working directories. My rather silly problem is this: Where do I have to look for the NTUserFolder object? It's not in my usual Objects drop down menu so what

[Zope] Missing pictures

2000-08-24 Thread William JOYE
Hello, I have notified that every time on my web page one picture is missing (with IE and Netscape). When I refresh the page there is another picture missing and the first is OK. After another refresh, the first is missing and the second is OK. And so on... I use Apache and Zope 2.1.6 under

[Zope] building a Python module on Winnt

2000-08-24 Thread Vincent
Hi, How can I build a python module on Windows NT ? Thanks Vincent

Re: [Zope] newbiz : zope connection

2000-08-24 Thread Stephan Goeldi
Zope 2.2 has a facility in its Control Panel where you can see, how much requests are currently in work. What is the "Control Panel" and where can I find it? Get Your Private, Free E-mail from MSN Hotmail at

Re: [Zope] Using crontab instead of rc.d

2000-08-24 Thread Stephan Goeldi
5 * * * * root./start This would start the script every five minutes. Now how do I check if the script is running after it's been started and if it wasn't to restart it again. Why don't you write a shell script which 1. starts the ./stop script, and 2. starts

Re: [Zope] building a Python module on Winnt

2000-08-24 Thread Phil Harris
Which one? It may already be built by one of us Zopista types. - Original Message - From: Vincent To: [Zope Org] (E-mail) Sent: Thursday, August 24, 2000 11:37 AM Subject: [Zope] building a Python module on Winnt Hi, How can I build a python module on Windows NT ? Thanks Vincent

Re: [Zope] building a Python module on Winnt

2000-08-24 Thread Diny van Gool
At 11:37 24-8-00 +0100, Vincent wrote: Hi, How can I build a python module on Windows NT ? Thanks Vincent Well, I only know how it's done on Windows NT: I use Idle (python.org) to make the .py file, then put this python file into the Extensions directory of the Zope installation.

Re: [Zope] Generic Workflow Products?

2000-08-24 Thread Paolo Bizzarri
There is an standards based (WFMC -- workflow management coalition, www.wfmc.org) Zope product that really has seen no progress since early this year - see openflow.sourceforge.net Correct. OpenFlow was a bit stopped, for two reasons: 1) we here at Icube had undergone

Re: [Zope] newbiz : zope connection

2000-08-24 Thread Diny van Gool
At 09:49 24-8-00 GMT, Stephan Goeldi wrote: Zope 2.2 has a facility in its Control Panel where you can see, how much requests are currently in work. What is the "Control Panel" and where can I find it? You got to have the manage role, then you find it in your Zope root folder contents. Diny

Re: [Zope] newbiz : zope connection

2000-08-24 Thread Stephan Goeldi
To get more information, you would analyse ZServer's log file: "var/Z2.log". It contains an entry for each HTTP request. But if you use ProxyPass like me, there is only the IP address of the Apache Server in this logfile, so there is only one user in the Z2.log file logged. You have to check

Re: [Zope] Using crontab instead of rc.d

2000-08-24 Thread Dominic Mitchell
On Thu, Aug 24, 2000 at 09:46:11AM +, Stephan Goeldi wrote: 5* * * * root./start This would start the script every five minutes. Now how do I check if the script is running after it's been started and if it wasn't to restart it again. Why don't you

[Zope] DestinationURL is a method ;-)

2000-08-24 Thread Chris Withers
Adding a () to the DestinationURL above made it work:: dtml-call "RESPONSE.redirect( DestinationURL()+'/manage_workspace')" Shouldn't this be fixed somewhere? CW What do you mean by 'fixed'? It looks to me like DestinationURL is a python method, in which case you'll need the () to

[Zope] Zope CVS on Windoze

2000-08-24 Thread Chris Withers
Is there perhaps a better way for installing a cvs checkout on windows? It's obvious that none of the c modules get compiled, but these seem to change rather rarely ... I'd love to know the answer to this too :-) (mindyou, I might just switch to Unix anyway ;-) cheers, Chris

[Zope] AW: ExtImage

2000-08-24 Thread Heine, Gregor
Hello, A newbie question. Could you pls propvide an example of mentioned in readme.txt "preview" and "icon-gif" methods to view thumbnails and images? Best regards, Alexander N. Chelnokov Hi! Create an ExtImage object (e.g. in the folder path/to/your) and upload an image (e.g.

Re: [Zope] Corruption caused by 'Pack'?

2000-08-24 Thread Marcin Kasperski
Dieter Maurer wrote: Marcin Kasperski writes: pack corrupts Data.fs Has anyone notified similar problems? What could be going on? An officially announced and fully described bug... You know by now where you find the searchable archive? I tried it. I found numerous

[Zope] Objet : [Zope] How to test if an object exist

2000-08-24 Thread Francois-Regis CHALAOUX
Hi, Thanks for the details on hasattr function. I learned a lot ;) In the meantime, I found an other solution. Have a look. Bye, FR. Here I create folders in the folder "self.folder1". Each new folder has a number at its end (folder11, folder12, etc ...). def testFolder(self):

Re: [Zope] Zope CVS on Windoze

2000-08-24 Thread Wolfgang Strobl
On 24 Aug 2000, 7:31 Chris Withers wrote: (I asked) Is there perhaps a better way for installing a cvs checkout on windows? It's obvious that none of the c modules get compiled, but these seem to change rather rarely ... I'd love to know the answer to this too :-) (mindyou, I might

RE: [Zope] review waiting for 3 days!!!

2000-08-24 Thread Brian Lloyd
Yellow ppl at DC, Is everybody on holyday at DC? :-) I've a some reviews waiting for 3 days now to be validated on zope.org Maybe there's a lot more reviews waiting from other guys. We've been offline since sometime Monday due to network problems :( We're back on now. Brian Lloyd

Re: [Zope] Zope as an NT service in developement mod

2000-08-24 Thread Chris Withers
Phil Harris wrote: Then double click on the 'start' parameter in the right hand window, when the edit box comes up simply add a -D to the end of the options on the command line. When you do this, where does all the good stuff that would usually get printed out in the console window get put,

[Zope] strange login behaviour

2000-08-24 Thread Didier Georgieff
Hello, I have really simple login wich is a link to a Method "login" wich comprise .. REDIRECT for login dtml-call "RESPONSE.redirect(baseURL)" and 'login' method has NO autorizations for anonymous. It redirects me on the right "baseURL" page, but the "baseURL" inludes an "info"

RE: [Zope] QSurvey 0.23 and Zope 2.2.1b

2000-08-24 Thread Brian Lloyd
Error Type: Permission mapping error Error Value: Attempted to map a permission to a permission, Add QSurveyResultsItems, that is not valid. This should never happen. (Waaa). I believe I saw a message that said that this bug would be

[Zope] problems with starting zope

2000-08-24 Thread Sarciaux, Fabrice
hello i recently came accross zope and decided to give it a try installation went fine when asked to start zope as a nt service, i answered yes and check through the controlpanel-services that it was in fact up and running then, i used a bowser (ie) to go to http://localhost:8080/manage but

Re: [Zope] ZClass Date Fields

2000-08-24 Thread Loren Stafford
I don't know of any bug that would produce this kind of behavior. It's more likely a problem in communication between the add form and the method invoked by that form. Can you show us the DTML for both? Then we can probably see what's going wrong. -- Loren - Original Message - From:

Re: [Zope] strange login behaviour

2000-08-24 Thread Chris Withers
Didier Georgieff wrote: Is it a known problem, or do i have some magic acquisition trick who eludes me ? Is it possible that your browser is just caching the old page the first time round? cheers, Chris ___ Zope maillist - [EMAIL PROTECTED]

[Zope] Windoze + Zope in Debug :S (OT)

2000-08-24 Thread Chris Withers
Phil Harris wrote: Goes into the 'ether', there was a post to the list about getting it sent to the system event log, might be worth chasing that up? Nah, I'll just run it in a DOS box... ...which brings up another question: Is there any way I can make the DOS box in Win98 (think laptop here

Re: [Zope] ZClass and external Methods

2000-08-24 Thread Chris Withers
Vincent wrote: I just would like to call from a DTMl document an external method defined in a ZClass. - I created an instance of this ZClass - Ztest (for example), - But I can't call the external method : - dtml-call "Ztext.myMethod(Arg1)" Some error messages and tracebacks would

Re: [Zope] Where do I find out about cookies?

2000-08-24 Thread Loren Stafford
From: "Jean Jordaan" [EMAIL PROTECTED] It looks like I'm going to be using cookies now, and I don't find any How-To on cookies. What's the most instructive place to look? "UTSL" is fine as an answer, especially if it points me somewhere, and even more if it's DTML source .. The *ZQR* is a

[Zope] I think I'm close, but still no luck

2000-08-24 Thread Daniel Rusch
Hello, (See bottom of this message for all the iterations I have tried) I've created a product called BasicDocument. I've installed it and it works great. I've also created a folderish product (called SimpleSite). When a user selects the SimpleSite product from the available objects list,

[Zope] Acquisition, Not! How?

2000-08-24 Thread Júlio Dinis Silva
I know this sound strange but is there a way to, during execution of a dtml method, when a with tag is used one force acquisition not to be used? example: /root/a/b/c /root/c say dtml-with "root.a.c" was a mistake so I dont want the root.c namespace to be imported due to acquisition and

Re: [Zope] Where do I find out about cookies?

2000-08-24 Thread J. Atwood
No How-Tos on Cookies? how about http://www.zope.org/Members/BwanaZulia/cookies/ (I had forgotten to request it to be cataloged now down). Enjoy, J From: Jean Jordaan [EMAIL PROTECTED] Date: Thu, 24 Aug 2000 09:53:10 +0200 To: "'[EMAIL PROTECTED]'" [EMAIL PROTECTED] Subject: [Zope]

Re: [Zope] Acquisition, Not! How?

2000-08-24 Thread Jeff Hoffman
On Thu, 24 Aug 2000, Júlio Dinis Silva wrote: I know this sound strange but is there a way to, during execution of a dtml method, when a with tag is used one force acquisition not to be used? example: /root/a/b/c /root/c say dtml-with "root.a.c" was a mistake so I dont want the

Re: [Zope] How do I create a folder full of virtual DTML objectsfrom records in a database records in a database

2000-08-24 Thread R. David Murray
On Wed, 23 Aug 2000, Chris Beaumont wrote: I need to take rows in an SQL database table, and create one or several nested folders of web pages out of them.. I'd suggest checking out the ZSQL Methods manual, and then asking any questions that you still have (and there probably will be some!)

Re: [Zope] How do I create a folder full of virtual DTML objectsfrom records in a database records in a database

2000-08-24 Thread Chris Withers
"R. David Murray" wrote: On Wed, 23 Aug 2000, Chris Beaumont wrote: I need to take rows in an SQL database table, and create one or several nested folders of web pages out of them.. I'd suggest checking out the ZSQL Methods manual, and then asking any questions that you still have (and

Re: [Zope] Acquisition, Not! How?

2000-08-24 Thread Júlio Dinis Silva
I know this sound strange but is there a way to, during execution of a dtml method, when a with tag is used one force acquisition not to be used? example: /root/a/b/c /root/c say dtml-with "root.a.c" was a mistake so I dont want the root.c namespace to be imported due to

Re: [Zope] how can I determine the list of user names?

2000-08-24 Thread jpenny
On Thu, Aug 24, 2000 at 10:05:18AM +1000, Curtis Maloney wrote: On Thu, 24 Aug 2000, [EMAIL PROTECTED] wrote: I would like to construct a pull down of the users defined in an acl_users of a particular location. I am doing this soon, also, so I've put in a little thought on the problem.

[Zope] Search on ZCatalog or ZSQL in MySQL

2000-08-24 Thread Nestor A. Diaz L.
Hi, I have a to take a decision to use or not to use the ZCatalog that's because i'm some kind newbie to Zope. Well the history is the following: I have to make a system to store news, so i have to migrate a old system using perl cgi's and perform a search on text files to use Zope as the

[Zope] My notes from the Paris EuroZope meeting

2000-08-24 Thread Simon Coles
Hi, During the EuroZope meeting I was taking notes for my own use, and a couple of people asked if I would make them more widely available - so here they are. Because they were taken during the session (and I've got RSI :-) they are bitty and may not make sense. They are also only a

RE: [Zope] Search on ZCatalog or ZSQL in MySQL

2000-08-24 Thread Steve Drees
the true decision however the current database news is about 350M and i would like to extend it to store images and file, so is possible that at the final year if everyting comes ok it outperforms the 1GB data The limit I think you refer to is the 2GB file size limit on _some_ OSes. So you

[Zope] Linux and ODBC

2000-08-24 Thread Tony Corrente
Hello.. I am currently using the openlink ODBC drivers to access Progress DB's on a HPUX System from A Linux Web Server using Apache and PHP4. It Works... The rest of my site has been moved to Zope. Everything I've read states that the Zope DA's for ODBC only run under the Win32... Is anyone

[Zope] import from 216 to 213 fail

2000-08-24 Thread Didier Georgieff
Hello, I'm trying to import a folder From 2.1.6 (Linux) to 2.1.3 (Linux) and i get this error : Type d'erreur: TypeError Valeur de l'erreur: ('len() of unsized object', , None) I tried to import the zexp in 2.1.6 on Win and it works fine. AFAIK i have the correct objects in the acquired

Re: [Zope] Windoze + Zope in Debug :S (OT)

2000-08-24 Thread Jens Quade
Chris Withers [EMAIL PROTECTED] writes: You know the story: Zope spits out four pages of debug info, and you can only read the last 25 lines :( mode con lines=50 should help (but may need display.sys or ansi.sys in your config.sys). But: No buffering ... -- Jens Quade * [EMAIL PROTECTED]

[Zope] ANN: ZWikiZC - A ZCatalog enabled ZWiki

2000-08-24 Thread Johan Carlsson
ZWikiZC is a ZCatalog based clone of the original ZWiki by Simon Michael http://www.zope.org/Members/johanc/ZWikiZC/wiki/FrontPage http://www.zope.org/Members/johanc/ZWikiZC/wiki/ZWikiZC I need help with testing. There might be a alote of bugs in this first release so I wish to get feedback

[Zope] RE: [ZOPE Collector] Zope Bug entry: An alt attribute of img element inserted by Image objectsent inserted by Image objects

2000-08-24 Thread Brian Lloyd
It's not required, actually, just recommended, and a filename is better than NOTHING, which is what he proposed. I'd definately be -3 on this one. Actually, I'd rather see BORDER=0 be the default. I've yet to find a single person who wants a border on their images... Chris

[Zope] Zope developer in Orange County - California

2000-08-24 Thread Paul Aviles
We are looking for a developer or developing company for a B2B startup. Responsible party should have experience developing web sites in Zope and familiarity with XML. If interested please send me your information. Best regards, -pa

Re: [Zope] Where do I find out about cookies?

2000-08-24 Thread Maik Roeder
Hi Jean ! Jean Jordaan wrote: It looks like I'm going to be using cookies now, and I don't find any How-To on cookies. I am collecting everything on cookies in the developers portal of the ZDP: http://zdp.zope.org/portals/developers/sessionmanagement/cookies Hope this helps. Once you have

Re: [Zope] The tree tag, SQL and what should be simple

2000-08-24 Thread Rik Hoekstra
I thought this was going to be simple but having read numerous postings on the mailing list and all related HOW-TOs I can find, I think I can confirm I am stuck. This is sad because I've just spent a very productive couple of days with Zope and MySQL making the world a better place. I have a

Re: [Zope] Corruption caused by 'Pack'?

2000-08-24 Thread Jim Fulton
Marcin Kasperski wrote: After using succesfully zope for some time I decided to cut a bit the database size. So I went to Control Panel/Database and clicked "Pack" for objects older than 10 days. At first everything seemed to work (I returned to the management screen seeing new - smaller -

[Zope] gvib

2000-08-24 Thread Bob Tierney
Hello everyone! We released version 0.9.2 of the gvibDA Interbase database adapter. This version is a bug fix release. The new version can be had at http://www.zope.org/Members/RETierney/gvibDA. Thank you. Bob _ Robert E.

[Zope] gvib

2000-08-24 Thread Bob Tierney
I forgot to mention that the 0.9.2 version contains a Windows DLL contributed by Brad Clements. Sorry about that. Regards, Bob _ Robert E. Tierney EMail: [EMAIL PROTECTED] Going Virtual

[Zope] Search on ZCatalog or ZSQL in MySQL

2000-08-24 Thread Nestor A. Diaz L.
Hi, I have a to take a decision to use or not to use the ZCatalog that's because i'm some kind newbie to Zope. Well the history is the following: I have to make a system to store news, so i have to migrate a old system using perl cgi's and perform a search on text files to use Zope as the

[Zope] Not like ASP complaint - any good answers

2000-08-24 Thread Sean McGrath
All, I have had a number of e-mails from developers using Microsoft ASP in recent days. The paraphrased consensus in the e-mails is that the external methods/python methods approach to mixing markup with code in Zope is more clunky than in ASP where you can intermingle the two at will. Has

[Zope] What does context.registerBaseClass() do ???

2000-08-24 Thread Daniel Rusch
I have searched the FM's and I cannot find anything on context.registerBaseClass(). Can anyone explain what this does for me and what the syntax of the argument list should be? Thanks, Dan ___ Zope maillist - [EMAIL PROTECTED]

RE: [Zope] Not like ASP complaint - any good answers

2000-08-24 Thread Chris McDonough
Sean, This is mostly on purpose. It will probably only get more like this in time to come. There's a good article on this topic (although it deals with JSP as opposed to ASP) at http://www.servlets.com/soapbox/problems-jsp.html -Original Message- From: Sean McGrath [mailto:[EMAIL

RE: [Zope] What does context.registerBaseClass() do ???

2000-08-24 Thread Chris McDonough
This should be used in the initialize() routine of your product. It initializes the class passed in so it may be use as a base class for ZClasses in your Zope instance. It takes a single class object as an argument. An example __init__.py: import Foo def initialize(context):

Re: [Zope] Missing pictures

2000-08-24 Thread Dieter Maurer
William JOYE writes: I have notified that every time on my web page one picture is missing (with IE and Netscape). When I refresh the page there is another picture missing and the first is OK. After another refresh, the first is missing and the second is OK. And so on... I use Apache

Re: [Zope] Acquisition, Not! How?

2000-08-24 Thread Dieter Maurer
=?ISO-8859-1?Q?J=FAlio?= Dinis Silva writes: I know this sound strange but is there a way to, during execution of a dtml method, when a with tag is used one force acquisition not to be used? It is possible -- with an external method. But probably, you should not do it. It may have strange

Re: [Zope] The tree tag, SQL and what should be simple

2000-08-24 Thread Dieter Maurer
[EMAIL PROTECTED] writes: I have a table for chickens And another table for types Each chicken has a type associated with it. At the end of the day I want to display the chickens underneath the type it has ... start the screen up it would say + BIG + MEDIUM + SMALL

Re: [Zope] strange login behaviour

2000-08-24 Thread Dieter Maurer
Didier Georgieff writes: I have really simple login wich is a link to a Method "login" wich comprise ... REDIRECT for login dtml-call "RESPONSE.redirect(baseURL)" and 'login' method has NO autorizations for anonymous. It redirects me on the right "baseURL" page, but the

[Zope] Run a java applet in Zope

2000-08-24 Thread Michel Houben
Dear, I have a dtml-document with a Java-applet and I can't get it runnning in the Zope envirronement. I hope someone knows it and can solve my problem. Michel Houben ___ Zope maillist - [EMAIL PROTECTED]

Re: [Zope] Microsoft SQL Server Access under Linux?

2000-08-24 Thread Jim Sanford
I have tested ODBCSocketServer for queries returning smal sets (20 rows) it seems fine. For larger sets (100+ rows it is slow, my geuss is that the XML encoding is taking the most time. Did not try its MS specific option for returned results but the documentation says that it should be faster.

[Zope] Re. Linux and ODBC

2000-08-24 Thread Spicklemire, Jerry
Hi Folks, Just to follow up on the plan to test ODBC Socket Server. We now have a working copy resident on a NT test system here, which enables us to ship queries across the LAN from Unix / Linux land to hit against Windows Native (ODBC) data stores, and get back datasets as XML. So far, it

Re: [Zope] Generic Workflow Products?

2000-08-24 Thread Kapil Thangavelu
[EMAIL PROTECTED] wrote: After applying Zope to a couple of in-house projects (which turned out pretty well, thank you), I've started to come to the realization that many applications boil down to workflow management. A job comes in, attributes get set, things get attached

Re: [Zope] How do I create a folder full of virtual DTML objectsfrom records in a database records in a database

2000-08-24 Thread Chris Beaumont
David, Thank you, I've been successful in setting up basic SQL methods, data input forms and query forms, the problem Ive been having is in trying to break each table record (one row in a table, say) out into a separate DTML document.. with fields in the record forming the parts of the

[Zope] Zope product to build meta-tags?

2000-08-24 Thread Chris Beaumont
Are there any Zope products that automate the meta-tag process for HTML documents? Thanks Chris Beaumont [EMAIL PROTECTED] ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! **

Re: [Zope] How do I create a folder full of virtual DTML objectsfrom records in a database records in a database

2000-08-24 Thread R. David Murray
On Thu, 24 Aug 2000, Chris Beaumont wrote: Thank you, I've been successful in setting up basic SQL methods, data input forms and query forms, the problem Ive been having is in trying to break each table record (one row in a table, say) out into a separate DTML document.. with fields in the

Re: [Zope] speeding up dtml-tree

2000-08-24 Thread Clinton Roy
"Andy McKay" [EMAIL PROTECTED] writes: A real crude way to hack the dtml-tree tag is to make it always assume there are child nodes. This prevents the look up and is a lot faster. Think of Windows Explorer style tag. Not really something I want to do, and in my case wouldn't really help

Re: [Zope] Not like ASP complaint - any good answers

2000-08-24 Thread Luciano Ramalho
Intermingling application logic with HTML code is a good idea if these conditions are met: 1) your website logic and its graphic design always change in sync; 2) you have more real programmers than HTML coders; 3) your programmers´ workload is so light that you don´t care about reusing code;

Re: [Zope] Not like ASP complaint - any good answers

2000-08-24 Thread Andrew Kenneth Milton
+---[ Sean McGrath ]-- | All, | | I have had a number of e-mails from developers | using Microsoft ASP in recent days. The paraphrased consensus | in the e-mails is that the external | methods/python methods approach to mixing markup | with code in Zope is more clunky

Re: [Zope] Linux and ODBC

2000-08-24 Thread Andrew Kenneth Milton
+---[ Tony Corrente ]-- | Hello.. | | I am currently using the openlink ODBC drivers to access Progress DB's | on a HPUX System from A Linux Web Server using Apache and PHP4. It | Works... | The rest of my site has been moved to Zope. Everything I've read states |

Re: [Zope] Using crontab instead of rc.d

2000-08-24 Thread Curtis Maloney
On Thu, 24 Aug 2000, Dominic Mitchell wrote: On Thu, Aug 24, 2000 at 09:46:11AM +, Stephan Goeldi wrote: 5 * * * * root./start This would start the script every five minutes. Now how do I check if the script is running after it's been started and if it

Re: [Zope] Linux and ODBC

2000-08-24 Thread Curtis Maloney
On Fri, 25 Aug 2000, Tony Corrente wrote: Hello.. I am currently using the openlink ODBC drivers to access Progress DB's on a HPUX System from A Linux Web Server using Apache and PHP4. It Works... The rest of my site has been moved to Zope. Everything I've read states that the Zope DA's

Re: [Zope] How do I create a folder full of virtual DTML objectsfromrecords in a database records in a database

2000-08-24 Thread Kapil Thangavelu
"R. David Murray" wrote: On Thu, 24 Aug 2000, Chris Beaumont wrote: Thank you, I've been successful in setting up basic SQL methods, data input forms and query forms, the problem Ive been having is in trying to break each table record (one row in a table, say) out into a separate DTML

[Zope] Re:

2000-08-24 Thread Jesse D. Sightler
Hi Melissa, Did you get to come down this weekend? If you did, then that was one short visit! It was a very short visit, as I ended up coming in Saturday afternoon and leaving early Sunday afternoon to go to a 5PM meeting. Well, after tomorrow you may not recognize me. (I may not want

[Zope] Product release: ExtFile/ExtImage 0.91

2000-08-24 Thread Heine, Gregor
Version 0.91 of the ExtFile/ExtImage Software Product has just been released. The ExtFile and ExtImage Products store large files in an external file-repository and are able to display icons for different MIME-Types. The ExtImage Product additionally creates preview-thumbnails from images and