[Zope-dev] (no subject)

2001-01-07 Thread sfcsdckjkj
GET YOUR OWN 100 MEG WEBSITE FOR ONLY $11.95 PER MONTH TODAY! STOP PAYING $19.95 or more TODAY for your web site, WHEN YOU CAN GET ONE FOR ONLY $11.95 PER MONTH! DO YOU ALREADY HAVE A WEBSITE? ALL YOU HAVE TO DO IS TRANSFER THE DOMAIN TO OUR SERVERS AND UPLOAD YOUR DATA AND YOU ARE READY TO

[Zope-dev] Zope from CVS for Windows

2001-01-07 Thread Steve Alexander
Is anyone regularly building Zope from CVS for Windows? I want to try something out on a Zope 2.3 build on windows, but I don't have easy access to windows development tools. If you can help, please get in touch. -- Steve Alexander Software Engineer Cat-Box limited http://www.cat-box.net

Re: [Zope-dev] __bobo_traverse__, new ZCatalog and ZClasses

2001-01-07 Thread Steve Alexander
Steve Alexander wrote: Zope 2.3, from cvs on 2000-12-24, patched with Chris P's latest ZCatalog stuff. I'm getting a bad interaction between ZClasses, ZCatalog and __bobo_traverse__. I have some ZClasses that are accessed via a container that implements __bobo_traverse__. The

[Zope-dev] LoginManger: multiple LoginMethods

2001-01-07 Thread John Eikenberry
Just got a basic loginmanager setup working with an SQL backend based off the howto. Very simple once I figured out a couple things (thanks dlpierson whoever you are). Anyways... I want to be able to support both cookie based auth and basic auth. With cookie based auth being the default unless

[Zope] (no subject)

2001-01-07 Thread sdlclkds
GET YOUR OWN 100 MEG WEBSITE FOR ONLY $11.95 PER MONTH TODAY! STOP PAYING $19.95 or more TODAY for your web site, WHEN YOU CAN GET ONE FOR ONLY $11.95 PER MONTH! DO YOU ALREADY HAVE A WEBSITE? ALL YOU HAVE TO DO IS TRANSFER THE DOMAIN TO OUR SERVERS AND UPLOAD YOUR DATA AND YOU ARE READY TO

Re: [Zope] dtml

2001-01-07 Thread Jan H. Haul
nando n wrote: i want to know as much as possible about dtml. Nando, this is the perfect time to read the Zope Book. You can read it on the Zope.Org site or download the HTML and print a copy yourself. It will be published by O'Reilly later this year, by the way. This book is just made as a

[Zope] Re: Leaking Oracle connections processes

2001-01-07 Thread Shai Berger
Shai Berger wrote: I have checked a little before the disaster, and it seems that not all those processes actually have connections; the problem may be unrelated to open connections, but just to processes. A little progress: We just had it happen again, and checked to see how many live

[Zope] [python] converting int to string?

2001-01-07 Thread Lee
Hi, I wonder if anyone could help me here... Is there any way to convert an integer to a string data type in Python? I see there is a facility for accomplishing the reverse conversion (string - int)? I have 4 integers, which are primarily used to handled the logic in the program below (in the

[Zope] LoginManager with SQL and Skinscript: adding properties topropertysheet propertysheet

2001-01-07 Thread Aaron Payne
Hi all, I am following Dan Pierson's How-To SQL LoginManager with SQL and Skinscript. I am not able to add properties. I created LoginManager:LoginUser subclassed zclass def for a user with a propertysheet Basic. It had properties password and email. The LM methods I tested failed so I

Re: [Zope] [python] converting int to string?

2001-01-07 Thread Jens Vagelpohl
in python you can do: str(int) and in zope you do it like _.str(int) "Learning Python" by o'reilly is a pretty good beginner's book for python. i suggest you read it. it's well written and gives you the basics. jens on 1/7/01 11:12, Lee at [EMAIL PROTECTED] wrote: Hi, I wonder if

Re: [Zope] ODBC errors

2001-01-07 Thread Philipp Auersperg
I have worked with ODBC and Zope under Win2k and had no such problems with MSSQL,Oracle and Access. Since you work with mysql the problem seems to happen in conjunction with the mysql ODBC AND Zope, I don't have experiences with MySQL ODBc, but: If you work with mysql Zope I would anyhow

RE: [Zope] [python] converting int to string?

2001-01-07 Thread Max M
From: Jens Vagelpohl in python you can do: str(int) and in zope you do it like _.str(int) You can also use the short form in both Zope and Python: `int` Two of those funny `` characters surrounding what you want converted to a string. Regards Max M Max M. W. Rasmussen,Denmark. New

Re: [Zope] Core Session Tracking kudos namespaces

2001-01-07 Thread Chris McDonough
On Thu, 4 Jan 2001 19:48:53 -0800 (PST) Bob Sidebotham [EMAIL PROTECTED] wrote: --- Somebody wrote: Of course, the best solution would be for the 'magic' lookup to be optional... Alright, I've not a zope master, but isn't this already provided generically with: dtml-with

[Zope] My own alternative interface to a propertysheet in a zClass gets redirected to the original interface

2001-01-07 Thread Max M
When I make an alternate interface to my properties for a zClass and it then calls manage_editProperties, manage_editProperties redirects me to the original properties page. How can I avoid that? "edit" is the alternative interface dtml method. Do I have to make a new page to avoid it?

RE: [Zope] My own alternative interface WHOOPS that got mangled

2001-01-07 Thread Max M
This is waht i meant When I make an alternate interface to my properties for a zClass and it then calls manage_editProperties, manage_editProperties redirects me to the original properties page. How can I avoid that? "edit" is the alternative interface dtml method. I thought i could just set:

Re: [Zope] UserFolder Alternate Login

2001-01-07 Thread Dieter Maurer
[EMAIL PROTECTED] writes: I need functionality that none of the UserManagers seem to address. I need to allow a user to elect to log in (and set AUTHENTICATED_USER) as opposed to have them access a restricted resource to trigger cookie authentication. Maybe, I do not understand you.

[Zope] Re: Leaking Oracle connections processes

2001-01-07 Thread Dieter Maurer
Shai Berger writes: ... excess Oracle processes and zombies ... I have checked our installation and can confirm that both problems have gone. We do not yet know what caused the excess Oracle processes. After an increase of Zope's ZODB cache and an upgrade to the newest DCOracle, the problem

Re: [Zope] How to call ancestral method in ZClass method?

2001-01-07 Thread Dirksen
Hi Steve, Well, if my rack object is stored persistently, I guess no skinscript would get fired, am I right? In that case, I need to override manage_delete, and call it in this statement: dtml-call "PortalMember.manage_delete()" Zope complains NameError of PortalMember. If I changed to:

Re: [Zope] How to call ancestral method in ZClass method?

2001-01-07 Thread Dirksen
Hi Steve, Well, if my rack object is stored persistently, I guess no skinscript would get fired, am I right? In that case, I need to override manage_delete, and call it in this statement: dtml-call "PortalMember.manage_delete()" Zope complains NameError of PortalMember. If I changed to:

[Zope] RSS and JavaScript

2001-01-07 Thread LARRY CHUON
Hi Zopistas, Happy New Year! I'm working with SiteSummary and would like htmlPreview to grab the URL and open it up in a new window. It's not working correct. I'm unsure how Zope handle javascript either. Any help is greatly appreciated. Below is my htmlPreview. I also tried to put the

[Zope] Zope 'Best Practices'?

2001-01-07 Thread Steve McMahon
Is there anything like a Zope 'Best Practices' document or Wiki? One that would encourage use of certain practices, DTML idioms or products, and warn of practices, idioms or products that are known to cause problems down the line or are slated for extinction? I ask this as a new user who's

Re: [Zope] My own alternative interface WHOOPS that got mangled

2001-01-07 Thread Tim Cook
Max M wrote: This is waht i meant When I make an alternate interface to my properties for a zClass and it then calls manage_editProperties, manage_editProperties redirects me to the original properties page. How can I avoid that? Mukhsein's excellent Job Board HowTo was the resource I

[Zope] SELECT ... AS ... statement in ZSQL

2001-01-07 Thread Bowyer, Alex
A simple question, but I can't seem to find a simple answer in any of the documentation... How do you do a SELECT AS statement in a ZSQL method? For example SELECT FirstName + " " + LastName AS FullName Whenever I use AS, I end up getting the SQL error "Two few parameters: x expected" where is

Re: [Zope] RSS and JavaScript

2001-01-07 Thread John Morton
On 7 Jan 2001 17:51:24 -0800 LARRY CHUON [EMAIL PROTECTED] wrote: Hi Zopistas, Happy New Year! I'm working with SiteSummary and would like htmlPreview to grab the URL and open it up in a new window. It's not working correct. I'm unsure how Zope handle javascript either. Zope handles

[Zope] What is python scripts?

2001-01-07 Thread Dirksen
Is that a product(can't find it in zope's product page) or a new version of python method? Where to download? Please point me to the right direction. Dirksen __ Do You Yahoo!? Yahoo! Photos - Share your holiday photos online!

Re: [Zope] How to call ancestral method in ZClass method?

2001-01-07 Thread Steve Spicklemire
Hi Dirksen, Are you deleting a Rack? or an instance of a DataSkin that is managed by a Rack? -steve "Dirksen" == Dirksen [EMAIL PROTECTED] writes: Dirksen Hi Steve, Dirksen Well, if my rack object is stored persistently, I guess Dirksen no skinscript would get fired, am I

[Zope] ZClass Define Permissions confusion

2001-01-07 Thread Ron Bickers
After having read the Zope Book Security chapter and various other security howtos, I understand better how permissions apply in ZClass methods and property sheets. However, I'm still confused about a couple things. 1) What is affected by each of the 'Define Permissions' settings in the

Re: [Zope] What is python scripts?

2001-01-07 Thread Evan Simpson
From: "Dirksen" [EMAIL PROTECTED] Is that a product(can't find it in zope's product page) or a new version of python method? Where to download? Please point me to the right direction. It is the successor to Python Methods (although they can coexist happily), to be released in 2.3 (now in alpha

Re: [Zope] Core Session Tracking kudos namespaces

2001-01-07 Thread Tres Seaver
"Chris McDonough" [EMAIL PROTECTED] wrote snip I think the idiom here will be: dtml-with "datamgr.getSessionData()" mapping dtml-var foo /dtml-with But I don't see how to do that, because if I stick a dtml-with, for instance, into generic header code (included, for example, by

[Zope] How to call MessageDialog in DTML method?

2001-01-07 Thread Dirksen
dtml-var MessageDialog reports 'resource not found'. Why? Dirksen __ Do You Yahoo!? Yahoo! Photos - Share your holiday photos online! http://photos.yahoo.com/ ___ Zope maillist - [EMAIL PROTECTED]