|
Last change
on this file since 1 was
1,
checked in by myroslav, 20 years ago
|
|
Building directory structure
|
-
Property svn:eol-style set to
native
|
|
File size:
585 bytes
|
| Line | |
|---|
| 1 | ## Script (Python) "getCaptchaType" |
|---|
| 2 | ##bind container=container |
|---|
| 3 | ##bind context=context |
|---|
| 4 | ##bind namespace= |
|---|
| 5 | ##bind script=script |
|---|
| 6 | ##bind subpath=traverse_subpath |
|---|
| 7 | ##parameters=actions=None |
|---|
| 8 | ##title= |
|---|
| 9 | ## |
|---|
| 10 | from Products.CMFCore.utils import getToolByName |
|---|
| 11 | import string |
|---|
| 12 | skinsTool = getToolByName(context, 'portal_skins') |
|---|
| 13 | default_skin = skinsTool.getDefaultSkin() |
|---|
| 14 | path = skinsTool.getSkinPath(default_skin) |
|---|
| 15 | path = map( string.strip, string.split( path,',' ) ) |
|---|
| 16 | |
|---|
| 17 | if 'plone_captchas/static' in path: |
|---|
| 18 | return 'static' |
|---|
| 19 | elif 'plone_captchas/dynamic' in path: |
|---|
| 20 | return 'dynamic' |
|---|
| 21 | else: |
|---|
| 22 | return None |
|---|
Note: See
TracBrowser
for help on using the repository browser.