Re: [Zope] Zope Chat

2000-05-30 Thread David Trudgett
. David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo

[Zope] KeyError since installing Squishdot 0.4.0

2000-06-01 Thread David Trudgett
/Squishdot/Squishdot.py, line 954, in search (Object: ElementWithAttributes) File /data/Zope-2.1.6/lib/python/ZPublisher/HTTPRequest.py, line 760, in __getitem__ KeyError: (see above) Does anyone have any ideas on how to fix this? Thanks. Davi

Re: [Zope] Using FTP to connect to Zope server from (g)VIM

2000-06-04 Thread David Trudgett
scripts to do it. Well I thought they were a bit cumbersome, so I wrote my own. That's great, Phil! I think I'll find those scripts very handy. Thanks. David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope

Re: [Zope] (no subject)

2000-06-06 Thread David Trudgett
. That will hopefully change in the near future. I'd be interested to know what problems you had... David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

[Zope] Traversal of ZODB

2000-06-29 Thread David Trudgett
I wonder if anyone has a sample Python script that traverses the ZODB to query or perform arbitrary operations on the objects found in it? My present requirement is to write a script that goes through and does some automated updating of several dozen DTML documents. Thanks. David Trudgett

[Zope] Search Interface

2000-06-29 Thread David Trudgett
or later anyway, to get a better understanding of how it all works). Thanks for any assistance. David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists

Re: [Zope] Re: Traversal of ZODB

2000-07-04 Thread David Trudgett
At 2000-07-04 20:32 +0100, Steve Alexander [EMAIL PROTECTED] wrote: On Fri, 30 Jun 2000, David Trudgett wrote: I wonder if anyone has a sample Python script that traverses the ZODB to query or perform arbitrary operations on the objects found in it? My present requirement is to write

Re: [Zope] newbie questions

2000-07-06 Thread David Trudgett
don't understand this advice. Couldn't the file change while being read? Wouldn't a better way be to pack the database and use the Data.fs.old file as the backup? David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman

Re: [Zope] Stability - can you give us some advice?

2000-07-06 Thread David Trudgett
, but apparently Zope wasn't responding. I just restarted Apache and everything was fine again. Is this a known problem with Zope that has been addressed in 2.2? Thanks. David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org

[Zope] gvib InterBase DA, undefined symbol crypt

2000-07-20 Thread David Trudgett
eneric setup problem, rather than anything to do with the product itself. Thanks. David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://li

Re: [Zope] gvib InterBase DA, undefined symbol crypt

2000-07-21 Thread David Trudgett
At 2000-07-21 00:40 -0400, Jeff Hoffman [EMAIL PROTECTED] wrote: On Thu, 20 Jul 2000, David Trudgett wrote: Hi all, After having successfully installed the gvib InterBase DA on a test machine running Red Hat Linux 6.1, I'm not having the same luck on the production box running RH

[Zope] Speeding up Zope by disabling logging of hits

2000-08-10 Thread David Trudgett
lose error logging.) Even better would be the ability to disable logging based on IP address of the requester. Thanks. David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML

Re: [Zope] Removing tracebacks from error message

2000-08-14 Thread David Trudgett
At 2000-08-14 13:33 +0100, Chris Withers [EMAIL PROTECTED] wrote: Martijn Pieters wrote: On Thu, Aug 10, 2000 at 03:30:00PM -1000, David Trudgett wrote: I thought I solved this problem a while ago, but if so I can't remember how. I have a custom error page in Zope (2.1.6), but Zope wants

Re: [Zope] Hotfixes: serious suggestion

2000-08-15 Thread David Trudgett
or 12 hour time. There's only one 14:00 in the day, and that's the way I like it! ;-) David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related list

[Zope] OT: UTC

2000-08-15 Thread David Trudgett
2300, You get up late! Myself, I'm up and at 'em at a brisk 2000 (in theory). :-) Cheers. David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists

[Zope] Localtime logging

2000-08-31 Thread David Trudgett
Does anyone happen to know if Zope can be made to log in local time instead of UTC? David Trudgett ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

Re: [Zope] Using Chinese Characters

2000-09-07 Thread David Trudgett
se defined by Unicode (about 40,000 of them), but we should be supporting it now in readiness for the future. Food for thought. Zai jian! (Too bad email is plain ASCII or I could use the proper characters!) David Trudgett ___ Zope maillist

Re: [Zope-dev] Looping through a folder's contents...

2000-08-21 Thread David Trudgett
ee the contents of that folder. How do I do it? -- I've used code similar to the following in an external method before: thisitem = self.getFirstChild() while thisitem is not None: if thisitem.meta_type == 'DTML Document': ... thisitem = thisitem.getNextSibling() I haven't