Tagged Questions

Plone is a content management system (CMS) written in Python. Its strengths lie in intranets, websites and document management. It has robust support for multilingual content, versioning and is easy to use.

learn more… | top users | synonyms

12
votes
2answers
339 views

Using git for a project with many, many repos

The Plone project consists of 192 different repos: https://github.com/plone/ During development, sometimes 2 or 4 or 10 different repos will need to be touched to fix a bug or implement a feature. It ...
12
votes
11answers
7k views

Django versus Plone?

I plan to read about Django. Should I go with Django or Plone? What makes Django/Plone better than the other? Edit: From a comment below: I just wanted to know a framework for developing web ...
11
votes
3answers
1k views

Is Plone doing enough to keep up with other CMSes?

I do Drupal for a living and I like the system. However I've always been intrigued by Plone and wanted to learn it well to broad base my knowledge of CMSes in general. I've played around with Plone in ...
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
6answers
2k views

How do I use easy_install and buildout when pypi is down?

I am using buildout to automatically download and setup the many dependencies of my Plone installation. buildout more or less uses easy_install to download and install a bunch of Python eggs. This ...
8
votes
4answers
123 views

Normalizing unicode text to filenames, etc. in Python

Are there any standalonenish solutions for normalizing international unicode text to safe ids and filenames in Python? E.g. turn My International Text: åäö to my-international-text-aao plone.i18n ...
8
votes
3answers
312 views

What are the Dexterity and Archetypes gotchas in Plone 4.1?

In a recent question, toutpt said: Dexterity needs Plone4.1 to play well with archetypes content and have all plone feature (history, diff, lock, ...) I'm thinking of using Dexterity in a ...
8
votes
2answers
595 views

Disable TinyMCE URL Conversions

Greetings - Can anyone tell me how to get TinyMCE to stop converting my URLs to relative links in Plone? For example, if I enter this in the HTML source: <img ...
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
3answers
112 views

Selectively allow unsafe html tags in Plone

I'm searching for a way to put widgets from several services (PicasaWeb, Yahoo Pipes, Delicious bookmarks, etc.) on the community site I host on Plone (currently 3.2.1). I'm looking for a way to allow ...
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
170 views

Is it possible to specify a wildcard in Diazo <notheme if-path=… rule?

If not, can I do this with inline XSLT? And if so, how? I assume it's not possible, based on a search for "wildcard" in the Diazo docs but I wanted to make sure I'm not missing something. This would ...
6
votes
3answers
100 views

How to directly publish only child items of my Container type in Plone?

I have a custom folderish Dexterity content-type in Plone. It can have only Documents as children. I want these documents to be directly published as they are created. I can achieve this easily by ...
6
votes
2answers
207 views

Nested overrides in portal_skins folder

How one could override files in nested portal_skins folder? The default behavior seems to be that you need to copy whole folder structures if you want to override a single file. This is a maintenance ...
6
votes
2answers
462 views

User-friendly error pages from Varnish

We are using Varnish at the front of Plone. In the case Plone goes down or serves an internal error we'd like to show a user-friendly static HTML page which some CSS styling + images. ("The server is ...
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
2answers
74 views

Is there a good reference list for the names of the genericsetup import steps

Is there a comprehensive reference list of the generic setup import step names? The names of generic setup import steps don't always match the names of their corresponding xml files for example ...
5
votes
3answers
167 views

What's the most straightforward way to move the globalnav to the footer, only on the front page

I have hidden various elements of the normal Plone front page via: .section-front-page #portal-globalnav { display: none; } Now, I want to add a globalnav to the bottom near the footer. I've ...
5
votes
3answers
122 views

Raw HTML in body text after importing content using transmorgrifier

I'm using a transmorgrifier recipe to import some data from drupal into a Plone 4.1 based buildout. The buildout is based on https://github.com/claytron/drupal-plone-transmogrifier, (mostly I updated ...
5
votes
2answers
81 views

Plone Folder Restrictions

In Plone, I created a new folder called "Admin" that appears at the top navigation bar. How do I restrict access to this folder so only site administrators will have access to this folder? (and, ...
5
votes
1answer
99 views

How do I add stock portlets (from plone.app.portlets) to my custom portlet manager?

Using the documentation on plone.org along with some in the forum, I was able to get a custom portlet manager below my content in Plone 4.0.8. The goal, actually, is to have 4 custom managers below ...
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
1answer
134 views

How to get the portlet-hash css class for a Calendar portlet assigned for a custom portlet manager?

I'm trying to fix the month navigation of a calendar portlet assigned for a custom portlet manager. This manager is called from a specific browser page template with: <div id="calendar" ...
5
votes
1answer
132 views

Plone sends a link to cached but empty ploneCustom.css

I run three Plone sites on a Plone instance using Plone virtual hosting behind Apache with no caching. On one of them, I keep hitting a css caching issue. The HTML pages are is shipped with a css ...
5
votes
1answer
159 views

How to set the title of a browser page in Plone

I'm trying to find how I can set the title of a browser:page. The main goal is to have it in the drop down "display" menu on my content type. I have take a look in the code of CMFDynamicViewFTI. The ...
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
1answer
393 views

Making TinyMCE image pick dialog point to a default folder on Plone

Plone 4.1. What would be the easiest way to make TinyMCE image picker dialog point to a site default folder (/image-bank) instead of current folder? This + folder display as album would provide a ...
5
votes
1answer
115 views

How to access views defined with a specific [plone.]browserlayer in test cases

I'm new to testing and I'm trying to create a test for my Plone product for the first time. I'm on Plone 3.3. The basic test suite works, I can execute it without errors. I followed this ...
5
votes
6answers
393 views

Can I use z3c.form on Plone portlets instead of zope.formlib?

What modifications do I need to make considering I have a vanilla ZopeSkel plone3_portlet formlib generated package? Ie: From which classes should I inherit? Which hooks must I provide? Can I use ...
5
votes
2answers
827 views

How to output huge dependency relationships diagram of Plone with Graphviz?

I wrote a tool for find dependency relationships behind a Python project. It is Gluttony. I run it on Plone, the result is impressive. I output the diagram with Networkx, and it looks like this: ...
5
votes
11answers
457 views

Essential Plone add-ons?

Plone has some great add-ons, but the downloads section of Plone.org is pretty difficult to sift through. What add-ons would you say are must-haves or particularly good demonstrations of the Plone ...
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 ...
5
votes
5answers
717 views

What is the best way to store big files in Plone 3?

I want to serve a lot of big files in a Plone site. By big files I mean around 5MB (music) and a lot of them. I've already do it straight to the ZODB, not a good idea. I'm running Plone 3.1.1 and Zope ...
4
votes
1answer
60 views

Diazo is only for plone4?

I used xdv for plone 3.x sites, Diazo for plone 4 sites. Diazo is the best for many reasons but I don't understand if it's possible to use it with a plone3.x site. Maybe I need to use Diazo only in ...
4
votes
2answers
73 views

getSectionFromURL.py is now depreciated in Plone 4

I was reading from the Weblion Sprint of 10/2011 that: "However, theming folders below root proved to be somewhat problematic as getSectionFromURL.py is now depreciated in Plone 4." source: ...
4
votes
1answer
58 views

Print / Fullscreen / Email icons

In Plone 2, there were icons for print, fullscreen and email in object views. How do I enable these in Plone 4? They don't seem to be present in a default installation of Plone 4.1, but I must be ...
4
votes
1answer
111 views

API for Plone 4?

I am wondering if Plone 4 has an API. I don't see one documented on api.plone.org. Essentially what I would like to do is pipe content to a Plone page. We have a number of lookup tables in MySQL ...
4
votes
2answers
161 views

How can I rename files with a python script?

On my plone site I have hundreds of files (pdf, doc, ...) in filefield of archetypes objects. Something went wrong during importation and all the filenames are missing. The problem is that when ...
4
votes
1answer
144 views

Making Plone site temporarily static for high traffic peak

We know there is a surge of traffic hitting a Plone site on a certain day. Last time this happened we couldn't crank enough power out of Plone to make it run smoothly. Now I am asking what kind of ...
4
votes
3answers
104 views

Recommended approach for marking a dexterity content type with a new interface

While working on a dexterity based project I needed one of my content types to support collective.quickupload by marking it with the IQuickUploadCapable interface. What I'm currently doing is adding ...
4
votes
2answers
109 views

How light weighted Dexterity-base contenttype can be

I'm trying to write a light weight content type that work similar to Facebook's post. The whole content schema is just a text field. There's no title, description. It must be Contentish and is ...

1 2 3 4 5 15