Bert Constantin
7e584632b8
fix unnecessary field-name/model-name conflicts (i.e. field_name == model_name.lower() )
...
=> __init__ + __getattribute__ now handle only the Django inheritance
references that are needed ('modela_ptr', 'modelc' etc.), avoiding
unnecessary conflicts with field names.
2010-02-18 20:05:17 +01:00
Bert Constantin
2795f7acd5
some doc + minor code updates (__repr__ + Show... mixins)
2010-02-18 20:04:38 +01:00
Bert Constantin
2fcb7fba1a
queryset order_by method added, testcase, docs
2010-02-04 16:38:58 +01:00
Bert Constantin
b4aeae417e
queryset values(), values_list(), distinct() documented; defer(), only() allowed (but not yet supported)
2010-02-04 16:14:10 +01:00
Bert Constantin
c10577c32f
queryset aggregate() and extra() methods implemented, testcases, docs
2010-02-04 15:28:55 +01:00
Bert Constantin
9e7a78a8cb
queryset annotate() method implemented, and testcase
2010-02-04 15:28:55 +01:00
Bert Constantin
a99a3b5bfc
fix remaining potential accessor name clashes (but this only works with Django 1.2+, for 1.1 no changes). Thanks to Andrew Ingram.
2010-02-04 15:28:49 +01:00
Bert Constantin
ecaed2a71f
fixed use of 'id', replaced with 'pk'
2010-02-04 15:13:44 +01:00
Bert Constantin
2e17a184c0
fix select_related bug for objects from derived classes (till now sel.-r. was just ignored)
2010-02-04 15:13:44 +01:00
Bert Constantin
2a740e9b10
doc- and minor code updates
2010-02-04 15:13:33 +01:00
Bert Constantin
c7ac78e08d
Fixed ContentType related field accessor clash (an error emitted by model validation),
...
by adding related_name to the ContentType ForeignKey. Thanks to Andrew Ingram.
This happened if a polymorphc model used a ContentType ForeignKey.
Plus minor documentation updates.
2010-01-30 14:15:52 +01:00
Bert Constantin
8bdda93e76
Restructured django_polymorphic into a regular add-on application.
...
This is needed for the management commands, and also seems
to be a generally good idea for future viablity as well.
Also misc documentation updates.
2010-01-29 13:41:19 +01:00