On Wed, 6 Jun 2001 [EMAIL PROTECTED] wrote:
... at least then we know what the exception is.
:
Again - try that code in an interactive interpreter if you really want to
find out what's going on...
Yeah, thanks, that would work as a workaround, but isn't this buggish
behaviour?
[no cross-posting, please]
On Wed, 6 Jun 2001, Bjorn Stabell wrote:
We're planning a Yahoo! Clubs like system that should scale to about
30, 000 users. Assuming about 3,000 groups and 20MB per group (group
functionality includes photo albums), gives a database size of 60GB.
Assuming on
On Wednesday 06 June 2001 18:03, Erik Enge wrote:
On Wed, 6 Jun 2001 [EMAIL PROTECTED] wrote:
... at least then we know what the exception is.
Again - try that code in an interactive interpreter if you really want to
find out what's going on...
Yeah, thanks, that would work as a
On Wed, 6 Jun 2001, Erik Enge wrote:
I'm running a 1GB Data.fs with CompressedStorage here and that takes
probably about 3-5 minutes on a 1GHz with 1GB RAM. I keep banging my
head against it, but it just won't run faster.
Oops, misleading you there. Actually, FileStorage uses about 40
On Wed, 6 Jun 2001, Erik Enge wrote:
I'm running a 1GB Data.fs with CompressedStorage here and that takes
probably about 3-5 minutes on a 1GHz with 1GB RAM. I keep banging my head
against it, but it just won't run faster.
Out of interest, is this startup time avoided when using BerkeleyDB
Also how are the disks layed out? Is it possible to have, say, 5 disks
each on their own (no RAID) and then split the data.fs over them using
PartitionedFileStorage or similar.
Where can I get PartitionedFileStorage?
/Magnus
___
Zope-Dev maillist
Hi Jeff,
Jeff Nielsen wrote:
How do I construct a dtml-if statement with two conditions joined by and
logic? I want to do something like this:
dtml-if expr=LoginResults=='Pass' .and. expr=PATH_INFO=='/'
Did you try
dtml-if expr=LoginResults=='Pass' and PATH_INFO=='/'
Regards
Eric
On Wed, 6 Jun 2001, Richard Jones wrote:
http://www.zope.org/Members/anthony/BarewordExcepts
Feel free to find the bad except: and submit a patch...
Ugh. There are tons of them... I'll see what I have time for.
___
Zope-Dev maillist -
On Wed, 6 Jun 2001, Magnus Heino (Rivermen) wrote:
Where can I get PartitionedFileStorage?
Here: URL:http://www.zope.org/Members/hathawsh/PartitionedFileStorage
Didn't show up in any searches, though. Maybe worth indexing?
___
Zope-Dev maillist
On Wed, 6 Jun 2001, Matt Hamilton wrote:
Out of interest, is this startup time avoided when using BerkeleyDB as
the storage? I know that it has its own indexes etc. so I am
wondering if it no longer needs to load an index into memory.
I'm not sure, but as I said in a previous
On Tue, 05 Jun 2001 15:56:45 -0400, Chris McDonough
[EMAIL PROTECTED] wrote:
context = self
container = self.aq_inner.aq_parent
No amount of aquisition trickery will give a method access to the dtml
context, which I *think* is what was asked for.
the only thing i found was this:
i got it finally - jo
def test(self,REQUEST=None):
test
context = REQUEST.PARENTS[0]
return context.absolute_url()
the reason why:
in another project i used a python script which returns a specific property:
if the property in the current object has some specific
Good to know :-)
Chris
- Original Message -
From: Matthew T. Kromer [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, June 05, 2001 6:54 PM
Subject: [Zope-dev] DCOracle2 Beta 1 Announcement
Description
DCOracle2 is a replacement for DCOracle, written primarily in C. DCOracle
1
Hi list,
is there a way to invalidate certain objects in cache using DTML?
Thanks in advance
Eric
___
Zope-Dev maillist - [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
On Wed, 6 Jun 2001, Andre Schubert wrote:
Can anybody explain me why streaming over PCGI doesn't work, or has
anybody a solution of streaming with PCGI ???
Perhaps the PCGI has its own timeout that doesn't wait even if it has
been given some headers. I wonder if Apache ProxyPass has the same
Hmm, I'm surprised that 2 days has passed with no comment from zope-dev
and no comments in the Wiki. I hear constant complaints about lack of a
polished API. I expected this post to generate lots of interest.
What say ye, zope-dev? Is this something we should be doing, or would
you prefer a
On Mon, 4 Jun 2001, Amos Latteier wrote:
I encourage you to check it out and leave your comments, criticisms, and
suggestions.
I like. That pretty much captures it :)
There is one thing, though. Let's say I have this class NiceBigCar. The
developers docs from what you suggest are fine,
--On Wednesday, June 06, 2001 11:57:06 AM -0400 Paul Everitt
[EMAIL PROTECTED] wrote:
Hmm, I'm surprised that 2 days has passed with no comment from zope-dev
and no comments in the Wiki. I hear constant complaints about lack of a
polished API. I expected this post to generate lots of
I hope this helps. I wanted to add my feelings on the whole documentation issue. It
seems to me that the whole process caters around developers too much. I gotta tell you
I loved Zope the moment I found it. These days I'm having trouble though wondering
what is it all for? I've used zope for
I am having a problem with cookies in Internet Explorer. Zope will not
allow cookies in IE to have -'s or ,'s. The problem extends from the
fact that IE does not quote the environment variable HTTP_COOKIE, so
Zope has separate regular expressions to deal with HTTP_COOKIE in
Netscape and IE
Jimbo, I concur 100%.
I am a Zope newbie (relatively speaking - since February) but I have been
developing Web Information Systems since '95. My tool of choice was
perl/CGI. I attended a DEVX conference in December of '99 and was
introduced to Java Servlets and the J2EE spec. I knew this was
Hi all,
I'm trying to get variables from the name space in
a python script without much luck...
I think I am missing something very simple, but
after hours of searching I'm at wits end.
This is what I am trying:
A DTML document has several properties defined on
it.
It calls a python script
--- Jeff [EMAIL PROTECTED] wrote:
Hi all,
I'm trying to get variables from the name space in a
python script without much luck...
I think I am missing something very simple, but
after hours of searching I'm at wits end.
This is what I am trying:
A DTML document has several properties
On Monday 04 June 2001 16:55, Andreas Jung wrote:
Looks like you should write your own index type. Zope 2.4
comes with an PlugableIndex interface to allow third-party
indexes to be integrated into the Catalog.
this brings up an interesting question of what is the best way to register a
new
Thanks Christian, but it didn't work. I went with the long way:
dtml-if expr=LoginResults=='Pass'
dtml-if expr=PATH_INFO=='/Maintain/Results'
Valid response
dtml-else
False response
/dtml-if
dtml-else
False response
/dtml-if
Jeff
Thanks Eric, I tried it and it didn't work. I went with the long way:
dtml-if expr=LoginResults=='Pass'
dtml-if expr=PATH_INFO=='/Maintain/Results'
Valid response
dtml-else
False response
/dtml-if
dtml-else
False response
/dtml-if
Jeff
On Wed, 6 Jun 2001 11:57:18 +0800, Bjorn Stabell [EMAIL PROTECTED]
wrote:
I know we'll have to play with cacheing as well, and as I see there are
these options:
- Using StandardCacheManagers to cache pages (using, e.g., Squid as an
HTTP accelerator)
StandardCacheManager's HTTP implementation
27 matches
Mail list logo