[Zope] XML and Zope newbie question...

2000-09-08 Thread Eric L. Walstad
Hi All, I am just getting started in XML and am trying to figure out how it works with Zope. I would like to be able to post some data to Zope in XML format and have Zope parse the data into Zope objects. Is this possible? It seems like I should be able to create the Zclasses and, when Zope

Re: [Zope] Java applet with inner classes causing probs in Zope

2000-09-07 Thread Eric L. Walstad
Just a follow-up: Morten Said: // Adding files to Zope through FTP doesn't seem to have the same restrictions. Actually, it did for me. FTP was able to upload all the class files except those with the $ in them (the classes with inner-classes). That's how I found out about the problem. Holger

[Zope] Java applet with inner classes causing probs in Zope

2000-09-04 Thread Eric L. Walstad
Hello all, The problem is that inner classes have names like "Parent$Inner.class" I'm unable to create a Zope file object with a name that includes the dollar sign. However, the applet won't function without it. Has any one overcome this? Yes, the applet functions properly when served from

RE: [Zope] password

2000-07-30 Thread Eric L. Walstad
Hi Jonathan, Try this from the console: python zpasswd.py --username="superuser" --password="TheNewPassword" "access" This is documented in the Zope installation files. Note that doing it this way, the command line will be stored in the command line buffer file on your system, which may be a

[Zope] Incorrect Article: Zope Costly enterprise option

2000-07-20 Thread Eric L. Walstad
Hi Tom and the editors at InfoWorld, In regards to your article titled "Zope is a powerful open-source server" FYI, ZEO is now open source and free. It's been that way since March 2000. Is it possible to fix your article before too many folks get the wrong idea? Here's a link to all the

RE: [Zope] Trouble compiling ZMySQLDA

2000-07-10 Thread Eric L. Walstad
Hello Ewald, Here's a mailing list archive that may help you: http://zope.nipltd.com/public/lists/zope-archive.nsf/242bb7cc2b2c343d802568a b003585d4/041159ede9899734802568a700259726?OpenDocument It helped me with the same problem. Basically, It tells you how to make a few simple modifications

[Zope] Which PostGreSQL DA should I use?

2000-07-06 Thread Eric L. Walstad
OK, I am thinking about going from MySQL to PostgreSQL for its transactions and subqueries. I am curious which DA I should use and why. I see that I can choose from: 1. SQLRelay 2. ZPoPyDA 3. ZPyGreSQLDA Which are you using and why did you choose it over the others? Thanks for your time.

[Zope] PoPy-1.2.tar.gz file is missing...

2000-07-06 Thread Eric L. Walstad
The PoPy-1.2.tar.gz file doesn't seem to be available from the ftp.mixadlive.com site. Would anyone out there mind emailing me the file? Thanks, Eric. ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross

RE: [Zope] ANN: Forthcoming Zope Book

2000-07-06 Thread Eric L. Walstad
YAY! Can't wait to see the new docs! Thanks!! -E ___ 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

[Zope] ZCatalog, subtransactions permissions

2000-07-04 Thread Eric L. Walstad
Hi All, I have a user that is trying to go thru the JobBoard tutorial. In part of the tutorial he is supposed to turn off subtransactions in his instance of ZCatalog. However, he does not have the necessary permissions to do so. I'm the one that is supposed to setup his permissions, but I

[Zope] HTML Editors that recognize DTML (was bastardized form of XML)

2000-06-23 Thread Eric L. Walstad
// b. Make it possible for some HTML editors that can extend their tag // database to recognize DTML tags. Maybe this is a little off topic, but did you have an editor in mind when you changed the syntax? Can you recommend an HTML editor that runs on Windows that will do this? I am currently

[Zope] ZClass newbie problem...

2000-06-12 Thread Eric L. Walstad
I'm stuck. I would like to build a "shiny new ZClass" that has the following structure: WebSimProduct WebSim Class 'Properties' Property Sheet string RunID Calc Class Object 'Properties' Property Sheet PathToInputFile PathToWxFolder Results Class

RE: [Zope] IRC Chat - tools[win32]

2000-05-30 Thread Eric L. Walstad
// I have not used IRC before, but would love to join the chat session. I've not used IRC either. Can I monitor the discussion using MS NetMeeting? ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross

RE: [Zope] Calling External Method...

2000-05-21 Thread Eric L. Walstad
// Am I on the right track with this? Shouldn't it be easy ( secure) to // launch a C app on the server and pipe the results back to // Zope? If so, how. // The approach I took (above) was recommended by someone else on // the list. // // I think you should probably make sure the function

RE: [Zope] zsql method??/

2000-05-18 Thread Eric L. Walstad
Oops, I forgot to mention that the CONV function is used in your ZSQL method. Here's the ZSQL Method I use (returns upcoming birthdays falling within this, and the next, month): SELECT FirstName, LastName, MONTH(Birthday) AS Month, DAYOFMONTH(Birthday)AS Day, DATE_FORMAT(Birthday, '%M %D, %Y')