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

Last change on this file since 963 was 963, checked in by crchemist, 17 years ago

Fix error in tests.

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