RE: [Zope] Help wanted on Zope ZClasses/DTML please.

2000-11-06 Thread Bowyer, Alex
d I need to pass in the value of the_id not the name of it. Ideally I want to say dtml-call "manage_delObjects(REQUEST['id_to_delete'])" but again this fails to find the object. Any ideas? Thanks for helping, Alex -Original Message- From: Seb Bacon [mailto:[EMAIL PROTECTED]]

RE: [Zope] Help wanted on Zope ZClasses/DTML please.

2000-11-03 Thread Seb Bacon
Hi, just some quick pointers (I'm in a hurry...) refer to http://zdp.zope.org/projects/zqr/ZopeQR for more details !-- do the deletion - this is the bit that doesn't work -- dtml-call "manage_delObjects('the_id')" What is the correct way to use manage_delObjects? dtml-call

Re: [Zope] Help wanted on Zope ZClasses/DTML please.

2000-11-03 Thread chip johansen
Instead of ... dtml-call "manage_delObjects('REQUEST['id_to_delete']')" try dtml-call "manage_delObjects('REQUEST.id_to_delete')" Chip Johansen From: "Bowyer, Alex" [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" [EMAIL PROTECTED] Subject: [Zope] Help w

Re: [Zope] Help wanted on Zope ZClasses/DTML please.

2000-11-03 Thread Andy McKay
or try: dtml-call "manage_delObjects(REQUEST['id_to_delete'])" - Original Message - From: "chip johansen" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, November 03, 2000 9:01 AM Subject: Re: [Zope] Help wanted on Zope ZClasses/DTM

[Zope] Help with general purpose ZSQL Method

2000-11-03 Thread Jon Prettyman
I want to write a generic table browser ZSQL method and am having trouble getting the output that I want. Given a ZSQLMethod that looks like this: ID:browse_table Arguments: table:string="" Script: SELECT * FROM dtml-var table I'm trying to write a DTML method to display the results of

[Zope] Help! Zope Crash

2000-11-01 Thread Edward Muller
I am running a Zwiki site at http://www.handhelds.org:8080/wiki. This site has become invaluable to our growing handhelds.org community as a place to collect information. But, sadly our zope server keeps dyingNo idea why Sometimes the zope server can be up for a few days, sometimes only

Re: [Zope] Help! Zope Crash

2000-11-01 Thread Tim Cook
Edward Muller wrote: Sometimes the zope server can be up for a few days, sometimes only a few hours. I am not sure what is causing this or how to go about tracking it down. Is there anything I can do? Any help would be greatly appreciated. Well, this may just be 'any help'. But A couple

Re: [Zope] Help! Zope Crash

2000-11-01 Thread Tim Cook
Tim Cook wrote: tried in the memory in a different machine it worked fine. But I have had the site go down since. Should be: I have not had the site go down since. (maybe I'll learn to proof my emails!) -- Tim Cook -- Office: (901) 884-4126 8am-5pm CST Free Practice Management,Inc. |

Re: [Zope] Help! Zope Crash

2000-11-01 Thread ethan mindlace fremen
Edward Muller wrote: I am running a Zwiki site at http://www.handhelds.org:8080/wiki. This site has become invaluable to our growing handhelds.org community as a place to collect information. But, sadly our zope server keeps dyingNo idea why Sometimes the zope server can be up for

[Zope] Help,I have a question.:(

2000-10-24 Thread Dylan Chi
I have a question about Squishdot. Error: Traceback (innermost last): File /wwwnodes/zope/Zope-2.1.6-src/lib/python/ZPublisher/Publish.py, line 214, in publish_module File /wwwnodes/zope/Zope-2.1.6-src/lib/python/ZPublisher/Publish.py, line 179, in publish File

RE: [Zope] Help Debugging External Methods

2000-10-23 Thread Dieter Maurer
the Python debugger "pdb" It's a Python module used to debug Python programs. It can set breakpoints, single step and print expressions. It is activated automatically, when you start "ZPublisher/Test.py" with the "-D" option. Usually, I do not use it this way, however, as it takes too

Re: [Zope] Help needed with news articles

2000-10-22 Thread Bak @ kedai
ode should be in a DTML Method -Original Message- From: Taco Scargo [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Sunday, October 22, 2000 5:23 AM Subject: [Zope] Help needed with news articles Unfortunately nobody responded, so I am reposting this question again. I just n

[Zope] Help creating Object

2000-10-22 Thread Salvatore DIDIO
Hello, In the manage folder I can't create any object. I got a message telling that the object can not be owned by the superuser. (line 217 in file Owned.py). Can someone help me ? Thanks ___ Zope maillist - [EMAIL PROTECTED]

Re: [Zope] HELP! Permissions problem, ZClass

2000-10-22 Thread Ender
trying giving anonymous proxy roles on the actual add method. Eric Walstad wrote: Help, pls! I have a ZClass that is functioning beautifully if I am logged in, but the anonymous user keeps getting prompted for a password. The problem occurs when my DTML method trys to create a new

[Zope] Help needed with news articles

2000-10-21 Thread Taco Scargo
Unfortunately nobody responded, so I am reposting this question again. I just need a link to an example or explanation. Basically I want to create a page listing the last 4 articles from a Zope folder. The articles need a publish from/to field, title and (dtml) text. I somehow need to be able to

Re: [Zope] Help needed with news articles

2000-10-21 Thread Steve Spicklemire
Hi Taco, How about something like this: dtml-var standard_html_header dtml-let articleList="[]" dtml-in "objectValues(['DTML Document'])" sort=bobobase_modification_time dtml-call "articleList.append(_['sequence-item'])" /dtml-in dtml-in "articleList[-4:]" reverse dtml-var sequence-item

[Zope] Help needed with news articles

2000-10-19 Thread Taco Scargo
Basically I want to create a page listing the last 4 articles from a Zope folder. The articles need a publish from/to field, title and (dtml) text. I somehow need to be able to find and display the article from another dtml document. I read many FAQs and tried working with zcatalogs, but somehow

Re: [Zope] Help Debugging External Methods

2000-10-18 Thread Fred Yankowski
On Tue, Oct 17, 2000 at 09:05:29PM -0700, Kapil Thangavelu wrote: The Debugger is your friend http://www.zope.org/Members/michel/HowTos/TheDebuggerIsYourFriend That's a useful page -- thanks for the link. It's interesting that the example fooMethod() function has a major flaw, contrary to

Re: [Zope] HELP! Permissions problem, ZClass

2000-10-18 Thread Marcus Mendes
Take a look at Security View of its ZClass. Give permissions to anonymous users. Marcus Mendes Eric Walstad wrote: Help, pls! I have a ZClass that is functioning beautifully if I am logged in, but the anonymous user keeps getting prompted for a password. The problem occurs when my DTML

[Zope] HELP! Permissions problem, ZClass

2000-10-16 Thread Eric Walstad
Help, pls! I have a ZClass that is functioning beautifully if I am logged in, but the anonymous user keeps getting prompted for a password. The problem occurs when my DTML method trys to create a new instance of the ZClass. I tried giving that DTML method a Proxy of "Manager" but that isn't

RE: [Zope] Help Debugging External Methods

2000-10-16 Thread Robert_J_Roberts
ge- From: Dieter Maurer [mailto:[EMAIL PROTECTED]] Sent: Saturday, October 14, 2000 1:51 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [Zope] Help Debugging External Methods [EMAIL PROTECTED] writes: What are my options for debugging External Methods in Zope running on Windows N

Re: [Zope] Help Debugging External Methods

2000-10-14 Thread Dieter Maurer
[EMAIL PROTECTED] writes: What are my options for debugging External Methods in Zope running on Windows NT? I work under Unix. Maybe my technics are not applicable for NT. Usually, I use "print" statements for debugging purposes. Under Unix, I can redirect "stdout" to a file and view the

[Zope] Help Debugging External Methods

2000-10-13 Thread Robert_J_Roberts
What are my options for debugging External Methods in Zope running on Windows NT? Is there ANY way to get the external method to run in a DOS window that I can watch? What little tricks/techniques have others use to make debugging external methods easier/possible? Thanks, Robert J. Roberts

Re: [Zope] help!- version locked up site

2000-10-12 Thread Dieter Maurer
[EMAIL PROTECTED] writes: I cannot view my site...the version has locked it up with the following message (I cannot even delete the version- which is not currently open): Error Type: VersionLockError Error Value: ("'\\000\\000\\000\\000\\000\\002\\303\\007'", 'h101Latest') Your

Re: [Zope] help!- version locked up site

2000-10-12 Thread sean
Thanks, I did figure it out and when I go into save/discard version and discard I was able to get back to normal. On 12 Oct 2000, at 23:27, Dieter Maurer wrote: [EMAIL PROTECTED] writes: I cannot view my site...the version has locked it up with the following message (I cannot even

[Zope] help!- version locked up site

2000-10-11 Thread sean
I cannot view my site...the version has locked it up with the following message (I cannot even delete the version- which is not currently open): Error Type: VersionLockError Error Value: ("'\\000\\000\\000\\000\\000\\002\\303\\007'", 'h101Latest') and the traceback: Traceback (innermost last):

[Zope] Help with a DTML expression/comparison

2000-10-10 Thread Rudd-O
Hey to everyone, I'm shooting myself in the foot here with this construct: select name="begin_day" size="1" dtml-in "_.range(1,32,1)" option value="dtml-sequence-item;" dtml-if expr="begin_day == _.getitem('sequence- item')" selected /dtml-if

Re: [Zope] Help with a DTML expression/comparison

2000-10-10 Thread Tim Cook
"Manuel Amador (Rudd-O) Gerente de desarrollo Alpha Omega Creative Solutions http://www.alomega.com/" wrote: BUT, the comparison between the two, won't work. Even comparing two _.getitems doesn't work. So it's expected that at no point does the selected property appear in my html source.

Re: [Zope] Help with a DTML expression/comparison

2000-10-10 Thread Phil Harris
esarrollo Alpha Omega Creative Solutions http: //www.alomega.com/" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 10, 2000 9:56 PM Subject: [Zope] Help with a DTML expression/comparison Hey to everyone, I'm shooting myself in the foot here with this construct: select name

[Zope] help! dtml-if question

2000-10-04 Thread Dr. Anthony Monta
Hi, I've tried to find a solution myself but now am stuck. I created a little "Blurb" product for a university department website so that faculty members can announce recent publications on the department's homepage. They create these ZClass instances in their own folders, and a DTML method

Re: [Zope] help! dtml-if question

2000-10-04 Thread Jim Washington
Hi, Anthony how about: dtml-if "_.len(objectValues(['Blurb'])) 0" Your _.has_key() (I think you meant _.hasattr()) statement was looking for something named "Blurb", not a thing of type"Blurb", so of course it failed. The objectValues(['atype']) statement returns a list of the things of

Re: [Zope] Help - Weird stuff.

2000-09-30 Thread Steve Alexander
Phil Harris wrote: Hi all, Sorry for the subject but I don't really know how to describe this. I have a folder 'hp' which has loads of stuff in it, if I try to copy and paste into it though I get this error: 'The object index_html does not support this operation ' I can't reproduce

Re: [Zope] Help - Weird stuff.

2000-09-30 Thread Phil Harris
ay, September 30, 2000 8:53 AM Subject: Re: [Zope] Help - Weird stuff. Phil Harris wrote: Hi all, Sorry for the subject but I don't really know how to describe this. I have a folder 'hp' which has loads of stuff in it, if I try to copy and paste into it though I get this error:

[Zope] Help

2000-09-27 Thread Michael A Ricciardi
Heya, I'm a zope newbie. What I need to do if possible is reference a signed jar class file from one page. How do I import the class jar file so the page can access it? Or where can I find some info on the subject. Thanks Michael ___ Zope

[Zope] Help needed with namespace

2000-09-26 Thread a . wacknitz
Hello all, after updating to Zope-2.2.0 I have problems with ZSQL methods. It seems as if the namespace of ZSQL methods has changed sind Zope-2.1.x. I cannot access the AUTHENTICATED_USER object anymore - it is not known to ZSQL methods: dtml-sqlvar AUTHENTICATED_USER gives an "Missing input

[Zope] Help: Zope2 all threads frozen...

2000-09-25 Thread Gilles Lavaux
Hello, I have zope2.2 with whats look like all thread frozen(on linux, using zserver). Netstat reports a lot of connections ESTABLISHED or CLOSE_WAIT to the zope port. Of course zope is not responding. Who to solve this (of course I can kill+restart), is it possible to set a connection timeout

Re: [Zope] Help with Zope 'pitch'

2000-09-15 Thread Tony McDonald
At 11:35 am +0100 15/9/00, [EMAIL PROTECTED] wrote: I hear Zope learning curves are steep, so I wonder if anyone can suggest how I can persuade Managers that it is worth investing time and effort. To do many things is dead easy. This includes things like database lookups and reuse of web page

[Zope] Zope help needed

2000-09-13 Thread PR JANSE VAN RENSBURG
I dont know if i have subscribed to the correct mailing list, but i have a few questions about zope and wondered if anyone could help me. I am completely new to zope and therefore i dont have any knowledge regarding zope, i need to import a small web page into zope and create users etc.

[Zope] [HELP] Duplicated Ids?

2000-09-10 Thread iap_y2fun.com
I removed a product from Control_Panel/Products by checking the checkbox of that item and clicked "delete" button below. While I tring to reimport that product , zope (2.2.1) complains about "Duplicated Ids". Can anyone give a hand? Thanks a lot. Iap, Singuan http://y2fun.com

Re: [Zope] Help: PATH_INFO==object

2000-09-08 Thread Martijn Pieters
On Fri, Sep 08, 2000 at 11:32:39AM +0800, Li Dongfeng wrote: I am writing a service for other pages to use as form action. How can I reference the caller object in DTML/python? I can only think of this: First use PARENTS[-1] to get to the root object of the site. Then split the PATH_INFO

Re: [Zope] Help: PATH_INFO==object

2000-09-08 Thread Li Dongfeng
ot; [EMAIL PROTECTED] To: "Li Dongfeng" [EMAIL PROTECTED] Cc: "Zope" [EMAIL PROTECTED] Sent: Friday, September 08, 2000 5:01 PM Subject: Re: [Zope] Help: PATH_INFO==object On Fri, Sep 08, 2000 at 11:32:39AM +0800, Li Dongfeng wrote: I am writing a service for other pages to

[Zope] Help: PATH_INFO==object

2000-09-07 Thread Li Dongfeng
I am writing a service for other pages to use as form action. How can I reference the caller object in DTML/python? I can only think of this: First use PARENTS[-1] to get to the root object of the site. Then split the PATH_INFO containing the caller's path, and go down from the root to every

[Zope] Help with calcualtions in DTML

2000-09-04 Thread Dario Lopez-Kästen
Hello! I have the following listing of objects in my folder: table tr tdpbName/b/p/td td align="right"pbSize/b/p/td td align="right"pbdate/b/p/td /tr dtml-in expr="doc.objectValues()" tr td pa href="dtml-var absolute_url"dtml-var id/a/p /td td align="right"

Re: [Zope] Help with calcualtions in DTML

2000-09-04 Thread Kapil Thangavelu
"Dario Lopez-Kästen" wrote: Hello! I have the following listing of objects in my folder: table tr tdpbName/b/p/td td align="right"pbSize/b/p/td td align="right"pbdate/b/p/td /tr dtml-in expr="doc.objectValues()" tr td pa href="dtml-var

Re: [Zope] help

2000-08-30 Thread Chris Withers
Chris McDonough wrote: " pROBLEM(100) zSERVER COMPUTING DEFAULT HOSTNAME" This is a normal message, please ignore it.. Maybe it shouldn't be a 'PROBLEM' then? ;-) cheers, Chris PS: Yes, I know it goes away if you aren't running in Debug mode...

[Zope] Help: mod_python+ZPublisher and authentication

2000-08-29 Thread Gilles Lavaux
Hello, This is not exactly a Zope question, but I hope that some of you will be able to help me: I am using mod_python + ZPublisher + Ztemplate on a apache server and now I would like to restrict the access of some pages served by the ZHandler.py. How to do it?? Do I have to put a rewrite

[Zope] help

2000-08-29 Thread duc huynh
hi! I am a new user. I just download the new version of zope 2.2.0. After i finish install it on my computer. I ran the "start.bat" in the website folder but i get the error. The error is : " pROBLEM(100) zSERVER COMPUTING DEFAULT HOSTNAME" Would you please tell me what is the problem with

RE: [Zope] help

2000-08-29 Thread Chris McDonough
This is a normal message, please ignore it.. -Original Message- From: duc huynh [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 29, 2000 1:26 AM To: [EMAIL PROTECTED] Subject: [Zope] help hi! I am a new user. I just download the new version of zope 2.2.0. After i

Re: [Zope] Help!! RE:mutilple select forms and ZSQL Method

2000-08-14 Thread Tino Wildenhain
Erik Lacson wrote: We are trying to insert an values from a multiple select form into an SQL Database. Does anyone know how to handle arguments of type 'list' inside an SQL Method ? You could use dtml-in over the argument or dtml-var "_.string.join(argument),' something between the

[Zope] Help with demoportal

2000-08-04 Thread Owen Smith
2000-08-04T09:29:53 ERROR(200) Zope Couldn't install DemoPortal Traceback (innermost last): File /usr/local/dc/zope/lib/python/OFS/Application.py, line 464, in install_products (Object: ApplicationDefaultPermissions) (Info: DemoPortal) File

Re: [Zope] Help with demoportal

2000-08-04 Thread Chris Withers
What version of the PTK are vyou using? Chris Owen Smith wrote: 2000-08-04T09:29:53 ERROR(200) Zope Couldn't install DemoPortal Traceback (innermost last): File /usr/local/dc/zope/lib/python/OFS/Application.py, line 464, in install_products (Object: ApplicationDefaultPermissions)

Re: [Zope] Help with demoportal

2000-08-04 Thread Owen Smith
I installed the ptk snap shot -but Im not sure which version this is.. but I then installed ZopePTK-0.8.0-alpha.tar.gz -but I get the same error on restart Owen Chris Withers wrote: What version of the PTK are you using? Chris Owen Smith wrote:

[Zope] Help: Confera product broken.

2000-08-01 Thread Gilles Lavaux
hello, Probably something stupid: under zope2.2.0 I can not install confera 1.2, the product is broken. Error is: Confera Import Traceback Traceback (innermost last): File "/var/zope/Zope-2.2.0-src/lib/python/OFS/Application.py", line 396, in import_products product=__import__(pname,

Re: [Zope] Help: Confera product broken.

2000-08-01 Thread Chris Withers
Gilles Lavaux wrote: Probably something stupid: under zope2.2.0 I can not install confera 1.2, the product is broken. ImportError: cannot import name query Hi Gilles :-) Confera is an old and unmaintained product that won't work under Zope 2.2 I would suggest Squishdot, which is the

Re: [Zope] Help: Confera product broken.

2000-08-01 Thread Adam Karpierz
-WiadomoϾ oryginalna- Od: Gilles Lavaux [EMAIL PROTECTED] Do: [EMAIL PROTECTED] [EMAIL PROTECTED] Data: 1 sierpnia 2000 18:03 Temat: [Zope] Help: Confera product broken. hello, Probably something stupid: under zope2.2.0 I can not install confera 1.2, the product is broken. Error

Re: [Zope] Help: Confera product broken.

2000-08-01 Thread Chris Withers
Adam Karpierz wrote: This is'nt Confera bug. It is undoudtedly Zope 2.2.0 bug. Currently I am working on a patch witch (maybe) fix this bug. I let you know if it will be finished. Funny, I had the impression this was due to a change in the way indexing works. It's the reason why I updated

[Zope] Help!! RE:mutilple select forms and ZSQL Method

2000-08-01 Thread Erik Lacson
We are trying to insert an values from a multiple select form into an SQL Database. Does anyone know how to handle arguments of type 'list' inside an SQL Method ? Thanks, ^..^ Erik = erik lacson net applications developer president --- eMerge Network Technology Solutions intranets

Re: [Zope] HELP

2000-07-28 Thread Christian Scholz
Hi On Fri, Jul 28, 2000 at 05:08:59PM +0100, Chris Withers wrote: Norman Khine wrote: I have just installed the Zope Server on my NT and have gone through the tutorial about building the Job_Board. All works OK, but I am at a bit of a loss as to HOW I can make the SEARCH open. So that if

Re: [Zope] Help Needed for creating : Page 1 2 3 4 Previous:Next

2000-07-24 Thread Holger Hoffmann
Hi, Peter Marriott wrote: Hi, I would really appreciate it if someone could point me to some example dtml that gives navigation links like the following at the bottom of a list of items. Page 1 2 3 4 5Previous:Next (with the current page highlighted bold) it is ugly, but it

[Zope] Writing a Zope Help System

2000-07-17 Thread J. Atwood
Has anyone posted a help on writing Zope help into your product for 2.2? J ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman

Re: [Zope] help

2000-07-17 Thread ethan mindlace fremen
danchik wrote: how can I fix this?? dtml-var SomeVar !-- there is a valid namespace SomeVar and this line prints it out... -- !-- the next line works fine with Number 5, but not if I substitute SomeVar instead of 5 -- dtml-var

Re: [Zope] Writing a Zope Help System

2000-07-17 Thread ethan mindlace fremen
"J. Atwood" wrote: Has anyone posted a help on writing Zope help into your product for 2.2? Docs Wiki: http://www.zope.org/Wikis/Docs/HelpTopicUsage -- ethan mindlace fremen Zopatista Community Liason Abnegate I! ___ Zope maillist

Re: [Zope] Writing a Zope Help System

2000-07-17 Thread Chris McDonough
There is also a file in the Zope distribution in $SOFTWARE_HOME/docs/HELPSYS.txt that I think is up-to-date. ethan mindlace fremen wrote: "J. Atwood" wrote: Has anyone posted a help on writing Zope help into your product for 2.2? Docs Wiki: http://www.zope.org/Wikis/Docs/Help

[Zope] help

2000-07-13 Thread danchik
how can I fix this?? the main dtml file has the following line dtml-var SomeVar !-- there is a valid namespace SomeVar and this line prints it out... -- !-- the next line works fine with Number 5, but not if I

[Zope] Help with ZPoPyDA

2000-07-10 Thread Nitesh Dhanjani
Hello, Im trying to access a postres database from within zope. I have ZPoPyDA-0.5.tar.gz installed along with PoPy-1.2. The connection string Im using is something like: user=thierry host=myhost dbname=test port=5432 password=mypassword When I try to add a Z PoPy Database Connection with the

Re: [Zope] Help with ZPoPyDA

2000-07-10 Thread Sebastien Douche
Le Mon, Jul 10, 2000 at 10:49:27AM -0500, Nitesh Dhanjani à écrit: # Im trying to access a postres database from within zope. I have # ZPoPyDA-0.5.tar.gz installed along with PoPy-1.2. # # The connection string Im using is something like: # user=thierry host=myhost dbname=test port=5432

Re: [Zope] Help with ZPoPyDA

2000-07-10 Thread Nitesh Dhanjani
On Mon, 10 Jul 2000, Sebastien Douche wrote: Le Mon, Jul 10, 2000 at 10:49:27AM -0500, Nitesh Dhanjani à écrit: # Im trying to access a postres database from within zope. I have # ZPoPyDA-0.5.tar.gz installed along with PoPy-1.2. # # The connection string Im using is something like: #

Re: [Zope] Help with ZPoPyDA

2000-07-10 Thread jpenny
On Mon, Jul 10, 2000 at 01:42:48PM -0500, Nitesh Dhanjani wrote: On Mon, 10 Jul 2000, Sebastien Douche wrote: Le Mon, Jul 10, 2000 at 10:49:27AM -0500, Nitesh Dhanjani à écrit: # Im trying to access a postres database from within zope. I have # ZPoPyDA-0.5.tar.gz installed along

Re: [Zope] Help with ZPoPyDA

2000-07-10 Thread Nitesh Dhanjani
On Mon, 10 Jul 2000 [EMAIL PROTECTED] wrote: On Mon, Jul 10, 2000 at 01:42:48PM -0500, Nitesh Dhanjani wrote: On Mon, 10 Jul 2000, Sebastien Douche wrote: Le Mon, Jul 10, 2000 at 10:49:27AM -0500, Nitesh Dhanjani à écrit: # Im trying to access a postres database from

Re: [Zope] Help with ZPoPyDA

2000-07-10 Thread jpenny
On Mon, Jul 10, 2000 at 05:39:27PM -0500, Nitesh Dhanjani wrote: On Mon, 10 Jul 2000 [EMAIL PROTECTED] wrote: On Mon, Jul 10, 2000 at 01:42:48PM -0500, Nitesh Dhanjani wrote: On Mon, 10 Jul 2000, Sebastien Douche wrote: Le Mon, Jul 10, 2000 at 10:49:27AM -0500,

Re: [Zope] help! zope down on it's knees

2000-07-09 Thread Chris McDonough
I'm curious about the fact that apache can render the page immediately by talking through pcgi/fcgi to ZServer but ZServer can't render the page quickly when you talk to it directy via HTTP. The only reasoning I can see for that is some sort of caching at the browser or in the http server.

Re: [Zope] Zope-help

2000-07-06 Thread Dieter Maurer
Bruno Nana writes: select * from iekunde !--#if "alphabet!='alle'" -- where (substring(firma,1,1)=substring(!--#var alphabet --,1,1) or substring(firma,1,1) substring(!--#var alphabet --,1,1)) and (substring(firma,1,1)=substring(!--#var alphabet --,3,1) or substring(firma,1,1)

[Zope] Help needed: why is this DTML not working in zope 2 ?

2000-07-04 Thread Gilles Lavaux
Hello, I am a little bit disappointed not getting any echo from my previous question, so I report it. Maybe my dtml is wrong for zope2, but I would appreciate to have some explanation from more experienced peoples. If I can not find a solution, we will have to keep our zope1 production server,

Re: [Zope] Help needed: why is this DTML not working in zope 2 ?

2000-07-04 Thread Shane Hathaway
Hello Gilles, I think you've been bitten by a recently solved bug in dtml-try. When 2.2.0b4 comes out, please download it and try it out with your DTML (or if you're in a hurry, download from CVS.) If 2.2.0b4 doesn't solve it, e-mail me right away. Shane Gilles Lavaux wrote: Hello, I

Re: [Zope] Help needed: why is this DTML not working in zope 2 ?

2000-07-04 Thread Shane Hathaway
Shane Hathaway wrote: I think you've been bitten by a recently solved bug in dtml-try. When 2.2.0b4 comes out, please download it and try it out with your DTML (or if you're in a hurry, download from CVS.) If 2.2.0b4 doesn't solve it, e-mail me right away. Oops, looks like you solved it.

[Zope] help a zope newbie

2000-06-26 Thread Amit Redij
Hello I want to know more about Zope. I have seen few site powered by Zope. One thing I had noticed is that almost all of those sites are mostly static pages. I mean I am interested to see how can Zope be used for a portal. like containing many pages having lots of form variables. database

RE: [Zope] help a zope newbie

2000-06-26 Thread Chris McDonough
I have seen few site powered by Zope. One thing I had noticed is that almost all of those sites are mostly static pages. I mean I am interested to see how can Zope be used for a portal. like containing many pages having lots of form variables. database connectivity etc. what is the

[Zope] Help with Zope/Python Evangelism

2000-06-14 Thread Joseph Santaniello
Hello Everyone, I've been using Zope and Python in my own projects for over a year now, and I am convinced well beyond a shodow of a doubt that "Zope Is The Answer" and have used it for several of our internal applications, and use Python almost exclusivly for our scripting needs. Here's the

Re: [Zope] Help with Zope/Python Evangelism

2000-06-14 Thread J. Atwood
http://www.zope.org/Members/BwanaZulia/zope.html My collection of articles and sites also study the case studies on Zope.org as well as Zope Newbies. J From: Joseph Santaniello [EMAIL PROTECTED] Date: Wed, 14 Jun 2000 12:17:13 -0700 (PDT) To: [EMAIL PROTECTED] Subject: [Zope] Help

[Zope] Help: Weird KeyError with 2.2.0a1

2000-06-06 Thread Pete Kazmier
Hi, I was playing around with 2.2.0a1 and I've stumbled upon a corrupted database I think. I'm new so please bare with me. I was hoping someone could help me recover. Everytime I start Zope, I get the following error: 2000-06-06T21:20:50 ERROR(200) ZODB Couldn't load state for

Re: [Zope] Help: Weird KeyError with 2.2.0a1

2000-06-06 Thread Phil Harris
PROTECTED] To: [EMAIL PROTECTED] Sent: 06 June 2000 22:41 Subject: [Zope] Help: Weird KeyError with 2.2.0a1 Hi, I was playing around with 2.2.0a1 and I've stumbled upon a corrupted database I think. I'm new so please bare with me. I was hoping someone could help me recover. Everytime I sta

RE: [Zope] Help needed for a new zope fan!

2000-06-05 Thread John Hile
Try http://localhost:8080/manage -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jilani Khaldi Sent: Monday, June 05, 2000 2:02 PM To: Zope ML Subject: [Zope] Help needed for a new zope fan! Hi, I have just installed Zope on Linux, Windows

[Zope] Help Executing install

2000-05-28 Thread Darin Mosier
I'm trying to get zope installed on my Unix server. I have untared the main file and everything is on the server in a local directory. My problem is I can't execute the file "install" from the server. Can someone please tell me the program or terminal I use to login my Unix server. Thanks

Re: [Zope] Help with simple dtml-if compare

2000-05-26 Thread Rik Hoekstra
snip yep.. well... this is quite a common question, all up. It comes from people using shorthand, but not relaising it. sometimes i wonder if this feature should be removed. the line: dtml-if "id == 'index_html'" is actually shorthand for: dtml-if expr="id == 'index_html'"

[Zope] HELP: problems with ZServer Medusa!

2000-05-24 Thread Jilani Khaldi
Hi All, I have installed Zope on a Linux server (Slackware 7.0) apparently without problems; but, when I start the server with the command: ./start, I have in continuous this message error: -- INFO(0) ZServer Monitor Server (V.1.6) started on port 8099 Raceback (innermost last): File

RE: [Zope] HELP: problems with ZServer Medusa!

2000-05-24 Thread Seb Bacon
does /usr/Zope-2.2.0a1-src/var/z2.pid exist? if not, touch z2.pid and try again. seb. Hi All, I have installed Zope on a Linux server (Slackware 7.0) apparently without problems; but, when I start the server with the command: ./start, I have in continuous this message error: --

Re: [Zope] HELP: problems with ZServer Medusa!

2000-05-24 Thread J. Atwood
Check the permissions on the var directory. J From: Seb Bacon [EMAIL PROTECTED] Date: Wed, 24 May 2000 19:04:00 +0100 To: [EMAIL PROTECTED] Subject: RE: [Zope] HELP: problems with ZServer Medusa! does /usr/Zope-2.2.0a1-src/var/z2.pid exist? if not, touch z2.pid and try again. seb

Re: [Zope] help with rpms on RedHat6.2

2000-05-19 Thread Chris McDonough
Peter, A step-by-step guide to installing Zope is available at http://www.zope.org/Members/mcdonc/HowTos/zopeinstall/ZOPE-INSTALL-HOWTO Peter Halliday wrote: I am developer who really loves python, and want to start using it to develop my web applications. I run Apache 1.3 on a Red Hat 6.2

<    1   2   3