| 1 | PROJECTNAME = "qPloneComments" |
|---|
| 2 | |
|---|
| 3 | GLOBALS = globals() |
|---|
| 4 | SKINS_DIR = "skins" |
|---|
| 5 | SKIN_NAME = "qplonecomments" |
|---|
| 6 | |
|---|
| 7 | CONFIGLET_ID = "prefs_comments_setup_form" |
|---|
| 8 | CONFIGLET_NAME = "qPloneComments setup" |
|---|
| 9 | |
|---|
| 10 | PROPERTIES = (('enable_approve_user_notification', 'True', 'boolean'), |
|---|
| 11 | ('enable_reply_user_notification', 'True', 'boolean'), |
|---|
| 12 | ('enable_rejected_user_notification', 'True', 'boolean'), |
|---|
| 13 | ('enable_moderation', 'True', 'boolean'), |
|---|
| 14 | ('require_email', 'False', 'boolean'), |
|---|
| 15 | ('enable_anonymous_commenting', 'True', 'boolean'), |
|---|
| 16 | ('enable_published_notification', 'True', 'boolean'), |
|---|
| 17 | ('enable_approve_notification', 'True', 'boolean'), |
|---|
| 18 | ('email_discussion_manager', '', 'string'), |
|---|
| 19 | ('email_subject_prefix', '', 'string')) |
|---|