Changes between Version 13 and Version 14 of qPloneComments
- Timestamp:
- Jun 1, 2010 9:13:32 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
qPloneComments
v13 v14 72 72 == FAQ == 73 73 74 '''Question :'''74 '''Question''' 75 75 Where the e-mail addresses are stored when they are turned on as required? Can you clarify how this works with the e-mail addresses collected in the qPloneComments form. My use case is essentially that I occasionally need to enable site managers to respond via e-mail to the comment authors. 76 76 77 '''Answer :'''77 '''Answer''' 78 78 79 79 Plone still utilizes the !DiscussionItem from CMFDefault. qPloneComments extends it as a regular !PropertyManager. You can traverse to the comment in question and find all added attributes in properties sheet: 80 80 81 /Plone/[a_document]/talkback/[comment_id]/manage_propertiesForm 81 {{{ 82 /Plone/[a_document]/talkback/[comment_id]/manage_propertiesForm 83 }}} 82 84 83 85 Inside your script you can use getProperty method to get the property from a !PropertyManager based object (you can check out the !PropertyManager interface in source or with !DocFinderTab).