source: products/quintagroup.plonecaptchas/trunk/quintagroup/plonecaptchas/config.py @ 1550

Last change on this file since 1550 was 1550, checked in by mylan, 14 years ago

Fix path for tool icon (lead to breakage on start of zope instance)

File size: 787 bytes
RevLine 
[797]1GLOBALS = globals()
2PRODUCT_NAME = 'quintagroup.plonecaptchas'
[956]3CAPTCHA_KEY = 'captcha_key'
[797]4CAPTCHAS_COUNT = 165
[817]5
6LAYERS = ['captchas', 'plone_captchas', 'captchas_discussion', 
7    'captchas_sendto_form', 'captchas_join_form']
[797]8LAYER_DYNAMIC_CAPTCHAS = 'plone_captchas/dynamic'
9LAYER_STATIC_CAPTCHAS = 'plone_captchas/static'
[817]10ALL_LAYERS = LAYERS + [LAYER_STATIC_CAPTCHAS, LAYER_DYNAMIC_CAPTCHAS]
11
[1550]12#TOOL_ICON = 'tool.gif'
13TOOL_ICON = 'skins/plone_captchas/tool.gif'
[797]14TOOL_ID = 'portal_captchas'
15CONFIGLET_ID = "prefs_captchas_setup_form"
[963]16PROPERTY_SHEET = 'qPloneCaptchas'
[797]17
18DEFAULT_IMAGE_SIZE = 27
19DEFAULT_BG = 'gray'
20DEFAULT_FONT_COLOR = 'black'
21DEFAULT_PERIOD = 0.1
22DEFAULT_AMPLITUDE = 5
23DEFAULT_OFFSET = (0.5, 0.5)
24DEFAULT_DISTORTION = [DEFAULT_PERIOD, DEFAULT_AMPLITUDE, DEFAULT_OFFSET]
Note: See TracBrowser for help on using the repository browser.