Re: [Zope] Zope startup error: Archetypes: IndexError: list index out of range

2005-09-02 Thread Jens Vagelpohl
On 2 Sep 2005, at 02:38, Paul Sue wrote: Why is it so hard to get Zope going under Solaris (is that why there were separate downloads for Solaris until 2.7 ??) Since this is an Archetypes question you might be better off asking on a Plone and/or Archetypes list. Running Zope on Solar

Re: [Zope] Defining and creating a temporary storage for each user

2005-09-02 Thread Marco Bizzarri
On 9/2/05, Peter Bengtsson <[EMAIL PROTECTED]> wrote: On 9/1/05, Marco Bizzarri <[EMAIL PROTECTED]> wrote:> Hi Peter.>>  No, it should work good for me also... there still is a point on how to > create them for a custom product (I've a product and I would like to create> the folder inside the produ

Re: [Zope] Defining and creating a temporary storage for each user

2005-09-02 Thread Chris Withers
Marco Bizzarri wrote: Users should have their own storage, so that they can create/modify objects inside that, without influencing the general, shared database. The ZODB mounting machinery isn't designed for this case and it would take a lot of work on your part to make it do what you need,

Re: [Zope] Sending Fax through MailHost

2005-09-02 Thread Chris Withers
Chris Larsen wrote: Lennart- the fax piece is something on my exchange server so as long as the headers are correct it will interpret and route to the physical fax server accordingly. The problem is that I can't seem to discover through googling what these headers look like. Oh well, something

Re: [Zope] Zope startup error: Archetypes: IndexError: list index out of range

2005-09-02 Thread Chris Withers
Paul Sue wrote: Hi, OK, I rebuilt Zope because I think last time, I didn't have a clean directory. Simple advise: don't use Solaris unless you really really have to. Especially not for an app server, but even running a storage server will cause you unnecessary pain... Chris -- Simplistix

Re: [Zope] Zope scalabilty and problems

2005-09-02 Thread Chris Withers
Andrew Sawyers wrote: Did Matt indicate if he was running multiple zeo app servers? It might help to be spreading the load. 1, writes a day is not outrageous Yes, but he's using Plone, which implies not only all of the CMF reindexing overhead, but also all the AT and Plone layers on

Re: [Zope] Re: (1 conflicts since startup at 2005-08-04T14:45:39)

2005-09-02 Thread Chris Withers
It's when Zope's optimistic concurrency model encounters a conflict but where it managed to resolve it by retrying the request. So, this is only a problem if you see LOTS of them, as it'll mean you're taking a big performance hit and you should think about what's causing the conflicts... A g

[Zope] Re: Zope scalabilty and problems

2005-09-02 Thread N.Davis
Chris Withers wrote: Andrew Sawyers wrote: Did Matt indicate if he was running multiple zeo app servers? It might help to be spreading the load. 1, writes a day is not outrageous Yes, but he's using Plone, which implies not only all of the CMF reindexing overhead, but also all th

[Zope] Adding a zope product

2005-09-02 Thread Paul Hendrick
Hi all, i've just started with zope, and i'm trying to write a filesystem product, so i can have a project in svn and work on it in the filesystem. I've followed the guide at zope.org for creating a minimal product, but can't get this to show up in the list of products. Can anyone see whats wrong?

Re: [Zope] Defining and creating a temporary storage for each user

2005-09-02 Thread Marco Bizzarri
On 9/2/05, Chris Withers <[EMAIL PROTECTED]> wrote: Marco Bizzarri wrote:>> Users should have their own storage, so that they can create/modify objects> inside that, without influencing the general, shared database.The ZODB mounting machinery isn't designed for this case and it would take a lot of

[Zope] Re: Adding a zope product

2005-09-02 Thread Max M
Paul Hendrick wrote: Hi all, i've just started with zope, and i'm trying to write a filesystem product, so i can have a project in svn and work on it in the filesystem. I've followed the guide at zope.org for creating a minimal product, but can't get this to show up in the list of products. If

Re: [Zope] Zope startup problem: AttributeError: 'module' object has no attribute 'loadSchema'

2005-09-02 Thread Peter Bengtsson
Interesting. ZConfig is a folder which contains a file __init__.py that imports the loadSchema function. This is a perfectly valid way of doing it but personally I never use it because I think it's more confusing that import the files directly instead of using the __init__ magic. Perhaps you should

Re: [Zope] Adding a zope product

2005-09-02 Thread bruno modulix
Paul Hendrick wrote: > Hi all, > i've just started with zope, and i'm trying to write a filesystem > product, so i can have a project in svn and work on it in the > filesystem. > I've followed the guide at zope.org for creating a minimal product, but > can't get this to show up in the list of produ

Re: [Zope] Defining and creating a temporary storage for each user

2005-09-02 Thread Peter Bengtsson
> > The context is PAFlow, which is a "pure" (no CMF/Plone) vertical > application for (italian) public administration. > > Inside this application, we are using an in house developed framework where > more or less each page shown to the user is connected to an object (which we > call control

Re: [Zope] Adding a zope product

2005-09-02 Thread Peter Bengtsson
you registered the manage_addminimal function for creating the actual object, but what about the ZMI form that lets call manage_addminimal? On 9/2/05, Paul Hendrick <[EMAIL PROTECTED]> wrote: > Hi all, > i've just started with zope, and i'm trying to write a filesystem > product, so i can have a p

[Zope] Re: Zope scalabilty and problems

2005-09-02 Thread michael nt milne
Hi I am setting up sites using Plone and am concerned to read some of the comments on it. Is it really that bad performance wise? I'm using CMFMember also-why is it 'apalling'? On 9/2/05, N.Davis <[EMAIL PROTECTED]> wrote: > Chris Withers wrote: > > Andrew Sawyers wrote: > > > >> Did Matt indicat

[Zope] Python editor in zope?

2005-09-02 Thread Sean Dunn
I’m new to Zope, and am getting tired of using textarea’s to edit my Python/[HD]TML code. My space-bar thumb is starting to get an unnatural twitch, from hitting it multiple times at the beginning of every line of code. J   I’ve installed TinyMCE and Epoz, and they’re both great for docu

Re: [Zope] Python editor in zope?

2005-09-02 Thread Paul Winkler
> ... there any pure > JavaScript/CSS code editors that can do search/replace, block indents, > and (this would be amazing) Python syntax highlighting? I don't know about that, but have you tried using ExternalEditor? -PW ___ Zope maillist - Zope@zo

[Zope] Re: Adding a zope product

2005-09-02 Thread Max M
Peter Bengtsson wrote: you registered the manage_addminimal function for creating the actual object, but what about the ZMI form that lets call manage_addminimal? It is not necessary in this case, as the function sets the id and adds the instance. -- hilsen/regards Max M, Denmark http://

Re: [Zope] Python editor in zope?

2005-09-02 Thread Ricardo Alves
Sean Dunn wrote: I’m new to Zope, and am getting tired of using textarea’s to edit my Python/[HD]TML code. My space-bar thumb is starting to get an unnatural twitch, from hitting it multiple times at the beginning of every line of code. J I’ve installed TinyMCE and Epoz, and they’re both g

RE: [Zope] Python editor in zope?

2005-09-02 Thread Sean Dunn
I've tried the ExternalEditor feature, and after a couple sessions I get an error that says it can no longer find the process. This is from Firefox. But even if that did work for me, I'd never use it since I'm often working on different platforms in different locations, so it's not guaranteed that

Re: [Zope] Zope scalabilty and problems

2005-09-02 Thread Sebastien Douche
On 9/1/05, Kennamore, Matthew G [NTK] <[EMAIL PROTECTED]> wrote: > Zope version 2.7.3 (planning to goto 2.7.7 soon with ZODB 3.2.9) > Pyhton is 2.3.4 > Apache 1.3 > > We have 943 users as of this minute with a bout 1000 objects being created a > day (Lots of creates) Interesting. Somebody have a

[Zope] Zope will not start after failed 2.8.1 upgrade

2005-09-02 Thread hpinson
Upgraded to Zope 2.8.1 on Fedora Core 2, compiled with Python 2.3.5 (sitting alongside in the paralell to the system python). Zope started, but with errors. Reverted back to my former stable Zope 2.7.7 and Python 2.3.3, but Zope will not start at all now. Running the debugger reveals this.

RE: [Zope] Zope startup error: Archetypes: IndexError: list index out of range

2005-09-02 Thread Paul Sue
OK ... But surely, there must be some way to get Zope/Plone working on Solaris! I think we have Windows Server 2003 box I can try :) -Original Message- From: Chris Withers [mailto:[EMAIL PROTECTED] Sent: Friday, September 02, 2005 12:17 AM To: Paul Sue Cc: zope@zope.org Subject: Re: [Zo

Re: [Zope] Python editor in zope?

2005-09-02 Thread Peter Bengtsson
How about the best of two worlds? Filesystem based product (emacs, vi, wing) sometimes and through-the-web editing with a textarea sometimes: CheckoutableTemplates http://www.issuetrackerproduct.com/Documentation#checkoutabletemplates On 9/2/05, Sean Dunn <[EMAIL PROTECTED]> wrote: > I've tried th

[Zope] Re: Zope will not start after failed 2.8.1 upgrade

2005-09-02 Thread hpinson
Well, fortunatly I had last nights backup of the Data.fs. Restoring that allowed Zope to be reverted to 2.7.7 and restart. So here is my question. Normally I have been able to upgrade Zope, and if the upgrade had problems, revert to a prior version by simple redirecting the startup and python

Re: [Zope] Re: Zope will not start after failed 2.8.1 upgrade

2005-09-02 Thread Tim Peters
[EMAIL PROTECTED] > Well, fortunatly I had last nights backup of the Data.fs. Restoring > that allowed Zope to be reverted to 2.7.7 and restart. > > So here is my question. > > Normally I have been able to upgrade Zope, and if the upgrade had > problems, revert to a prior version by simple redirec

Re: [Zope] Defining and creating a temporary storage for each user

2005-09-02 Thread Marco Bizzarri
On 9/2/05, Peter Bengtsson <[EMAIL PROTECTED]> wrote: >>  The context is PAFlow, which is a "pure" (no CMF/Plone) vertical> application for (italian) public administration.>>  Inside this application, we are using an in house developed framework where > more or less each page shown to the user is c

Re: [Zope] Python editor in zope?

2005-09-02 Thread Dieter Maurer
Sean Dunn wrote at 2005-9-2 09:27 -0500: >I'm new to Zope, and am getting tired of using textarea's to edit my >Python/[HD]TML code. My space-bar thumb is starting to get an unnatural >twitch, from hitting it multiple times at the beginning of every line of >code. :-) Your options are almost unco

Re: [Zope] Zope startup error: Archetypes: IndexError: list index out of range

2005-09-02 Thread Dieter Maurer
Paul Sue wrote at 2005-9-1 18:38 -0700: > ... > File "/usr/local/lib/python2.3/inspect.py", line 751, in getframeinfo >lines, lnum = findsource(frame) > File "/usr/local/lib/python2.3/inspect.py", line 435, in findsource >if pat.match(lines[lnum]): break >IndexError: list index out of ran

Re: [Zope] Re: Zope scalabilty and problems

2005-09-02 Thread Dieter Maurer
michael nt milne wrote at 2005-9-2 09:13 -0400: >I am setting up sites using Plone and am concerned to read some of the >comments on it. Is it really that bad performance wise? No, it is not. It is just that the CMF is unable to fix a year long bug which affects Windows only when Zope is run in d