index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
models
/
loading.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
[soc2010/app-loading] use app label instead of fqn
Arthur Koziel
2010-08-10
1
-3
/
+1
*
[soc2010/app-loading] re-adding files after failed dcommit
Arthur Koziel
2010-08-06
1
-224
/
+1
*
[soc2010/app-loading] removed app_errors attribute
Arthur Koziel
2010-08-06
1
-5
/
+4
*
[soc2010/app-loading] removed app_store attribute
Arthur Koziel
2010-06-29
1
-15
/
+11
*
[soc2010/app-loading] save models in app; adjust get_model/get_models
Arthur Koziel
2010-06-28
1
-5
/
+31
*
added dummy App class and track instances
Arthur Koziel
2010-06-22
1
-0
/
+5
*
Fixed #13348: Restored ability to load models from apps in eggs. Thanks Ramir...
Karen Tracey
2010-04-15
1
-13
/
+17
*
Fixed #13335: Adjusted the r12950 fix to properly handle import errors result...
Karen Tracey
2010-04-14
1
-3
/
+10
*
Fixed #11696: Changed app loading code so that it does not swallow import err...
Karen Tracey
2010-04-12
1
-1
/
+4
*
Changed a whole bunch of places to raise exception instances instead of old-s...
Adrian Holovaty
2010-01-10
1
-1
/
+1
*
Fixed #11936 -- Removed deferred models from the list returned by the app_cac...
Russell Keith-Magee
2009-12-22
1
-8
/
+15
*
Fixed #12389 - performance enhancement of get_models()
Luke Plant
2009-12-16
1
-1
/
+9
*
Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...
Russell Keith-Magee
2009-11-03
1
-3
/
+9
*
Fixed #8193: all dynamic imports in Django are now done correctly. I know thi...
Jacob Kaplan-Moss
2009-03-18
1
-6
/
+9
*
Added tests for corner case with deleting where objects are deleted in the wr...
Luke Plant
2008-06-21
1
-5
/
+7
*
Fixed #7044 -- Corrected a minor typo in a docstring in the model loader. Tha...
Russell Keith-Magee
2008-06-17
1
-1
/
+1
*
Removed code that was recasting major errors found during application import....
Russell Keith-Magee
2007-09-10
1
-5
/
+1
*
Renamed Cache to AppCache and cache_ready() to app_cache_ready() from [5919] ...
Malcolm Tredinnick
2007-08-18
1
-5
/
+5
*
Rewrote portions of the app- and model-cache initialisation to handle some co...
Malcolm Tredinnick
2007-08-17
1
-106
/
+181
*
Fixed #4040 -- Changed uses of has_key() to "in". Slight performance
Malcolm Tredinnick
2007-04-26
1
-1
/
+1
*
Fixed #2968 -- Changed arguments to __import__ to use empty dictionary instea...
Adrian Holovaty
2006-10-30
1
-1
/
+1
*
Negligible style change in django.db.models.loading
Adrian Holovaty
2006-08-08
1
-2
/
+2
*
Seed the global app cache in a call to db.models.get_model() except when we are
Malcolm Tredinnick
2006-07-29
1
-2
/
+6
*
Negligible spacing change to django/db/models/loading.py
Adrian Holovaty
2006-06-30
1
-2
/
+2
*
Fixed #1812 -- permit apps without models (without disguising other errors).
Malcolm Tredinnick
2006-06-28
1
-3
/
+10
*
Fixed another path where imports were creating two instances of a model's
Malcolm Tredinnick
2006-06-26
1
-1
/
+0
*
Fixed #1796 -- implemented more robust normalisation for module filenames
Malcolm Tredinnick
2006-06-26
1
-2
/
+2
*
Fixed #1796 -- only load a single copy of each model, even when it is
Malcolm Tredinnick
2006-06-25
1
-0
/
+12
*
Fixes #1812 -- Added model validity checks to ensure that models.py exists, a...
Russell Keith-Magee
2006-06-25
1
-5
/
+13
*
Fixed #1662 -- Added resolver for string-form model references for models tha...
Russell Keith-Magee
2006-06-23
1
-13
/
+22
*
Fixed #1732 -- AttributeErrors in models are no longer ignored by the model v...
Adrian Holovaty
2006-05-26
1
-3
/
+9
*
MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...
Adrian Holovaty
2006-05-02
1
-0
/
+71