Questions tagged [plone-4.x]

Plone is a open source content management system developed in the Python which is used to create the any kind of website, including blogs, internet sites, webshops and internal websites. This tag is related to the Plone's version 4.0.

Plone runs on the Zope application server, which is written in Python. Plone by default stores all information in Zope's built-in transactional object database (ZODB). It comes with installers for Windows, Mac OS X, and Linux, along with other operating systems.

New updates are released regularly on Plone's website. Plone is available in over 35 languages. Since version 4.0, it claims conformance to (the now outdated) WCAG 1.0 AA and U.S. section 508, which allows people with disabilities to properly access and use Plone. An update to make Plone conform to WCAG 2.0 has been planned.

A major part of Plone is its use of skins and themes. When working with Plone, templates can be used to customize a website's look. These templates are written with Cascading Style Sheets. In addition, Plone comes with a user management system called Pluggable Authentication Service. Introduced in Plone 2.5, "PAS" is used to properly sort actions from different users to their respective folders or accounts.

PAS is also used to search for users and groups in Plone. Most importantly, PAS covers the security involved for users, requiring authentication in order to login to Plone. This gives users an increase in both security and organization with their content. A large part of Plone's changes have come from its community. Since Plone is open source, the members of the Plone community regularly make alterations or add-ons to Plone's interface, and make these changes available to the rest of the community via Plone's website.

Here is more tutorial.

254 questions
28
votes
1 answer

Can Plone search be configured to see portlet content?

I just now realized that Plone search doesn't "see" content that is in portlets, after adding about a million static text portlets to a new website. Is there anyway it can be configured to access that content also? Test example, search for "Gwynn"…
feesh
  • 1,248
  • 8
  • 14
8
votes
1 answer

Plone: collective.transmogrifier.sections.constructor doesn't write objects while importing

I'm almost successful in my efforts to transfer an excerpt of my ZODB (a small subset of folders, including resources taken from other folders) to another Plone instance; the showstopper is: during import, my objects are not written. Here is my…
Tobias
  • 2,481
  • 3
  • 26
  • 38
7
votes
5 answers

Find requirement specs in a Plone buildout setup

I have a Plone site (something around 4.2.4, telling from a version.txt in the root directory) which I'd like to update to a recent version (I found this how-to) (as of now, 4.3.4); I have inherited a plethora of pinned versions which are not…
Tobias
  • 2,481
  • 3
  • 26
  • 38
5
votes
1 answer

Plone: Notify a user on deleting his account

Using a subscriber on IPrincipalDeletedEvent is not a solution because the user is already deleted and I can't get his email address.
GhitaB
  • 3,275
  • 3
  • 33
  • 62
5
votes
2 answers

How I order behavior IDublinCore in Dexterity Type?

I'm writing a product using Python Dexterity Type, and I have Title and Description, this fields come from a behavior plone.app.dexterity.behaviors.metadata.IDublinCore, but I neeed reorder this fields with my fields. Example: My fields: document,…
Juliano Araújo
  • 3,548
  • 1
  • 11
  • 16
4
votes
2 answers

Plone message facility to tell users about maintenance downtime

How would I tell the (anonymous, or authenticated) users of my Plone site about a scheduled maintenance downtime? I think of a "flash message" (like those "Your changes have been saved" messages) which is shown to every user exactly once (until…
Tobias
  • 2,481
  • 3
  • 26
  • 38
4
votes
2 answers

Is there any way to attach the current data (as a .csv file) in PloneFormGen to a mailer?

We use PloneFormGen 1.7.12 using Plone 4.3.3. I have a request to include the current data in the email that the form is sending. We normally give editors access to the data to download, but the people he wants to send these to are not editors and…
Joe Bigler
  • 179
  • 1
  • 8
4
votes
2 answers

Linking to a "File type" Dexterity Content Type

We're creating a database of files on a new Plone 4.3.2 website, using eea.facetednav as the main interface. In order to have multiple searchable "tags" plus additional information like publish year, article type, etc etc, we've created custom…
feesh
  • 1,248
  • 8
  • 14
3
votes
1 answer

Do links on Plone update if you move images or target pages? (4.3.4.1)

Plone 4.3.4.1 is pretty smart. However, I built up my personal Plone site without organizing where I upload the images to, etc. Can I move images and documents to subfolders, etc, and still have images that work and aren't broken? Thanks in advance!
3
votes
1 answer

My Archetypes-based content type can't be added

I'm developing an add-on package which introduces a few Archetypes-based content types; these are defined in the default profile of that package. After (re-) installing my package in the Quick-Installer, I can see my types in the types tool; but I…
Tobias
  • 2,481
  • 3
  • 26
  • 38
3
votes
1 answer

Plone: dexterity content type default view template

I created a new dexterity content type (named Report) using schema interface. Also I defined a custom view having a template report_view.pt. I need some content from the original/default template to use in my custom template. Where can I find the…
GhitaB
  • 3,275
  • 3
  • 33
  • 62
3
votes
1 answer

Refresh non-index metadata in a Plone ZCatalog

Zope catalogs contain catalog objects with index attributes (for use as query arguments) and metadata attributes (available when accessing the search result). For index attributes, there is the possibility of reindexing for cases when the…
Tobias
  • 2,481
  • 3
  • 26
  • 38
3
votes
1 answer

Plone: Froze state changing for an object (conditioned)

Is it possible to froze state changing for an given object based on a condition? What I have: meetings (like events) subscribers (participants in meetings) the subscribers can be approved or not What I need: the subscribers of old meetings to…
GhitaB
  • 3,275
  • 3
  • 33
  • 62
3
votes
1 answer

Plone 4: Customize News Item as folder

How can I customize News Item content type to behave like a folder (accept files, folders as children)? /portal_types/News%20Item/manage_propertiesForm Changing Allowed content types seems to have no effect.
GhitaB
  • 3,275
  • 3
  • 33
  • 62
3
votes
1 answer

Plone 4 - get type of authenticated user

I have users registered on the website and users that are logging in using an external account (plone.app.ldap is used). How can I get the type of logged in user? membership = getToolByName(self.context, 'portal_membership') authenticated_user =…
GhitaB
  • 3,275
  • 3
  • 33
  • 62
1
2 3
16 17