source: products/quintagroup.seoptimizer/branches/refactoring2.3.0/quintagroup/seoptimizer/patches.zcml @ 1815

Last change on this file since 1815 was 1776, checked in by liebster, 14 years ago

Added monkey patch listMetaTags method

File size: 834 bytes
Line 
1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:monkey="http://namespaces.plone.org/monkey"
4    i18n_domain="quintagroup.seoptimizer">
5
6    <include package="collective.monkeypatcher" file="meta.zcml" />
7
8    <monkey:patch
9        description="listMetaTags method is now available as listMetaTagsOriginal"
10        class="Products.CMFPlone.PloneTool.PloneTool"
11        original="listMetaTagsOriginal"
12        ignoreOriginal="True"
13        replacement=".listMetaTags.qsListMetaTagsOriginal"
14        docstringWarning="true"
15        />
16
17    <monkey:patch
18        description="listMetaTags method now support advanced features"
19        class="Products.CMFPlone.PloneTool.PloneTool"
20        original="listMetaTags"
21        replacement=".listMetaTags.qsListMetaTags"
22        docstringWarning="true"
23        />
24
25</configure>
Note: See TracBrowser for help on using the repository browser.