Wrapper of couchdbkit Document and Properties for django. It also add
possibility to a document to register itself in CouchdbkitHandler
|
|
DocumentSchema = schema.DocumentSchema
|
|
|
Property = schema.Property
|
|
|
StringProperty = schema.StringProperty
|
|
|
IntegerProperty = schema.IntegerProperty
|
|
|
DecimalProperty = schema.DecimalProperty
|
|
|
BooleanProperty = schema.BooleanProperty
|
|
|
FloatProperty = schema.FloatProperty
|
|
|
DateTimeProperty = schema.DateTimeProperty
|
|
|
DateProperty = schema.DateProperty
|
|
|
TimeProperty = schema.TimeProperty
|
|
|
SchemaProperty = schema.SchemaProperty
|
|
|
ListProperty = schema.ListProperty
|
|
|
DictProperty = schema.DictProperty
|
|
|
StringListProperty = schema.StringListProperty
|
|
|
dict_to_json = schema.dict_to_json
|
|
|
list_to_json = schema.list_to_json
|
|
|
value_to_json = schema.value_to_json
|
|
|
value_to_python = schema.value_to_python
|
|
|
dict_to_python = schema.dict_to_python
|
|
|
list_to_python = schema.list_to_python
|
|
|
convert_property = schema.convert_property
|