Re: [Zope] Problem with 2.2.4b1

2000-11-25 Thread Wolfgang Strobl
On 24 Nov 2000, at 9:48, [EMAIL PROTECTED] wrote: > I installed 2.2.4b1 over 2.2.3, and everything seems to work fine, but, when > I IE5.5 to manage my sites, I loose some icons and graphics (not all!). > But, if I clear my cache, The icons reappears, but only for a while! Am I > the only only e

Re: [Zope] view DTML source

2000-11-25 Thread Oleg Broytmann
On Fri, 24 Nov 2000, Anders Eriksson wrote: > (Object: standard_html_header) > AttributeError: __call__ > > This is my data: > Zope version: Zope 2.2.2 (binary release, python 1.5.2, win32-x86) > Python version: 1.5.2 (#0, Jul 30 1999, 09:52:18) [MSC 32 bit (Intel)] > System Platform: win32 >

RE: [Zope] Special behavior or bug?

2000-11-25 Thread Dany Rioux
Chris, Thanks. It did work. Only thing is I feel like trying to break eggs to cook with a jackhammer... It works but it is daunting. Nonetheless, I'm very glad you gave me that. I don't think I would have been able to pull that one off by myself. Oh, maybe in a year or so :) I have to say that

[Zope] RE: BSD 4 installation

2000-11-25 Thread Webmaster
I haven't solved my BSD problem but I did discover that there are BSD ports of Zope and Zope products maintained at http://www.freebsd.org/cgi/ports.cgi?query=zope&stype=all I haven't been able to get the port to work yet but I suspect that it's because I don't have root access to the server. Th

Re: [Zope] RE: BSD 4 installation

2000-11-25 Thread Steve Spicklemire
Hi Lee, I'm not sure if this will help.. but I do know that I routinely build Zope on multiple FreeBSD systems and it has never caused a problem like this. Did you build your own python, or use a port? What flavor of BSD? I've never had to edit Makefile.pre.in or do.py on FreeBSD 3.x, or 4.x.

[Zope] j2ee & zope

2000-11-25 Thread alan runyan
Ender pretty much summed everything I could say about J2EE and Zope. but I can tell you why we chose EJB/BEA at our company rather than something like ZOPE/OpenMerchant/PHP/etc. 1. we are consulting firm and we need to be able to leave a client. ZOPE could (at the time, and I believe stil

Re: [Zope] j2ee & zope

2000-11-25 Thread Chalu Kim
alan runyan wrote: > > Ender pretty much summed everything I could say about J2EE > and Zope. but I can tell you why we chose EJB/BEA at our > company rather than something like > ZOPE/OpenMerchant/PHP/etc. > > 1. we are consulting firm and we need to be able to leave a > client. ZOPE could

Re: [Zope] Python and EJB (J2EE)

2000-11-25 Thread Hung Jung Lu
>From: Ender <[EMAIL PROTECTED]> >... Thanks for the comments. I'll reply other points in a few more days. >as for distributed technologies, while xml-rpc is useful and simple its >not useful (IMO) for enterprise programming, its too basic. This maybe true. However, HTML is also basic and simpl

[Zope] user-owned products?

2000-11-25 Thread Kyler B. Laird
Over the last few months I've been getting much more comfortable advocating Zope as our supported Web application environment. I'm *finally* getting around to building my own products, however, and I just realized how limited they appear to be. It *seems* that Zope products are at the evolutio

[Zope] Zope, squid, the Host header

2000-11-25 Thread Dennis Nichols
The "How-To: Configuring Squid as an Accelerator for Zope" (http://www.zope.org/Members/htrd/howto/squid) by htrd doesn't entirely work for me and/or is over my head! My goal is to use Squid as an http accelerator in front of zope (using zserver, no apache) on the same machine. Secondary goal

Re: [Zope] Python and EJB (J2EE)

2000-11-25 Thread Ender
Hung Jung Lu wrote: > > >From: Ender <[EMAIL PROTECTED]> > >... > > Thanks for the comments. I'll reply other points in a few more days. cool, i've been waiting for this discussion:) > >as for distributed technologies, while xml-rpc is useful and simple its > >not useful (IMO) for enterprise p

[Zope] PoPy and system tables

2000-11-25 Thread Andreas
Hi, can anybody out there tell me why this query fails although PoPyDA is connected as postgres superuser ? select * from pg_class BTW: when I try this query I get no traceback :-( Postgres 7.02 PoPy 1.4.1 ZPoPyDA 0.7 Zope2.1.6 Linux 2.2.13 -- ___

Re: [Zope] j2ee & zope

2000-11-25 Thread Ender
alan runyan wrote: > > Ender pretty much summed everything I could say about J2EE > and Zope. but I can tell you why we chose EJB/BEA at our > company rather than something like > ZOPE/OpenMerchant/PHP/etc. > > 1. we are consulting firm and we need to be able to leave a > client. ZOPE could (a

[Zope] Authenticating Users.

2000-11-25 Thread Jason C. Leach
hi, How can I authenticate a user from a form. Pretty much exactly how zope.org logges you in? I have looked at both zope.org's login and logged_in (the action for login) and don't see where it actually goes and checks the username/password? The only twist with my setup is, the are authenticati

Re: [Zope] How to checkout PythonMethod from CVS

2000-11-25 Thread Ender
Milos Prudek wrote: > > How can I checkout PythonMethod from cvs? I tried to modify the "Zope2" > in the following command: > > cvs -z7 -d :pserver:[EMAIL PROTECTED]:/cvs-repository checkout > Zope2 > > (Zope2/PythonMethod, Zope/PythonMethod, Zope/DC/PythonMethod, > Zope/Products/PythonMethod a

Re: [Zope] PoPy and system tables

2000-11-25 Thread Andreas
Andreas wrote: > > Hi, > can anybody out there tell me why this query fails > although PoPyDA is connected as postgres superuser ? > > select * from pg_class by now I found there is a problem with pg_class.oid. "select relname from pg_class" works fine "select oid from pg_class" fails -- ___

[Zope] Access to Python arrays

2000-11-25 Thread Edward Muller
I am working on a product in which one of the objects keeps an array. I've already overcome the problems with making the array persistent (i.e. by not using .append, but intead re-assigning the array each time). Anyway...I digress.. So I have this object that has an array..A folder may contain se

Re: [Zope] Access to Python arrays

2000-11-25 Thread morten
> I am working on a product in which one of the objects keeps an array. I've > already overcome the problems with making the array persistent (i.e. by not > using .append, but intead re-assigning the array each time). Anyway...I > digress.. This sounds a bit awkward, if you could post some of the

Re: [Zope] PoPy and system tables

2000-11-25 Thread Chris Gray
I can pinpoint the problem a bit more. select relname, relowner, relpages, reltuples, relhasindex, relisshared, relkind, relnatts, relchecks, reltriggers, relukeys, relfkeys, relrefs, relhaspkey, relhasrules, relacl from pg_class works fine but select reltype from pg_class select relam from pg

[Zope] Help System Menu patch

2000-11-25 Thread Bill Anderson
After working with the Zope help System a bit, I got very annoyed that there was no consistent ordering to the tree. For example, you could repeatedly click the contents tab link, and watch it reorganize itsself. Attached is a patch that sorts everything by id. Why id? Because then I can make m