Changeset 12630 for main/waeup.ikoba/trunk/src/waeup
- Timestamp:
- 24 Feb 2015, 06:01:08 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/browser/interfaces.py
r12540 r12630 170 170 171 171 """ 172 email = schema. ASCIILine(172 email = schema.TextLine( 173 173 title = _(u'Email Address'), 174 174 required = True, -
main/waeup.ikoba/trunk/src/waeup/ikoba/tests/test_interfaces.py
r12443 r12630 67 67 # No spaces 68 68 self.assertTrue(check_id('abc ABC') is None) 69 # More than 9characters are not allowed70 self.assertTrue(check_id('abcdefghij ') is None)69 # More than 10 characters are not allowed 70 self.assertTrue(check_id('abcdefghijk') is None) 71 71 # Only underscores and hyphens are allowed 72 72 self.assertTrue(check_id('a+b') is None)
Note: See TracChangeset for help on using the changeset viewer.