Re: [Zope-dev] ZPHP [was Re: [Zope] CHAT]

2000-06-02 Thread Phil Harris
You do lose some functionality using PHP as CGI rather than module: Persistent DB Connections, :( - Original Message - From: "Stuart 'Zen' Bishop" [EMAIL PROTECTED] To: "Gonçalo Gomes" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: 03 June 2000 00:24 Subject: [Zope-dev] ZPHP [was Re:

Re: [Zope-dev] Use ZODB3 and ZCatalog for indexing purposes

2000-07-25 Thread Phil Harris
Thomas, Have you seen the Zope on CDROM howto? Try searching on zope.org (when it's back up that is) for it. hth Phil - Original Message - From: "Thomas Weholt" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 25, 2000 10:27 AM Subject: [Zope-dev] Use ZODB3 and ZCatalog

Re: [Zope-dev] [Zope] App isolation

2000-08-01 Thread Phil Harris
ed to know anything else I'm more than wiling to help if I can. Phil Harris [EMAIL PROTECTED] - Original Message - From: Monty Taylor [EMAIL PROTECTED] To: Jacques Exelrud [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, August 01, 2000 6:33 PM Subject: Re: [Zope-dev] [Zope] App isolat

[Zope-dev] Calling parent class method when method is overridden in current class?

2000-08-03 Thread Phil Harris
Hi all, I'm in the process of creating a Python based product, and have a need to call the base classes index_html method. My problem is that I need to call it from my classes index_html. My class has DTMLDocument as the base class so I want to call something like DTMLDocument.index_html().

Re: [Zope-dev] Calling parent class method when method is overridden in current class?

2000-08-03 Thread Phil Harris
To: "Phil Harris" [EMAIL PROTECTED] Cc: "Zope-Dev@Zope. Org" [EMAIL PROTECTED] Sent: Thursday, August 03, 2000 9:40 AM Subject: Re: [Zope-dev] Calling parent class method when method is overridden in current class? Phil Harris wrote: Hi all, I'm in the process of c

Re: [Zope-dev] Solved - Calling parent class method when method is overridden in current class?

2000-08-03 Thread Phil Harris
Yay, Solved it! I just had to call __call__ from the DTMLDocument and bob is now married to my mothers sister. Phil [EMAIL PROTECTED] - Original Message - From: "Phil Harris" [EMAIL PROTECTED] To: "Steve Alexander" [EMAIL PROTECTED] Cc: "Zope-Dev@Zope. Or

Re: [Zope-dev] Aaargh, no safe seperators :S

2000-08-17 Thread Phil Harris
-, that;s a hyphen to you - Original Message - From: "Chris Withers" [EMAIL PROTECTED] To: "Shane Hathaway" [EMAIL PROTECTED] Cc: "Jonothan Farr" [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, August 17, 2000 9:57 PM Subject: [Zope-dev] Aaargh, no safe seperators :S Shane

Re: [Zope-dev] Aaargh, no safe seperators :S

2000-08-17 Thread Phil Harris
How about as in dtml-pathtofileobjectwotsit; nah, looks really ugl - Original Message - From: "Chris Withers" [EMAIL PROTECTED] To: "Phil Harris" [EMAIL PROTECTED] Cc: "Shane Hathaway" [EMAIL PROTECTED]; "Jonothan Farr" [EMAIL PROT

Re: [Zope-dev] Convert from HTML to DOC or from PDF to DOC.

2000-09-13 Thread Phil Harris
You could try converting to RTF. There are a few HTML-rtf converters around. - Original Message - From: Juan Javier Carrera Obrero To: [EMAIL PROTECTED] Sent: Wednesday, September 13, 2000 11:53 AM Subject: [Zope-dev] Convert from HTML to DOC or from PDF to DOC. Hi, We are trying to

Re: [Zope-dev] aq_inner crash: Python 1.5.2's fault? (also how to get the client)

2000-09-26 Thread Phil Harris
Chris, Have you tried Christian Tismers Stackless Python, which has 'infinite' recursion capabilities? www.stackless.com Phil - Original Message - From: "Chris Withers" [EMAIL PROTECTED] To: "Jim Fulton" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, September 26, 2000 2:09 PM

Re: [Zope-dev] Membership and PTK

2000-09-30 Thread Phil Harris
Don't do man. Quick everybody, let's start a rescue comittee! Congrats Bill Phil - Original Message - From: "Bill Anderson" [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Saturday, September 30, 2000 6:40 PM Subject: [Zope-dev] Membership and PTK I am getting

[Zope-dev] Re: [Zope] Thanks for the comments

2000-10-12 Thread Phil Harris
As another side note, I generally make it into an eBook ready for the Microsoft Reader. If anyone's interested let me know. Phil [EMAIL PROTECTED] - Original Message - From: "knight" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: "Michel Pelletier" [EMAIL PROTECTED]; [EMAIL PROTECTED];

Re: [Zope-dev] How to use methods in a deeper folder?

2000-10-26 Thread Phil Harris
Hannes, There are a few ways to do this: dtml-in "eins.zwei.drei.sqlMethod" or dtml-with eins dtml-with zwei dtml-with drei dtml-in sqlMethod or dtml-with "restrictedTraverse('/eins/zwei/drei/sqlMethod')" all have their problems/advantages. try some of the above and see how

Re: [Zope-dev] Recursive folders from Python

2000-10-31 Thread Phil Harris
Try something like (taken from my own code, so it works for me, caveta emptor): def mkcontext(self,context=None): global default_dd if not context: return 'EH!' c=string.split(context,'/') newself=self for a in c: try:

Re: [Zope-dev] python memory error on Windows NT

2000-11-03 Thread Phil Harris
Me too, I've seen memory problems with ODBC to Access. - Original Message - From: "Toby Dickenson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, November 03, 2000 4:13 PM Subject: RE: [Zope-dev] python memory error on Windows NT | That sounds like a bug

Re: [Zope-dev] ANNOUNCE: PartitionedFileStorage

2000-11-23 Thread Phil Harris
Chris, Any hints/tips on how you did this (just to save me from having to do any work of course ;)) Phil - Original Message - From: "Chris Withers" [EMAIL PROTECTED] To: "Shane Hathaway" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, November 23, 2000 10:31 AM Subject: Re:

Re: [Zope-dev] Re: PathHandler: bug, readme.txt

2000-11-28 Thread Phil Harris
To my mind it's the browser. This is a simple trick I use when egating the caching in IE for instance. Stick a space on the end of the url and IE thinks it's a new one but blindly strips them before getting the same refreshed page. This works with any server and any page on that server btw.

Re: [Zope-dev] case insensitive sorts

2001-01-03 Thread Phil Harris
See below (nothing earth shattering tho) ;) - Original Message - From: "Chris Withers" [EMAIL PROTECTED] To: "Shane Hathaway" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, January 03, 2001 10:58 AM Subject: Re: [Zope-dev] case insensitive sorts Shane Hathaway wrote:

Re: [Zope-dev] New UI for 2.3

2001-01-11 Thread Phil Harris
Brian, Good answer, I for one would like to add a vote for the new UI. +1 Phil [EMAIL PROTECTED] On Thu, 11 Jan 2001, Brian Lloyd wrote: I think the new UI for 2.3 is great improvement over 2.2. I'm already finding the sorted tables of folder contents useful, and having the add new

Re: [Zope-dev] How do I create a folder with subfolders, docs etc?

2001-01-11 Thread Phil Harris
Espen, How about untested, but similar works in Python External method: dtml-call expr="manage_addFolder('newfolder')" dtml-call "REQUEST.set('newf',_['newfolder'])" dtml-call expr="newf.manage_addFolder('anotherfolder')" maybe?!? Phil On Thu, 11 Jan 2001, Espen Sorbye Frederiksen wrote:

Re: [Zope-dev] recent DynPersist.dll for windows

2001-01-17 Thread Phil Harris
Steve, I've got one on a box at work, I'll check back with you tomorrow, and if you still need it it's yours. I may even be persuaded to compile a new one ;) Phil On Wednesday 17 January 2001 23:13, Steve Alexander wrote: Hi Folks, Does anyone have a recently compiled DynPersist.dll from

[Zope-dev] InterbaseStorage, Win32 anyone?

2001-02-12 Thread Phil Harris
Hi all, I'm trying to get InterbaseStorage working on Win32. I've got all the requisite parts and they all seem to be working OK (well, kinterbasdb and mxDateTime do) outside Zope in plain Python. When I try and import _kinterbasdb.dll, from within Zope I'm getting an error message: Unable to

Re: [Zope-dev] Alumni in zope ?

2001-03-13 Thread Phil Harris
Yes - Original Message - From: "Muhammad Jahanzeb" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 13, 2001 9:27 AM Subject: [Zope-dev] Alumni in zope ? Can we implement an alumni in zope or through zope ? ___ Zope-Dev

[Zope-dev] ZPT trials and tribulations

2001-03-16 Thread Phil Harris
All, I'm in the process of trying out the ZPT stuff(thanks to Duncan Booth for the win32 stuff). Anyway up, It's all going according to plan but I have a few issues, maybe someone has a better idea than me what's wrong here. code starts here ?xml version="1.0" ? html

Re: [Zope-dev] Zope 2.3.1b3 problem

2001-03-26 Thread Phil Harris
Andy, Try print container.getId() return printed hth Phil - Original Message - From: "Andy Dawkins" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 26, 2001 10:29 AM Subject: [Zope-dev] Zope 2.3.1b3 problem People I have found this small problem but I don't

Re: [Zope-dev] Compiling Zope from source on Windows

2001-03-27 Thread Phil Harris
This is too cool, works great! Compiled first time and run first time. Serving pages already, too cool. - Original Message - From: "Chris McDonough" [EMAIL PROTECTED] To: "Brian Lloyd" [EMAIL PROTECTED]; "Andy McKay" [EMAIL PROTECTED]; "Chris Withers" [EMAIL PROTECTED] Cc: [EMAIL

Re: [Zope-dev] cl.exe with MySQL-python-0.3.5

2001-04-04 Thread Phil Harris
cl.exe with MySQL-python-0.3.5Mike, Can I ask a favour of you first? Please don't send HTML formatted mail to the list, thanks. Now onto your problem. You need Microsoft Visual C (6.x?) to compile what you want. If you haven't got it, give me a few hours and I'll comple it for you. Phil

Re: [Zope-dev] MySQL-python-0.3.5 with ZMySQLDAMike

2001-04-05 Thread Phil Harris
Mike, Is your Zope one of the standard installs or did you build it yourself? If it's one of the standard installs then it was built with Python 1.5.2. This means that your build of _mysql.pyd won't work with Zope as it was built with Python2.0. You will need to get Python 1.5.2 and rebuild

Re: [Zope-dev] how can I stop zope through ftp?

2001-04-09 Thread Phil Harris
My take is that you won't be able to restart Zope via FTP, but you can do it with a normal URL link. The URL would be http://yourmachine/Control_Panel/manage_restart to restart it or http://yourmachine/Control_Panel/manage_shutdown to close Zope down. Obviously you will need to authenticate in

Re: [Zope-dev] How to handle special sub-directories

2001-04-15 Thread Phil Harris
Create the pathhandler in the root and name it index_html. - Original Message - From: "Remi Delon" [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, April 15, 2001 9:39 PM Subject: Re: [Zope-dev] How to handle "special" sub-directories Thanks Chris.

Re: [Zope-dev] How to handle special sub-directories

2001-04-17 Thread Phil Harris
Remi, What I ended up doing was to use a Python Script (Internal) or whatever thy're called now. I then used the Traversal Path thingy in there to create the same effect. Naming that index_html worked for me, YMMV. Phil - Original Message - From: "Remi Delon" [EMAIL PROTECTED] To:

Re: [Zope-dev] Zope 2.3.2 and win32 python 2.1

2001-05-21 Thread Phil Harris
Richard, Try search for extensionbuilder.py, this is the magic. If you can't find it let me know and I'll send it to you. Be warned though that there are some things it doesn't cope with, the new btree stuff springs to mind. hth Phil - Original Message - From: [EMAIL PROTECTED] To:

Re: [Zope-dev] Zope hanging on startup

2001-05-25 Thread Phil Harris
Weird, same thing just starting happening to me a few minutes ago?!?! Win2k Zope 2.3.2 Phil - Original Message - From: Andy McKay [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 26, 2001 12:53 AM Subject: [Zope-dev] Zope hanging on startup Anyone else getting occasional

Re: [Zope-dev] SOAP again (or, xml-rpc client for MSIE)

2001-05-30 Thread Phil Harris
Brad, There are a few COM/COM+ components around that do xml-rpc. I use them with MS Word to write Word files directly to Zope for instance. Some are better than others, but ymmv so I'll hesitate to recommend one. At least one of them is listed on xmlrpc.com. Having them you could script

Re: [Zope-dev] Spell checking module

2001-06-27 Thread Phil Harris
Somewhere on the xmlrpc.com site there is reference to a spell checker that can be used via xmlrpc, this could be used in Zope quite easily. http://www.stuffeddog.com/speller/ I think is the place to look. Phil - Original Message - From: Remi Delon [EMAIL PROTECTED] To: [EMAIL

[Zope-dev] WEBDav error?

2001-09-17 Thread Phil Harris
All, I'm in the process of creating a Python based equivalent for Cadaver. I think there is a minor but very annoying bug in the Zope WebDav server. I don't think the contents of the properties are being quoted. For instance: One object in my ZODB has a title of 'Declare interfaces for

[Zope-dev] WebDav Bug?

2001-09-17 Thread Phil Harris
All, I'm in the process of creating a Python based equivalent for Cadaver. I think there is a minor but very annoying bug in the Zope WebDav server. I don't think the contents of the properties are being quoted. For instance: One object in my ZODB has a title of 'Declare interfaces for

[Zope-dev] More on WebDAV properties.

2001-09-17 Thread Phil Harris
Andreas/all, hmm, now I'm confused. Looking at PropertySheets.py, it seems as if the properties are quoted, a call to xml_escape is made with the value of the property as the parameter. This call is made in dav__allprop, it seems as if it's in the proper place and all, so what is going wrong?

Re: [Zope-dev] A modest proposal: Replace medusa with Twisted

2001-10-10 Thread Phil Harris
want to comment on that. - Original Message - From: [EMAIL PROTECTED] To: Phil Harris [EMAIL PROTECTED] Cc: Chris Withers [EMAIL PROTECTED]; Itamar Shtull-Trauring [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, October 10, 2001 12:21 PM Subject: Re: [Zope-dev] A modest proposal

Re: [Zope-dev] Zope Cygwin

2001-10-10 Thread Phil Harris
I had a brief conversation with the Cygwin Python maintainer a little while back, supposedly the next release of Cygwin will have a threaded Python (2.1.1 or maybe even higher). Phil On Wed, 10 Oct 2001 13:17:22 -0400 Chris McDonough [EMAIL PROTECTED] wrote: FYI I finally have a Cygwin

Re: [Zope-dev] A modest proposal: Replace medusa with Twisted

2001-10-11 Thread Phil Harris
Been there, done that. JPE (as it was originally known, Java Python Extensions), has a fatal flaw, at most one JVM can be attached to a Python script at any one time, this single instance attaches itself to a single thread, and is not available in any other thread. I've had this working with

Re: [Zope-dev] A modest proposal: Replace medusa with Twisted

2001-10-11 Thread Phil Harris
Hmhm, that is cool, I'll take another look then :) - Original Message - From: Itamar Shtull-Trauring [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 11, 2001 5:39 PM Subject: Re: [Zope-dev] A modest proposal: Replace medusa with Twisted Phil Harris wrote: That said

Re: [Zope-dev] Open Letter to zope-dev

2001-11-30 Thread Phil Harris
He's also on #zope, chatting and supporting :) On Saturday 01 December 2001 02:02, Paul Everitt wrote: Chris was just drinking a beer with us at Orbit's twenty minutes ago, and now he's responding to email on a Friday night. That's just sick. I don't think your boss fully appreciates you,

[Zope-dev] Re: Zope-Dev -- confirmation of subscription -- request 616673

2002-11-27 Thread Phil Harris
On Wed, 27 Nov 2002 05:54:27 -0500 [EMAIL PROTECTED] wrote: Zope-Dev -- confirmation of subscription -- request 616673 We have received a request from 193.63.123.17 for subscription of your email address, [EMAIL PROTECTED], to the [EMAIL PROTECTED] mailing list. To confirm the request,

[Zope-dev] slightly offtopic: Publish/Subscribe mechanisms and Zope.

2002-12-08 Thread Phil Harris
. This has huge possibilities for interactive web apps, presence, instant messaging, chat, et al. I apologise if this is too far off topic but thought that people may be interested :). Phil Harris [EMAIL PROTECTED] ___ Zope-Dev maillist - [EMAIL PROTECTED

Re: [Zope-dev] Zope + Jabber?

2003-03-31 Thread Phil Harris
___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope ) -- Phil Harris

Re: [Zope-dev] Zope 2.7 broken on Windows

2004-01-06 Thread Phil Harris
Better would be to install Python 2.3.3 and use that to run zope. This also gives the advantage of allowing easier installation of third party extensions to Python. Michael Long wrote: Has there been any progress on this? Or is there a sensible work-around I can give to our users - other than

Re: [Zope-dev] Specify a domain and leave the password for a user blank

2004-03-09 Thread Phil Harris
It's not a bug, in fact it's a cool way to allow different types of anonymous users. That's not to say that it's a fool-proof way of doing it, but it generally works, as long as you don't rely on it for any sort of security ;) . The thing is that in later zope versions the functionality has