<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/tests/app_cache, branch initial-branch</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=initial-branch</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=initial-branch'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2013-12-24T11:25:17Z</updated>
<entry>
<title>Renamed AppCache to Apps.</title>
<updated>2013-12-24T11:25:17Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2013-12-24T11:25:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=1716b7ce5a02b2a77188dfea2d41e25dfa58821c'/>
<id>urn:sha1:1716b7ce5a02b2a77188dfea2d41e25dfa58821c</id>
<content type='text'>
Also renamed app_cache to apps and "app cache" to "app registry".

Deprecated AppCache.app_cache_ready() in favor of Apps.ready().
</content>
</entry>
<entry>
<title>Moved apps back in the toplevel django namespace.</title>
<updated>2013-12-22T10:39:55Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2013-12-22T10:35:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=2fef9e5375b0267734392080858d9fced15ee2f9'/>
<id>urn:sha1:2fef9e5375b0267734392080858d9fced15ee2f9</id>
<content type='text'>
Reverted 4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2.
</content>
</entry>
<entry>
<title>Removed forgotten reference to the borg pattern.</title>
<updated>2013-12-17T21:21:40Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2013-12-17T21:21:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=2bc89f83b31a5d23e67dd3d4f0d70d0c91279b9f'/>
<id>urn:sha1:2bc89f83b31a5d23e67dd3d4f0d70d0c91279b9f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Deborgified the app cache.</title>
<updated>2013-12-17T20:53:18Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2013-12-17T16:47:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=0242c56fd86137bc8f67404492b5c03987bc3d1a'/>
<id>urn:sha1:0242c56fd86137bc8f67404492b5c03987bc3d1a</id>
<content type='text'>
Improved Andrew's hack to create temporary app caches to handle
migrations. Now the main app cache has a "master" flag set to True
(which is a non-default keyword argument, thus unlikely to be used by
mistake). Other app cache instances have "master" set to False.

The only sanctioned way to access the app cache is by importing
django.core.apps.app_cache.

If you were instanciating an app cache and relying on the Borg pattern,
you'll have to refactor your code.
</content>
</entry>
<entry>
<title>Moved the new app cache inside core.</title>
<updated>2013-12-17T09:17:46Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2013-12-16T10:52:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2'/>
<id>urn:sha1:4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Deprecated get_app().</title>
<updated>2013-12-17T09:17:45Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2013-12-14T10:11:52Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=69039becde74308d6218c72c1e410cd0049fd2bd'/>
<id>urn:sha1:69039becde74308d6218c72c1e410cd0049fd2bd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Removed module-level functions for the app cache.</title>
<updated>2013-12-17T09:17:44Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2013-12-11T22:31:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=8662654d6d50e4d89f771a757ae5fc83c6b74db0'/>
<id>urn:sha1:8662654d6d50e4d89f771a757ae5fc83c6b74db0</id>
<content type='text'>
Since the original ones in django.db.models.loading were kept only for
backwards compatibility, there's no need to recreate them. However, many
internals of Django still relied on them.

They were also imported in django.db.models. They never appear in the
documentation, except a quick mention of get_models and get_app in the
1.2 release notes to document an edge case in GIS. I don't think that
makes them a public API.

This commit doesn't change the overall amount of global state but
clarifies that it's tied to the app_cache object instead of hiding it
behind half a dozen functions.
</content>
</entry>
<entry>
<title>Moved django.db.models.loading to django.apps.cache.</title>
<updated>2013-12-17T09:17:43Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2013-12-11T20:44:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=860c2c8bc5c77194c41464655851379bf512a052'/>
<id>urn:sha1:860c2c8bc5c77194c41464655851379bf512a052</id>
<content type='text'>
This commit doesn't contain any code changes; it's purely a refactoring.
</content>
</entry>
<entry>
<title>Make multi-app-cache tests work again</title>
<updated>2013-07-22T18:36:03Z</updated>
<author>
<name>Andrew Godwin</name>
<email>andrew@aeracode.org</email>
</author>
<published>2013-07-22T18:36:03Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=52eb19b545118e8c2044d106f4527ce2200c967a'/>
<id>urn:sha1:52eb19b545118e8c2044d106f4527ce2200c967a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rest of the _meta.app_cache stuff. Schema tests work now.</title>
<updated>2013-05-09T14:59:26Z</updated>
<author>
<name>Andrew Godwin</name>
<email>andrew@aeracode.org</email>
</author>
<published>2013-05-09T14:59:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=75bf394d86b802de670502400e9ab7eca2808935'/>
<id>urn:sha1:75bf394d86b802de670502400e9ab7eca2808935</id>
<content type='text'>
</content>
</entry>
</feed>
