- Timestamp:
- 13 Nov 2014, 14:40:27 (10 years ago)
- Location:
- main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba
- Files:
-
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/schema/__init__.py
r11480 r11949 1 from waeup. kofa.schema.field import *1 from waeup.ikoba.schema.field import * 2 2 3 3 #__all__ = tuple(name for name in globals() if not name.startswith('_')) -
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/schema/field.py
r8171 r11949 24 24 from zope.schema.vocabulary import ( 25 25 SimpleVocabulary, getVocabularyRegistry, VocabularyRegistryError) 26 from waeup. kofa.schema.interfaces import IFormattedDate, IPhoneNumber26 from waeup.ikoba.schema.interfaces import IFormattedDate, IPhoneNumber 27 27 28 28 class CustomizableErrorMsg(object): … … 133 133 attributes in forms, you have to provide widgets that read them 134 134 and use them in their operations, for instance the 135 `waeup. kofa.widgets.datewidget.FormattedDateWidget`.135 `waeup.ikoba.widgets.datewidget.FormattedDateWidget`. 136 136 137 137 Extra attributes are as follows: -
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/schema/interfaces.py
r8171 r11949 26 26 the way of editing or displaying a date. 27 27 28 The waeup. kofa.widgets.datewidget.FormattedDateWidget is a widget28 The waeup.ikoba.widgets.datewidget.FormattedDateWidget is a widget 29 29 that supports these additional attributes. 30 30 """ -
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/schema/tests/test_fields.py
r8171 r11949 1 """Tests for waeup. kofa.schema fields.1 """Tests for waeup.ikoba.schema fields. 2 2 """ 3 3 import unittest 4 4 from zope.interface.verify import verifyClass, verifyObject 5 5 from zope.schema.interfaces import IDate 6 from waeup. kofa.schema import FormattedDate, PhoneNumber7 from waeup. kofa.schema.interfaces import IFormattedDate, IPhoneNumber6 from waeup.ikoba.schema import FormattedDate, PhoneNumber 7 from waeup.ikoba.schema.interfaces import IFormattedDate, IPhoneNumber 8 8 9 9 class FormattedDateTests(unittest.TestCase): -
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/schema/tests/test_textlinechoice.py
r7811 r11949 25 25 IVocabulary, ISource, IContextSourceBinder,) 26 26 from zope.schema.tests.test_strfield import TextLineTest 27 from waeup. kofa.schema import TextLineChoice27 from waeup.ikoba.schema import TextLineChoice 28 28 29 29 # Define some helper functions, classes, vars for tests
Note: See TracChangeset for help on using the changeset viewer.