Changes between Version 16 and Version 17 of qPloneComments
- Timestamp:
- Sep 14, 2010 12:20:13 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
qPloneComments
v16 v17 6 6 7 7 * Home page - http://quintagroup.com/services/plone-development/products/plone-comments 8 * Repository - http://svn.quintagroup.com/products/quintagroup.plonecomments /8 * Repository - http://svn.quintagroup.com/products/quintagroup.plonecomments 9 9 * Releases - http://plone.org/products/plone-comments/releases 10 10 * Screencasts: … … 24 24 * Article author can be notified about new comment after the approval by reviewer 25 25 * List of recent comments for more comfortable moderation 26 * qPloneCaptcha integrated (needs the qPloneCaptcha to be installed)26 * Integration with Plone Captchas 27 27 28 28 Comments moderation is implemented with involvement of two stage workflow. Comments are created in "private" state and visible only to '''Discussion Manager''' group of users. … … 34 34 == Installation == 35 35 36 === Plone 3, 4 Buildout ===36 === Plone 3, 4 buildout === 37 37 38 38 If you are using buildout to manage your project, you can do this: 39 39 40 * Add quintagroup.plonecomments to the list of eggs to install , e.g.:40 * Add quintagroup.plonecomments to the list of eggs to install in the buildout.cfg file: 41 41 {{{ 42 42 [buildout] … … 47 47 }}} 48 48 49 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug for this product: add quintagroup.plonecomments to zcml area:49 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug for this product: add quintagroup.plonecomments and quintagroup.plonecomments-overrides to zcml area of a buildout.cfg file: 50 50 51 51 {{{ … … 58 58 }}} 59 59 60 * Re-run buildout , e.g.with:60 * Re-run buildout with: 61 61 62 62 {{{ … … 64 64 }}} 65 65 66 * Restart the Zope server , for example,with the following command in the terminal:66 * Restart the Zope server with the following command in the terminal: 67 67 68 68 {{{ … … 70 70 }}} 71 71 72 * Install quintagroup.plonecomments via ZMI portal_setup. Select quintagroup.plonecomments from the list of available profiles and press Import all steps.72 * Install quintagroup.plonecomments via ZMI portal_setup. Select '''quintagroup.plonecomments''' from the list of available profiles and press '''Import all steps'''. 73 73 74 {{{ 75 Atention: If you are using a Plone version before 3.1 you need to install "plone.browserlayer":http://pypi.python.org/pypi/plone.browserlayer (which also requires a "GenericSetup":http://pypi.python.org/pypi/Products.GenericSetup version greater than 1.4) in your Plone site. It shows up as Local browser layer support in the Plone Add-on Products Control Panel. 76 }}} 74 '''Atention: If you are using a Plone version before 3.1 you need to install [http://pypi.python.org/pypi/plone.browserlayer plone.browserlayer]: (which also requires a [http://pypi.python.org/pypi/Products.GenericSetup GenericSetup] version greater than 1.4) in your Plone site. It shows up as Local browser layer support in the Plone Add-on Products Control Panel.''' 77 75 78 76 === Traditional Zope 2 Instance === … … 93 91 $ ./bin/zopectl restart 94 92 }}} 93 * Install quintagroup.plonecomments via ZMI portal_setup. Select '''quintagroup.plonecomments''' from the list of available profiles and press '''Import all steps'''. 95 94 96 95 == Uninstallation == 97 96 98 * To uninstall quintagroup.plonecomments - select quintagroup.plonecomments uninstall profile from the list of available profiles and press Import all steps.97 * To uninstall quintagroup.plonecomments - select '''quintagroup.plonecomments uninstall''' profile from the list of available profiles and press '''Import all steps'''. 99 98 100 == Product Management==99 == Usage == 101 100 102 After installation of Plone Comments, a new item appears under ''Add-on Product Configuration'': '''qPloneComments''':101 After Plone Comments installation in Plone, a new item appears under ''Add-on Product Configuration'': '''qPloneComments''': 103 102 104 [[Image(site-setup.png, nolink)]]103 [[Image(site-setup.png, nolink)]] 105 104 106 qPloneComments configuration window consists of 2 Configlets:105 PloneComments configuration window consists of 2 Configlets: 107 106 108 '''1. Configure qPloneComments'''107 '''1. Configure qPloneComments''' 109 108 110 [[Image(configure.png, nolink)]]109 [[Image(configure.png, nolink)]] 111 110 112 it allows:111 it allows: 113 112 * Turning on/off Moderation 114 113 * Turning on/off Manager notification … … 118 117 * Configure notification subject 119 118 120 '''2. Recent comments moderation'''119 '''2. Recent comments moderation''' 121 120 122 [[Image(recent.png, nolink)]]121 [[Image(recent.png, nolink)]] 123 122 124 Includes a list of recent comments for more comfortable moderation. It is possible to see all the recent comment activity and publish or delete comments all together.123 Includes a list of recent comments for more comfortable moderation. It is possible to see all the recent comment activity and publish or delete comments all together. 125 124 126 == Us age ==125 == Use Case == 127 126 128 127 One of possible !UseCases: … … 152 151 153 152 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). 154 155 == Future ==156 * Record and expose commentor IP (will be in one of later releases)