Tagged Questions

Zope is an open source application server written in the Python programming language. It features a transactional object database (ZODB) which can store not only content and custom data, but also dynamic HTML templates, scripts, a search engine, and relational database (RDBMS) connections and code. It features a strong through-the-web development model, allowing you to update your web site from anywhere made possible by a tightly integrated security model.

learn more… | top users | synonyms

10
votes
7answers
4k views

What could justify the complexity of Plone?

Plone is very complex. Zope2, Zope3, Five, ZCML, ZODB, ZEO, a whole bunch of acronyms and abbreviations. It's hard to begin and the current state seems to be undecided. It is mainly based on Zope2, ...
9
votes
5answers
357 views

What is the suggested way to cron-automate ZODB packs for a production Plone instance?

Looking at plone.org to find a way to periodically pack my instance's ZODB I could only find http://plone.org/documentation/faq/how-do-i-pack-the-zodb that doesn't talk about automated packs, but just ...
9
votes
5answers
4k views

Multiple versions of Python on OS X Leopard

I currently have multiple versions of Python installed on my Mac, the one that came with it, a version I downloaded recently from python.org, an older version used to run Zope locally and another ...
8
votes
13answers
964 views

How do you grep through code that lives in many different directories?

I'm working on a Python program that makes heavy use of eggs (Plone). That means there are 198 directories full of Python code I might want to search through while debugging. Is there a good way to ...
8
votes
7answers
5k views

Does anyone know about workflow frameworks/libraries in Python?

I'm searching for a workflow library/framework for Python. I'm astonished that there I cannot find anything which is simple and not attached to Zope/Plone. Does anyone know of an open-source, simple ...
7
votes
1answer
236 views

how do I get configuration from buildout in my plone products?

How do I include configuration information from Buildout in my Plone products? One of the plone products i'm working on reads and writes info to and from the filesystem. It currently does that inside ...
7
votes
4answers
168 views

Error notification on plone 4

I just want to have email notification when an error is declared in plone 4. Any ideas of product or any "how-to" ? Thanks
7
votes
3answers
146 views

Limiting one Content item per Member in a Folder on Plone 4

I have created a custom Archetypes content type called "Résumé" and would like to enforce a limitation that lets a Member add only one item of this type inside a folder. Even better would be ...
7
votes
4answers
1k views

Purpose of Zope Interfaces?

I have started using Zope interfaces in my code, and as of now, they are really only documentation. I use them to specify what attributes the class should possess, explicitly implement them in the ...
6
votes
2answers
130 views

Where can I find Plone 4.1 wsgi config examples?

While Zope 2.13 have native wsgi support, I haven't been able to find any documentation/deployment tutorial/article/blog yet. Would anyone point/post a working example ?
6
votes
2answers
2k views

How do you get and set cookies in Zope and Plone?

Documentation, and more importantly, some code examples would be very useful. I would prefer this to not be in protected scripts, but in the code that goes into modern packages.
6
votes
4answers
464 views

Dump stacktraces of all active Threads

I'm trying to dump a list of all active threads including the current stack of each. I can get a list of all threads using threading.enumerate(), but i can't figure out a way to get to the stack from ...
5
votes
3answers
135 views

Using Workflow to implement a quota

Need guidance on best practice for implementing a simple quota system I'd like to limit the number of times a Member can add a custom content type (called Token) to their Member Folder (I've also ...
5
votes
3answers
201 views

Is is necessary to keep data.fs.old after packing?

My data.fs was 500mb, I packed it then backed up data.fs (100mb). My hosting account is only 500mb, so I am wondering if it is safe to delete data.fs.old (500mb)?
5
votes
3answers
1k views

Django vs. Grok / Zope3 vs. Pylons

I am a computer programmer by training but have been away from web development for a while. I am doing a little bit of background research on various Python web development frameworks. I understand ...
5
votes
6answers
1k views

Understanding Zope internals, from Django eyes

Note: This is not a post regarding which is better, zope or django? Its about understanding zope internals/architecture, when compared to Django's I am a newbee to zope and I previously worked on ...
5
votes
4answers
1k views

What is the correct way to backup ZODB blobs?

I am using plone.app.blob to store large ZODB objects in a blobstorage directory. This reduces size pressure on Data.fs but I have not been able to find any advice on backing up this data. I am ...
5
votes
4answers
1k views

Split HTML after N words in python

Is there any way to split a long string of HTML after N words? Obviously I could use: ' '.join(foo.split(' ')[:n]) to get the first n words of a plain text string, but that might split in the ...
5
votes
1answer
318 views

How do you programmatically reorder children of an ATFolder subclass?

I have Plone product that uses a custom folder type for containing a set of custom content objects. The folder type was created by subclassing BaseFolder and it has a schema with a couple of text ...
4
votes
1answer
88 views

How to add a css class to a z3c.form button

I want to add the css class allowMultiSubmit to a zrc.form button to avoid multi-submit alert. The button is defined like this: from z3c.form import form from plone.app.z3cform.layout import ...
4
votes
1answer
113 views

A lot fewer versions picked in plone 4.1 goodpy as compared to plone 4.1rc3

Please can someone explain to me why there are a lot fewer versions picked for Plone 4.1 final on goodpy as for Plone 4.1rc3. With Plone 4.1 final there are a lot of unpicked versions. Most appear ...
4
votes
2answers
121 views

What is the maximum number of sites in Plone 4.1

I would like to know how many sites / virtual hosts are allowed in a single installation of Plone. I am currently using a zeocluster installation. I am interested in the theoretical maximum i.e. ...
4
votes
3answers
211 views

ComponentLookupError when querying the Registry at startup time

I'm building an app that queries some data in an external relational database, using collective.lead (trunk). The user can modify the database connection settings in a custom Plone control panel tool ...
4
votes
2answers
158 views

Cannot update zope.schema in Plone

Very new to setting up Plone 4 and trying to integrate Solgema.fullcalendar but when running buildout I get an error saying it needs zope.schema 3.6.0 and I have 3.5.4. I cannot for the life of me ...
4
votes
2answers
145 views

Where can I see who is currently logged in to Plone?

Is there a way to see who is currently logged in to a Plone site? Rationale: I want to make sure not to interfer with users working on content when I restart the instance. Thanks, fbmd
4
votes
1answer
96 views

How do you make an object/tool appear under Plone on the left navigation frame in the ZMI?

I would like my object to show up under the Plone site on the left navigation frame in the ZMI. Could not find an obvious way to do this. How can I accomplish this?
4
votes
2answers
100 views

What is behind python package namespaces: z3c, zc, collective?

So they all are somehow related to zope. Question is how? I am not familiar with Zope. I guess that zc, z3c stand for Zope Component and Zope3 Component but I want to be sure. Also there is a ...
4
votes
2answers
198 views

What is the difference between the various ZODB blobstorage layouts?

The ZODB blobstorage directory contains a .layout file with the string 'lawn', 'bushy'. What is the difference between the various blob storage directory formats?
4
votes
3answers
356 views

Get stacktrace from stuck python process

I have to run a legacy Zope2 website and have some grievance with it. The biggest issue is that, occasionally, it just locks up, running at 100% CPU load and not answering to requests anymore. While ...
4
votes
3answers
3k views

grok vs. django comparison

What are the smashing (pun intended) features of grok that makes it better than django? how do I know when my project needs grok+zope, or it can just be developed with django ?
4
votes
3answers
527 views

Exporting a zope folder with python

We have two zope servers running our company's internal site. One is the live site and one is the dev site. I'm working on writing a python script that moves everything from the dev server to the ...
4
votes
6answers
550 views

What are the Zope essentials?

I started a job where Zope is involved. I know Python and my new Boss think I am going to handle the application server quickly. I had a look to this system and it's obviously very complex, so I'd ...
3
votes
1answer
50 views

How to make Buildout to leave temporary files around for debugging

When running bin/buildout I get Develop: '/fast/vs/zinstance/src/plonetheme.x' Develop: '/fast/vs/zinstance/src/x.content' Develop: '/fast/vs/zinstance/src/x.puhelinluettelo' Updating zope2. Updating ...
3
votes
1answer
106 views

Profiling Plone/Zope

What is current best practice for profiling Plone/Zope applications on a Plone 4.1/Zope 2.13 system? Products.ZopeProfiler and the Plone.org version of CallProfiler both fail at install time with: ...
3
votes
1answer
86 views

Event handlers base on user action in Plone

I want to do something programatically when user is created. When user Is there any specific event to subscribe to ? It'd be great if I can do: <subscriber for="IUserRegisteredEvent" ...
3
votes
0answers
61 views

ZCML allowed_attributes corresponding method in five.grok

Is there a way to mark methods traversable in grok.CodeView classes, like you can do with Zope 3 BrowserView and allowed_attributes ZCML configuration directive? I found docs about ...
3
votes
1answer
64 views

how to set the sharing rights of a folder in Plone?

I want to set sharing rights of many folders using Python script in a Plone site. Please give me some guide. Thanks!
3
votes
2answers
93 views

ZODB in-memory backend?

I'm currently working on a fairy large project (active members is about hundreds K) and was strongly lean to Plone solutions. I've asked some questions related to it like here and here. Got some ...
3
votes
4answers
127 views

Best way to count page view in Plone

I'm working in a case require fairy complex use of page views. Each content object will have page view, and this should be accessed easily so that we can do various things related to it (sorted on ...
3
votes
1answer
74 views

How can I use zope 3 / ztk layers without having a zope 2 skin layer in Plone 4?

We're trying to develop our Plone 4.1 product using only ZTK (Zope 3) views and hence haven't defined a portal skin. I'm trying to override a view from a different package and in the past have used ...
3
votes
1answer
105 views

Streaming Zope HTTP responses with proxy views

I am using the following PLone + urllib code to proxy responses from another server through a BrowserView req = urllib2.Request(full_url) try: # Important or if the remote server is ...
3
votes
3answers
202 views

Redefining security for a browser view in Plone 4

I'd like to redefine security for the stock folder_contents browser View so that only members with the Reviewer role have access to it. The class is defined in ...
3
votes
2answers
64 views

How to search for ZCatalog object names

I want to Search for an Object name. If i have this Structure: /de/myspace/media/justAnotherPdf.pdf Then i want to Search for the name "justAnotherPdf" to find it or something like "justAnot" I have ...
3
votes
1answer
83 views

How to set values of a Plone autoform in update methode with ignoreContext = True

I'm trying to make a form where I'm storing values outside of the context. Storing is done and working well but now I would like the update method to fill the form on rendering process. So I'm ...
3
votes
2answers
154 views

How to modify a z3c form field in updateWidgets?

I am trying to dynamically update a form field based on a variable that is included in a HTTP get variable. Specifically www.site.com/form?id=name. I want to pull the 'id' field from the url and ...
3
votes
4answers
170 views

How do I trigger portal_quickinstaller.reinstallProducts form outside the Plone Site?

We're running a Zope server with an eventually large-ish number of Plone (4) sites. Every now and then, an extension product update comes along and requires a re-install to pick up changes in the ...
3
votes
0answers
169 views

good-py.appspot.com mirror blocked in China? [closed]

According to IRC report, good-py.appspot.com service may be blocked in China. This makes Plone / Zope development somewhat troublesome. Is it possible to set-up mirror/proxy for this service easily? ...
3
votes
1answer
131 views

“Update security settings” in portal_workflow triggers catalog metadata update unnecessarily?

Plone 3.3.5: We have a middle sized Plone site and we'd like to update its workflows. Since it's a long-running process we noticed something strange going on. Our Archetypes accessors, not security ...
3
votes
3answers
194 views

When to use nocall on my tal:condition?

I know that for performance it's good practice to use nocall on a <tal:condition> in order to avoid calling an object. Would appreciate (links to) a bit of background as this sounds a little ...
3
votes
1answer
81 views

Mass import/export translations on Plone (XLIFF)?

There are some XLIFF translation products http://svn.plone.org/svn/collective/Products.XLIFFMarshall/trunk/Products/XLIFFMarshall/ https://svn.plone.org/svn/collective/slc.xliff/trunk/slc/xliff/ ...

1 2 3 4 5