Background: The working copy behaviour is not really supported for container types as it leads to problems copying all the children of that folder. We're working round that by using child data types for our container types: Almost all data about the container is stored in a data object that is a child object of that container and its default view. We exclude the data objects from listings and search.

Problem: This leads to an inconsistency where currently we have to give the dublin core behaviour to the container type, not the data type, because all the core Plone code expects description, effective date etc to be there. This is slightly confusing for our Plone editors as they have two places to edit data about the container. This data can also only be edited on the live version, rather than a checked out working copy.

What I'd like to be able to do is:

  • delegate any requests for dublin core data from the container to the child data object (no idea where to start on this)
  • on saving the container it will use the child data dublin core data for its meta data in the catalog (this should just work if the first part is working)
  • on saving the child data it will reindex its parent object to update its meta data (I was planning on registering an event to achieve this)

Please can someone provide me with some pointers on how to achieve this first part?

link|improve this question

Very interesting question! I'd love if you'd follow up with a working solution, if you arrive at one. – FMM Jan 6 at 16:53
feedback

1 Answer

I think you have two options here:

  1. Make your own metadata behavior that looks up metadata on the data object.

  2. Simply update the parent's metadata in an event handler when the data object is modified.

Given you'll need the event handler to force the parent reindex anyway, I'd probably go with the simple copying of metadata approach.

link|improve this answer
I spent quite a few hours trying approach 1. today but got a bit lost and gave up. Hadn't thought of approach 2. but looks promising. Ideally I'd hide the parent's metadata fields from the editing UI. – scarba05 Jul 7 '11 at 21:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.