Changeset 1036
- Timestamp:
- 02/05/08 06:39:54
- Files:
-
- qPloneCaptchas/trunk/Extensions/Install.py (modified) (3 diffs)
- qPloneCaptchas/trunk/config.py (modified) (2 diffs)
- qPloneCaptchas/trunk/skins/captchas_sendto_form (added)
- qPloneCaptchas/trunk/skins/captchas_sendto_form/2.0.5 (added)
- qPloneCaptchas/trunk/skins/captchas_sendto_form/2.0.5/sendto_form.cpt (added)
- qPloneCaptchas/trunk/skins/captchas_sendto_form/2.0.5/sendto_form.cpt.metadata (added)
- qPloneCaptchas/trunk/skins/captchas_sendto_form/2.1.2 (added)
- qPloneCaptchas/trunk/skins/captchas_sendto_form/2.1.2/sendto_form.cpt (added)
- qPloneCaptchas/trunk/skins/captchas_sendto_form/2.1.2/sendto_form.cpt.metadata (added)
- qPloneCaptchas/trunk/skins/captchas_sendto_form/2.5 (added)
- qPloneCaptchas/trunk/skins/captchas_sendto_form/2.5/sendto_form.cpt (added)
- qPloneCaptchas/trunk/skins/captchas_sendto_form/2.5/sendto_form.cpt.metadata (added)
- qPloneCaptchas/trunk/version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
qPloneCaptchas/trunk/Extensions/Install.py
r848 r1036 26 26 updateProperties(props_sheet, out, PROPERTIES) 27 27 28 29 30 28 Layers = [] 31 29 Layers += LAYERS … … 54 52 join_form_layer = '/'.join([LAYER_JOIN_FORM, plone_version]) 55 53 Layers.append(join_form_layer) 54 55 56 sendto_form_layer = '/'.join([LAYER_SENDTO_FORM, plone_version]) 57 Layers.append(sendto_form_layer) 58 56 59 out.write('Call setupSkin... \n') 57 60 setupSkin(self, out, Layers) … … 63 66 action='string:${portal_url}/%s' % CONFIGLET_ID, 64 67 appId=PRODUCT_NAME, permission=ManagePortal, imageUrl='group.gif') 68 return out.getvalue() 65 69 66 70 def setupSkin(self, out, layers): qPloneCaptchas/trunk/config.py
r848 r1036 3 3 CAPTCHAS_COUNT = 165 4 4 LAYERS = ['captchas', 'plone_captchas'] 5 LAYER_SENDTO_FORM = "captchas_sendto_form" 5 6 LAYER_JOIN_FORM = 'captchas_join_form' 6 7 LAYER_DISCUSSION = 'captchas_discussion' … … 9 10 LAYER_STATIC_CAPTCHAS = 'plone_captchas/static' 10 11 ALL_LAYERS = LAYERS + [LAYER_DISCUSSION, LAYER_FORMMAILER, 11 LAYER_STATIC_CAPTCHAS, LAYER_DYNAMIC_CAPTCHAS, LAYER_JOIN_FORM ]12 LAYER_STATIC_CAPTCHAS, LAYER_DYNAMIC_CAPTCHAS, LAYER_JOIN_FORM, LAYER_SENDTO_FORM] 12 13 TOOL_ICON = 'tool.gif' 13 14 TOOL_ID = 'portal_captchas' qPloneCaptchas/trunk/version.txt
r956 r1036 1 1.2.3 1 1.2.3+
