control 'url' backends parameter with a regexp (closes #712)

This commit is contained in:
Romain Bignon 2011-10-25 13:33:03 +02:00
commit 68bb3cb274
3 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@ class RedmineBackend(BaseBackend, ICapContent, ICapBugTracker, ICapCollection):
VERSION = '0.a'
DESCRIPTION = 'The Redmine project management web application'
LICENSE = 'AGPLv3+'
CONFIG = BackendConfig(Value('url', label='URL of the Redmine website'),
CONFIG = BackendConfig(Value('url', label='URL of the Redmine website', regexp=r'https?://.*'),
Value('username', label='Login'),
ValueBackendPassword('password', label='Password'))
BROWSER = RedmineBrowser