Changeset 2876 in products


Ignore:
Timestamp:
Oct 15, 2010 1:34:40 PM (14 years ago)
Author:
mylan
Message:

#232: Fixed uninstallation. Added unisntallation with QI

Location:
quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/__init__.py

    r1179 r2876  
     1import logging 
    12from zope.i18nmessageid import MessageFactory 
    23 
    34_ = MessageFactory("quintagroup.dropdownmenu") 
     5 
     6PROJECT_NAME = "quintagroup.dropdownmenu" 
     7logger = logging.getLogger(PROJECT_NAME) 
     8 
  • quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/configure.zcml

    r1181 r2876  
    11<configure 
    22    xmlns="http://namespaces.zope.org/zope" 
     3    xmlns:five="http://namespaces.zope.org/five" 
    34    xmlns:genericsetup="http://namespaces.zope.org/genericsetup" 
    45    i18n_domain="quintagroup.dropdownmenu"> 
     6 
     7  <!-- This need for QI for possibility to find "uninstall" 
     8       method in then ./Extensions/install.py external method --> 
     9  <five:registerPackage package="." /> 
    510 
    611  <!-- Include configuration for dependencies listed in setup.py --> 
     
    2934      /> 
    3035 
     36  <genericsetup:importStep 
     37      name="quintagroup.dropdownmenu.uninstall" 
     38      title="Plone DropDown Menu Product: miscellaneous uninstallation steps" 
     39      description="Various uninstallation steps that are not handled by GS import/export handlers." 
     40      handler="quintagroup.dropdownmenu.setuphandlers.uninstall"> 
     41    <!-- <depends name="skins"/> --> 
     42  </genericsetup:importStep> 
     43 
     44 
    3145</configure> 
Note: See TracChangeset for help on using the changeset viewer.