comparison rhodecode/model/forms.py @ 555:03676d39dd0a

added fault tolerant case when celeryconfig is not present in the directory. small form fixes, and websetup default app title and admin name
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 06 Oct 2010 18:26:59 +0200
parents b75b77ef649d
children 7e536d1af60d
comparison
equal deleted inserted replaced
554:100b0aea57c2 555:03676d39dd0a
258 strip=True, 258 strip=True,
259 min=6, 259 min=6,
260 not_empty=True, 260 not_empty=True,
261 messages={ 261 messages={
262 'empty':_('Please enter a password'), 262 'empty':_('Please enter a password'),
263 'tooShort':_('Enter a value %(min)i characters long or more')} 263 'tooShort':_('Enter %(min)i characters or more')}
264 ) 264 )
265 265
266 266
267 #chained validators have access to all data 267 #chained validators have access to all data
268 chained_validators = [ValidAuth] 268 chained_validators = [ValidAuth]