Re: [Zope] Squid & ESI

2008-05-31 Thread Luciano Ramalho
I'm reviving this thread from 2006 hoping to hear news about current ESI usage in the Zope community. Has anyone since then had success deploying sites with ESI-enabled caching? Using Squid, Varnish or any other product? Cheers, Luciano On Tue, Jan 31, 2006 at 4:51 AM, Martijn Pieters <[EMAIL

Re: [Zope] Zope 2.11.0 beta 1 released

2007-12-28 Thread Luciano Ramalho
On Dec 28, 2007 10:59 AM, Andreas Jung <[EMAIL PROTECTED]> wrote: > * updated to ZODB 3.8 with BLOB support (binary large objects) Great! > * transactional MailHost implementation and asynchronous mail delivery Awesome! > Supported Python versions: > > Zope 2.10 requires Python 2.4.3+ (

[Zope] Apidoc hangover

2007-12-27 Thread Luciano Ramalho
Maybe apidoc had too much to drink over Christmas, but right now both the apidoc tool at zope.org and the one in a freshly installed local zopeproject are broken... I guess I should be drinking myself. ISSUE WITH PUBLIC APIDOC --- The public one [1] gi

Re: [Zope] Z Search Interface returns numbers

2007-04-10 Thread Luciano Ramalho
You missed a step: you must use the Metadata tab of the ZCatalog to define which fields of the indexed objects should be returned with the results from the search. After you do that, you'll have to update the catalog (Advanced tab) and then regenerate your search interface. For instance, to retur

[Zope] Zope and OAI-PMH

2006-01-27 Thread Luciano Ramalho
I've been assigned to integrate an existing academic portal in Plone with the OAI-PMH protocol as a data provider. Searching through this list I found the message below, but no response. On 2/4/05, Yuri <[EMAIL PROTECTED]> wrote: > There are several (at least two...) products to manage OAI with >

Re: [Zope] Object DB versus Relational DB

2001-01-22 Thread Luciano Ramalho
pported by MySQL. The rest of the book is filled with solutions to problems that test the limits of the relational database model. Best regards, Luciano Ramalho Tom Deprez wrote: > > > A starting point is http://www.zope.org/Members/anthony/sql_vs_ZODB > > Reading this text is exact

Re: [Zope] FTP Woes and no answer

2001-01-12 Thread Luciano Ramalho
Are you using a recent version of Zope, where superusers cannot own objects? That could be the explanation... LR "J. Atwood" wrote: > > I have FTP'd into Zope before. No problems but all of a sudden it > seems like neither I nor the people I am working with can FTP in with > either a manager or

Re: [Zope] type in python methods

2001-01-11 Thread Luciano Ramalho
y = 'eggs' >>> z = 99 >>> type(x) == type(y) 1 >>> type(x) == type(z) 0 >>> - How isn't it working for you? What is the context? What kinds of variables are you trying to compare? Are you aware that type() only knows about primitive types (

Re: [Zope] MySQL connection woes

2001-01-09 Thread Luciano Ramalho
I don't know how to create a null login in MySQL, but I know a better solution. The last time I had a problem like yours I created a user in MySQL and used it connect Zope. In mysql you type: GRANT ALL ON my_database.* TO my_user IDENTIFIED BY my_passwd (The .* part is a wildcard meaning all ta

Re: [Zope] Zope vs. Enhydra

2001-01-02 Thread Luciano Ramalho
Zope. Enhydra is exclusively a programmers tool. Zope, through it's friendly UI, enables you to delegate many maintenance activities to end-users, where they belong. Regards, Luciano Ramalho Hiperlogica Sao Paulo - Brazil ___ Zope maillist - [EMAIL

Re: [Zope] Not like ASP complaint - any good answers

2000-08-24 Thread Luciano Ramalho
; Unfortunately, in the real world it seems these conditions never exist. Best regards, Luciano Ramalho Sean McGrath wrote: > > All, > > I have had a number of e-mails from developers > using Microsoft ASP in recent days. The paraphrased consensus > in the e-mails is that the

Re: [Zope] Reversing acquisition?

2000-07-20 Thread Luciano Ramalho
s searched in the order "D", "C", "B", "A". """ But for me, A.B.C.D means that A contains B; B contains C; and C contains D, so I donĀ“t see the difference from the first definition. Maybe you are using the word "container" in a m

Re: [Zope] Reversing acquisition?

2000-07-19 Thread Luciano Ramalho
the subfolder, so the desired effect will be achieved. Regards, Luciano Ramalho ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/l

Re: [Zope] WebObjects

2000-05-29 Thread Luciano Ramalho
WebObjects fits a definition that also works for Zope: both are object-oriented frameworks combined with middleware to enable web applications. Unlike Zope, WebObjects does not have any persistence mechanism of its own; it depends on an RDMS to store objects. Oracle, Sybase and Informix are suppo