Changeset 1951 in products


Ignore:
Timestamp:
Mar 18, 2010 8:15:36 PM (14 years ago)
Author:
mylan
Message:

#172: Fix uninstall profile

Location:
quintagroup.captcha.core/trunk/quintagroup/captcha/core
Files:
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • quintagroup.captcha.core/trunk/quintagroup/captcha/core/profiles/uninstall/import_steps.xml

    r963 r1951  
    11<?xml version="1.0"?> 
    22<import-steps> 
    3  <import-step id="quintagroup.plonecaptchas-uninstall" 
     3 <import-step id="quintagroup.captcha.core_uninstall" 
    44              version="20090403-01" 
    5               handler="quintagroup.plonecaptchas.setuphandlers.uninstall" 
    6               title="quintagroup.plonecaptchas: uninstall steps."> 
    7     Uninstalls quintagroup.plonecaptchas product. 
     5              handler="quintagroup.captcha.core.setuphandlers.uninstall" 
     6              title="quintagroup.captcha.core: uninstall steps."> 
     7    Uninstalls quintagroup.captcha.core product. 
    88 </import-step> 
    99</import-steps> 
  • quintagroup.captcha.core/trunk/quintagroup/captcha/core/setuphandlers.py

    r993 r1951  
    33from Products.CMFCore.utils import getToolByName 
    44 
    5 from quintagroup.plonecaptchas.config import CAPTCHA_KEY, CONFIGLET_ID, \ 
     5from quintagroup.captcha.core.config import CAPTCHA_KEY, CONFIGLET_ID, \ 
    66    ALL_LAYERS, PROPERTY_SHEET 
    77 
     
    2727def uninstall(context): 
    2828    # Only run step if a flag file is present (e.g. not an extension profile) 
    29     if context.readDataFile('quintagroup.plonecaptchas_uninstall.txt') is None: 
     29    if context.readDataFile('quintagroup.captcha.core_uninstall.txt') is None: 
    3030        return 
    3131 
Note: See TracChangeset for help on using the changeset viewer.