Compare commits
67
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
60571ce1de | ||
|
|
953123b3dc | ||
|
|
fdc1d94f47 | ||
|
|
828d5d6d29 | ||
|
|
501f6f11ba | ||
|
|
1199f0d649 | ||
|
|
af6601a2e1 | ||
|
|
d51788050f | ||
|
|
93d8d97fbd | ||
|
|
dc15195dd8 | ||
|
|
688ea4f0f2 | ||
|
|
a12abe2da4 | ||
|
|
7ffaace4dd | ||
|
|
3ebe3748fa | ||
|
|
a8884391c2 | ||
|
|
eb903987eb | ||
|
|
b32cd19266 | ||
|
|
500b182d17 | ||
|
|
5b70a451c4 | ||
|
|
05fea58d6a | ||
|
|
a9c205bffe | ||
|
|
fa9ca2555a | ||
|
|
d89cdff90a | ||
|
|
1e9a120f7e | ||
|
|
94870d7377 | ||
|
|
30ebe7c11e | ||
|
|
566e8ee801 | ||
|
|
5778cb4b51 | ||
|
|
37c86350f2 | ||
|
|
cb1eda480b | ||
|
|
e50b23f047 | ||
|
|
6eb470a821 | ||
|
|
756d8b2ac5 | ||
|
|
b99985eaf8 | ||
|
|
4e1145d890 | ||
|
|
5b7b65a750 | ||
|
|
76219901db | ||
|
|
44b86e29c6 | ||
|
|
f1f999a570 | ||
|
|
9a32ff4c42 | ||
|
|
4b024409ba | ||
|
|
b2825119ce | ||
|
|
b02904ee75 | ||
|
|
c86155e571 | ||
|
|
fa6949eca2 | ||
|
|
18a91cc794 | ||
|
|
ae777e45b2 | ||
|
|
0189818f3e | ||
|
|
205a975781 | ||
|
|
bb81652ffe | ||
|
|
edbecb4df0 | ||
|
|
4373ea98cf | ||
|
|
8f657e0f7d | ||
|
|
f6b8899bba | ||
|
|
c43a5fe760 | ||
|
|
c1993de524 | ||
|
|
bc83ba6a24 | ||
|
|
0fc44efbcc | ||
|
|
1b36ca00e5 | ||
|
|
7dd4639037 | ||
|
|
557f9bd971 | ||
|
|
59cac2b75c | ||
|
|
548c7438b0 | ||
|
|
50df653768 | ||
|
|
bc6c84c408 | ||
|
|
6b2cebb07b | ||
|
|
db673a9033 |
+1
-1
@@ -4,7 +4,7 @@ MongoEngine
|
|||||||
:Info: MongoEngine is an ORM-like layer on top of PyMongo.
|
:Info: MongoEngine is an ORM-like layer on top of PyMongo.
|
||||||
:Repository: https://github.com/MongoEngine/mongoengine
|
:Repository: https://github.com/MongoEngine/mongoengine
|
||||||
:Author: Harry Marr (http://github.com/hmarr)
|
:Author: Harry Marr (http://github.com/hmarr)
|
||||||
:Maintainer: Stefan Wójcik (http://github.com/wojcikstefan)
|
:Maintainer: Ross Lawley (http://github.com/rozza)
|
||||||
|
|
||||||
.. image:: https://travis-ci.org/MongoEngine/mongoengine.svg?branch=master
|
.. image:: https://travis-ci.org/MongoEngine/mongoengine.svg?branch=master
|
||||||
:target: https://travis-ci.org/MongoEngine/mongoengine
|
:target: https://travis-ci.org/MongoEngine/mongoengine
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ __all__ = (list(document.__all__) + list(fields.__all__) +
|
|||||||
list(signals.__all__) + list(errors.__all__))
|
list(signals.__all__) + list(errors.__all__))
|
||||||
|
|
||||||
|
|
||||||
VERSION = (0, 11, 0)
|
VERSION = (0, 10, 9)
|
||||||
|
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ class BaseField(object):
|
|||||||
|
|
||||||
.. versionchanged:: 0.5 - added verbose and help text
|
.. versionchanged:: 0.5 - added verbose and help text
|
||||||
"""
|
"""
|
||||||
|
|
||||||
name = None
|
name = None
|
||||||
_geo_index = False
|
_geo_index = False
|
||||||
_auto_gen = False # Call `generate` to generate a value
|
_auto_gen = False # Call `generate` to generate a value
|
||||||
|
|||||||
Reference in New Issue
Block a user