Re: [Zope] Some help required but no sarcastic comments this time please

2001-01-24 Thread Geoffrey L. Wright
[EMAIL PROTECTED] writes: On Tue, Jan 23, 2001 at 11:17:32PM -, alankirk wrote: Hi there, i sent an email the other week regarding problems i've been experiencing with zope and MySQL. I've set up a database connection for zope and mysql and it sort of works. I can send queries

Re: [Zope] mailhost example problem

2001-01-22 Thread Geoffrey L. Wright
"Michael Angelo" [EMAIL PROTECTED] writes: hi, i am experiencing a strange problem with using the mailhost example on zope.com. snip This might sound totally off the wall, but I think that anything enclosed in dtml-sendmail tags can't have any preceding whitespace. Try this: dtml-var

[Zope] Zope, emacs secure ftp

2001-01-20 Thread Geoffrey L. Wright
Was just wondering what sort of solution people use for secure ftp and zope. I'd like to be able to use efs (or ange-ftp) over a secure connection to zope so I can do development using efs outside of our firewall. Does Zope's ftp server support SSL? Or is there some sort of SSH-based

Re: [Zope] zope, xemacs and efs

2001-01-18 Thread Geoffrey L. Wright
Steve Spicklemire [EMAIL PROTECTED] writes: Hmmm.. I use emacs/ange-ftp all the time with zope... many versions.. with no trouble. Have you tried that? Since my client is not 'X' (yet) I don't use xemacs... Nope. But explicitly telling efs to use passive mode doesn't work, I'll try that as

[Zope] ZClass Adding Magic Needed

2001-01-17 Thread Geoffrey L. Wright
So: I have a odd little problem that I can't seem to solve. I have two zclasses. We'll call them zclass1 and zclass2. zclass2 lives inside of zclass1. zclass1 has the following two properties: id and displayOrder. zclass2 has the four properties: id, displayOrder, alignment and content.

Re: [Zope] ZClass Adding Magic Needed

2001-01-17 Thread Geoffrey L. Wright
as well, but I have the same problem there. -- Jim Washington "Geoffrey L. Wright" wrote: So: I have a odd little problem that I can't seem to solve. I have two zclasses. We'll call them zclass1 and zclass2. zclass2 lives inside of zclass1. zclass1 has the

Re: [Zope] Stopping a dtml-in

2001-01-17 Thread Geoffrey L. Wright
Dieter Maurer [EMAIL PROTECTED] writes: Diego Rodrigo Neufert writes: dtml-in "_.range(1000)" code... dtml-if valueOk STOP THE LOOP /dtml-if /dtml-in A long time ago, someone has implemented a "dtml-break" tag. Wow. That's good to know. I just created some fairly

Re: [Zope] Tools used for programming Zope

2001-01-17 Thread Geoffrey L. Wright
"Chris Withers" [EMAIL PROTECTED] writes: Both WebDAV and FTP support are supposed to be better in 2.3 with full WebDAV level 2 compliance at some point in the future... I wonder if I can use emacs/efs with 2.3 w/out crashing it..? Right now when I try to use xemacs/efs with Zope 2.2.x, it

[Zope] zope, xemacs and efs

2001-01-17 Thread Geoffrey L. Wright
So I have a question for any zope/xemacs/emacs users out there... Since entering the word of emacs about 5 months ago, I've fallen in love. At work I now just about live in emacs -- well, actually in xemacs. I've even gone so far as to start using gnus for all my mail and news. And I at work

Re: [Zope] zope, xemacs and efs

2001-01-17 Thread Geoffrey L. Wright
[EMAIL PROTECTED] (A.J. Rossini) writes: What version of EFS are you using, and if not recent, have you considered upgrading the EFS package? 1.21 That's the most recent version listed by the xemacs package manager. Is there a known problem with older versions of efs and zope? best,

Re: [Zope] zope, xemacs and efs

2001-01-17 Thread Geoffrey L. Wright
ender [EMAIL PROTECTED] writes: On Wednesday 17 January 2001 18:39, Geoffrey L. Wright wrote: [EMAIL PROTECTED] (A.J. Rossini) writes: What version of EFS are you using, and if not recent, have you considered upgrading the EFS package? 1.21 That's the most recent version listed

[Zope] Poor Procedural Programmer Needs OOPish Enlightenment

2001-01-03 Thread Geoffrey L. Wright
aryColPublic method, even if I call the index_html method from within the edit folder. What I need (I think) is a way to keep all of this activity in the edit Folder. Or I need some other way of solving this problem. Any thoughts? I hope my description was clear enough... -- Geoffrey

Re: [Zope] Poor Procedural Programmer Needs OOPish Enlightenment

2001-01-03 Thread Geoffrey L. Wright
[EMAIL PROTECTED] writes: Not sure if this is your problem, but since methods don't have namespaces, I'm not sure why your code could not be reduced to: dtml-if expr="id != 'edit'" dtml-var index.html dtml-else dtml-var chunk_editFrameset /dtml-if You're right -- this works just as

[Zope] can't change zclass meta type

2000-12-27 Thread Geoffrey L. Wright
n. When I try to reference objects by metatype in my code, the new name does work, so it appears that the new metatype is ... mostly ... applied. Is this a bug? Or is the some other location where I also need to change this info? -- Geoffrey L. Wright Developer / Systems Administrator (907) 5

Re: [Zope] Editing Property Sheet HTML

2000-12-19 Thread Geoffrey L. Wright
- [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-dev ) -- Geoffrey L. Wright Developer / Systems Administrator (907) 5

Re: [Zope] Editing Property Sheet HTML

2000-12-19 Thread Geoffrey L. Wright
Tres Seaver [EMAIL PROTECTED] writes: "Geoffrey L. Wright" [EMAIL PROTECTED] wrote: The question is ... how do I do it? I'd like to make the default textarea field quite a bit bigger -- but I wasn't able to explore my way to success in the interface, and about 20 mins of se

[Zope] Object adding strangeness

2000-12-13 Thread Geoffrey L. Wright
we do this depends on whether we live in a product or in a class. If we live in a product, we need to use DestinationURL to decide where to go. If we live in a class, DestinationURL won't be available, so we use URL2. /dtml-comment dtml-if DestinationURL dtml-call "RESPONSE.redirect(De

Re: [Zope] dtml-with syntax question

2000-10-13 Thread Geoffrey L. Wright
Tim Cook writes: I'm sure someone will correct me if I'm wrong. But I believe you want: dtml-with "_.getitem(attribute3)" Haven't tried it in my code yet, but thanks to your post I found the section about _.getitem(). That'll come in handy all over the place, so many thanks for the

Re: [Zope] dtml-with syntax question

2000-10-12 Thread \Geoffrey L. Wright\ Geoffrey L. Wright
Chris Withers writes: "Geoffrey L. Wright" wrote: Where objectName2 is actually an attribute of objectName1. dtml-with objectName1 dtml-var attribute1 dtml-var attribute2 dtml-var attribute3 dtml-with o

Re: [Zope] Using ProxyPass and SiteRoot

2000-10-12 Thread \Geoffrey L. Wright\ Geoffrey L. Wright
knight writes: Timothy, Without going into too much detail, you are going to want to set up a virtual host in apache for the hostname www.isd197.k12.mn.us, and inside that virtual host you will want to add your ProxyPass lines similar to my example: [...] And just for reference,

[Zope] non-Zope object attribute admin interface

2000-10-12 Thread \Geoffrey L. Wright\ Geoffrey L. Wright
Kindly Zopistas: Am curious how to go about building an "alternate Property Sheet View" for custom ZClasses. The default view is great for me and other developers, but I need to build the something that looks a bit more customer-friendly. I spend about 20 minutes looking around the Zope site,

[Zope] symbolic links or invisible objects..?

2000-08-29 Thread Geoffrey L. Wright
Zopistas: Am working on a simple content management system for about 6 sites, and so far, so good. It's my first medium-sized Zope project and Zope has been wonderful to work with so far. However, I've been tasked with the project of creating the simplest possible interface for some very