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.
1
vote
0answers
34 views
best practices for image uploading path in Plone?
This might be more of a user question rather than a developer question. but developers should be able to offer insights.
For the person creating and editing content, what's the best practice for ...
0
votes
1answer
19 views
Instantiate a “grok view” with the parameters self.context and self.request in another grok view
I have a site product with a code like this:
class AClass(grok.View):
""" Code of AClass """
pass
class BClass(AClass):
""" Code of BClass with 'update' method defined """
pass
...
1
vote
0answers
17 views
Make new user data (collective.example.data) visible
I followed the collective.examples.userdata directive to add fields to member and I works very fine.
The new infos are well stored and visible in the @@personal-information but now I'd like to go to ...
0
votes
2answers
20 views
How to add META tags in Plone custom content template
I have a Plone 4.2 customized home page template (view.pt) that is missing META tags which appear in the (main_template.pt). I've added the entire section from main_template.pt to the same place in ...
0
votes
1answer
42 views
How to import an existing Plone-based site to a new Ubuntu server
I am new to Plone framework. All I need to do might seem quite simple but I need some guidance.
I obtained files of an existing Plone-based site and want to integrate into a new Ubuntu computer. Here ...
4
votes
3answers
1k views
Custom edit views in Plone 4
I have created a custom content-type (Resume) and I wish to provide a custom 'edit' view. My use-case is very simple, I simply want to show an HTML "disclaimer" box before the edit form.
First of all ...
2
votes
1answer
184 views
How do I render an Archetypes widget in 'edit' mode in a BrowserView?
I would like to render Plone Archetypes widgets in 'edit' mode in a Products.Five.browser.BrowserView but it seems there is a lot of setup for templates in skins layers that is absent from ...
0
votes
1answer
36 views
How to migrate plone 4.2 from debian squeez to wheezy
I have a plone 4.2 instance in debian squeeze. Now I am trying to migrate it to a new server running wheezy: copy the plone directory from squeeze to wheezy--> run 'plonectl start'. It fails and error ...
0
votes
0answers
36 views
Plone email harvesting protection
Setting up a Plone 4.3 website, I'm struggling to understand how the built-in email protection against harversting works.
Using the products FacultyStaffDirectory, the addresses are shown in plain ...
0
votes
1answer
33 views
How to customize dexterity-through-the-web-content view?
I created a content in my Plone 4.3 site (no grok here) with the very nice Dexterity through-the-web editor. Now I'd like to customize the default view for this content.
I've read Martn Aspelli's ...
0
votes
0answers
23 views
Plone: Page Redirection after Transition using Workflow Script
I have a Dexterity content type and after I change its state or transition it to another state,I want the page to redirect to a specified URL. So I added a script on the workflow, and trigger it after ...
3
votes
1answer
64 views
How to create a new contenttreewidget for z3cform
I'm trying to override the widget used for relateditems (dexterity so z3cform) which is the from plone.formwidget.contenttree.widget import MultiContentTreeWidget
The issue I have is I don't ...
0
votes
0answers
24 views
Python script to get contents of personal-preferences field in Plone
I have a custom registration and @@personal-preferences page in my Plone 4 site, it has a few extra fields such as an area for people to paste their social networking links and what their company ...
0
votes
2answers
305 views
How to list all groups members of a ldap group?
I have Plone 3 with LDAP, I have a lot of groups and users in it. I would like to get all groups members for a specific group.
groupe_id = "mygroup"
gtool = getToolByName(self, 'portal_groups')
group ...
3
votes
3answers
137 views
Plone Dexterity RelationChoice widget clashes with jQueryUI?
A RelationChoice widget in my custom type works fine until collective.js.jqueryui autocomplete is enabled and then it stops working ie stops doing relation lookups; nothing happens when you type in ...
1
vote
1answer
40 views
Override the main_template.pt without z3c.jbot
I want to override the original main_template of Plone without using z3c.jbot, only using ZCML directives (browser:page?).
Is there a way to override a default Plone4 template only using ZCML?
1
vote
2answers
95 views
User edits only its own post.Using Plone permisisons
I have a Plone website and create a menu item.
In the sharing tab I add each user that can post a topic.
How can I prevent that user1 edits posts owned by user2? Currently user1 can edit user2 ...
2
votes
1answer
42 views
How can I override an already overriden template by jbot?
I'm making a Plone theme that uses plonetheme.bootstrap as base skins.
I want to customize the portaltab viewlet, so I use plone.app.themeplugin's override plugin and add my ...
1
vote
1answer
37 views
What are the differences between .cpt templates and .pt templates?
What are the differences between .cpt templates and .pt templates in Plone? Are there any?
0
votes
1answer
23 views
collective.data.examples custom field wont save data
This is a continuation from this question.
I have used collective.examples.userdata
and successfully added a 'Position' text field to my User registration form. My problem is that when I go to my ...
0
votes
2answers
44 views
give each table a new id using zpt
So i'm using the tal:repeat statement to generate tables inside another table.
Sadly I do not know how to give each table an unique id when generated. How can I do this?
I'm trying to use:
...
0
votes
1answer
70 views
Install plone add-on from source, instructions for complete newbie?
Could anyone explain how to install the module below in a plone install?
I tried for 2 hours to no avail.
https://github.com/collective/collective.xmpp.chat
The instructions are too vague for a ...
0
votes
1answer
40 views
Selectively enabling Chameleon page templates on Plone
Reading https://pypi.python.org/pypi/five.pt/2.2.1
To enable Chameleon, configure the package using ZCML:
<include package="five.pt" />
Are Chameleon templates enabled per-package or ...
0
votes
2answers
32 views
Traceback when viewing @@personal-information page after following collective.userdata.examples Plone 4
I have been following collective.examples.userdata in a Plone 4 site in an attempt to add more fields to the /@@personal-information page.
I am looking to add the following fields (all will be text ...
1
vote
1answer
48 views
TinyMCE Toolbar Missing After Plone 4.3 Upgrade
I upgrade a Plone site from 4.2 to 4.3. The upgrade steps are basically:
running install.sh to have a 4.3 environment
copy Data.fs to var/filestorage and custom dexterity package to src
running ...
1
vote
1answer
19 views
Plone 4.2 formwidget contenttree permissions
I have a dexterity content type in Plone 4.2.4, that uses the contenttree widget to manage referenced objects, but only in the editForm.
I realized, that the referenced items had to be ...
0
votes
0answers
28 views
I want to add captcha in Plone login form
I am trying to add Captcha code in Plone login form. So by default in my plone site i am using quintagroup.plonecaptchas to provide the captcha solution.
So in my login form i added the captcha macro ...
4
votes
2answers
41 views
What are the differences among PloneTestCase, plone.testing and plone.app.testing packages?
What are the differences among PloneTestCase, plone.testing and plone.app.testing packages?
By the way, is PloneTestCase not recommended for testing new Plone 4 products?
1
vote
3answers
36 views
Hiding “personal preferences tab” in plone user preferencias
Plone user preferences has 3 tabs: "Personal information", "Personal preferences" and "Password". I want to hide the "Personal preferences" tab because I don't want that the user changes/sees the ...
1
vote
1answer
34 views
Allow Anonymous users to search for plone Members
I'm trying to allow Anonymous users to search for plone Members. I got it to work setting the Anonymous role to have "Manage Users" permission, which is not appropriate, of course. Is there a more ...
2
votes
0answers
57 views
Plone 4.2 TinyMCE jQuery UI Dialog
I am currently writing a replacement for the plone dialog infrastructure. Mostly for personal use and fun, but available on github as collective.js.jqueryuidialog.
Currently I'm struggling to manage ...
1
vote
1answer
43 views
get the index of a tal:repeat in another tal:repeat function
As you can see I have 3 lists: Procedur_Headers, Diagnoses and List_Procedur.
Procedur_headers gives the headers of my tabels,
Diagnoses gives the specific id of a procedure and
List_Procedur is a ...
3
votes
1answer
391 views
Why Plone 3 sets language cookie to CSS & JS registry files and how to get rid off it?
Plone 3.3.5, LinguaPlone and Products.CacheSetup installed.
Language cookie set for portal_css and portal_javascript files
HTTP/1.1 200 OK
Server: Zope/(unreleased version, python 2.4.5, ...
6
votes
15answers
853 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 ...
2
votes
2answers
35 views
Creating a working copy for Plone 4 custom content types
I have created a custom Plone content type in my package i.e. my.product.
I am in need of integrating a working copy support: so that a "published" document (in my case, a published content type) ...
1
vote
1answer
76 views
wftool.doActionFor does not trigger a content rule
I have setup a content rule that gets triggered when I change the state of a dexterity object through the web interface, but when I change the state programmatically the content rule is not triggered.
...
0
votes
1answer
21 views
bika.lims-3.0rc2.3-py2.7.egg ImportError: could not import gobject
I am trying to start Plone after installing Bika LIMS but am getting the following error:
ImportError: could not import gobject (error was: ImportError('When using gi.repository you must not import ...
1
vote
1answer
30 views
How is zope 3 view security handled in Plone
When one registers a view in ZCML like:
<browser:page
for="*"
name="reporter"
class=".reporter.report_form_frame"
permission="cmf.SetOwnPassword"
/>
In which point of ...
2
votes
1answer
46 views
Plone 4.3 and transmogrifier installation
I am trying to migrate content from old 3.x Plone installation to new Plone 4.3 instance. Both are running on windows platforms.
In new 4.3 installation I am trying to install ...
0
votes
1answer
37 views
Missing Plone 4.3 resource: bbb-kss.css
This isn't an error, per se, but I saw it on a shiny new install of Plone 4.3 and couldn't find anything on Google about it. Is this normal? Is the link incorrect? Will this affect anything? Thanks. ...
0
votes
1answer
26 views
A widget picking items from a very long list in Plone
I have a z3c.form based form where there is one ordered selection list with few possible choices to be chosen from very, very, large set.
Does there exist any special widget for such purpose in Plone ...
0
votes
1answer
35 views
how to change password for admin in plone 4.3
I'm using Plone 4.3 in Windows 2008 with IIS.
Not like visions before Plone 4.3, like Plone 4.1.5, I can change password for "admin" in ZMI manage Pages: /acl_users/users.
In Plone 4.3 I cannot find ...
1
vote
0answers
29 views
plone: read-only filesystem - can't edit contents
due to a recent lack of space on the virtual machine (solved already) where I run Plone, the file system got locked by the OS (Suse Linux Enterprise) to read only mode. Since then I can't edit any ...
1
vote
2answers
126 views
Plone: Email contents in content rule action
I have a Plone site configured with PloneFormGen. I'm using a save-data-to-content adapter to create a page for each submission, with a unique number for title/id. I have content rules set up so that ...
0
votes
1answer
29 views
How to translate i18n Plone actions.xml
How can I use/translate the (url_expr/available_expr) in actions.xml?
My usual way was to make a seperate "object" for each language:
<object name="contact" meta_type="CMF Action" ...
0
votes
1answer
59 views
Migrating a plone site to dot net
We have a Plone site whose data is stored in PostGresql using Relstorage. Now we are looking to migrate the site to Dot Net.
My question is: how can we migrate data from the Plone site to sql server ...
0
votes
1answer
62 views
Webfont not working in Internet Explorer
I'm using a webfont which is hosted by fonts.com. It renders normally in Chrome, Firefox, Safari, but not in any version of Internet Explorer. Even IE10 is not rendering it.
The project runs with ...
2
votes
1answer
60 views
Plone 4.3 migration - AttributeError: type object 'IIntIds' has no attribute '__iro__'
After migrating Plone 4.1 + Dexterity site to Plone 4.3 site's /manage_workspace becomes inaccessible. Database migration cannot be performed.
The ZMI root can be still accessed.
Traceback ...
2
votes
0answers
54 views
content type with a variable amount of elements
I have posted this question to the plone user mailing list as well, so I hope nobody minds that, especially since it is nothing I have hidden.
Since my question is hard to put into a generic ...
1
vote
1answer
32 views
Adding an event notifier, preferred practice
I want to have an event fired on plone.app.blob.field.BlobField.index_html so that I can set up a subscriber to listen for it. The subscriber is no problem but obviously plone.app.blob is not my code, ...
