| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-10 | Fixed #19196 -- Added test/requirements | Tim Graham | |
| 2013-07-09 | Added 1.7 release notes in TOC. | Aymeric Augustin | |
| 2013-07-09 | Fixed #20663 -- "Today" and "now" admin shortcuts. | Loic Bistuer | |
| Changed the shortcuts next to date and time intput widgets to account for the current timezone. Refs #7717, #14253 and #18768. | |||
| 2013-07-09 | Fixed #20724 -- Test failure on SQLite. | Aymeric Augustin | |
| This test failure happened if the connection's NAME was set to a file system path, and its TEST_NAME wasn't. Thanks Claude for the report. | |||
| 2013-07-09 | Avoided transaction.set_autocommit in tests. | Aymeric Augustin | |
| It doesn't work as one might expect on a certain database backend where autocommits_when_autocommit_is_off = True. That backend happens to be popular for running tests. | |||
| 2013-07-09 | Added a test for the envelope() GeoQuerySet method | Claude Paroz | |
| Refs #20718. | |||
| 2013-07-09 | Simplified testing connection type | Claude Paroz | |
| 2013-07-09 | Made an aggregate test pass with spatialite backend | Claude Paroz | |
| backends.tests.SqliteAggregationTests was failing with spatialite. | |||
| 2013-07-09 | Fixed #20722 -- Fixed MemcachedCache backend get_many on Python 3. | Tim Graham | |
| 2013-07-09 | Only import gis test apps for geo-enabled DBs | Claude Paroz | |
| 2013-07-09 | Trusted test skipping about gis tests running or not | Claude Paroz | |
| With the new test discovery system, gis tests are discovered as other tests. They should be properly skipped now when dependencies are missing. So let's stop special casing their inclusion. | |||
| 2013-07-09 | Isolate geoapp test from sitemaps app being installed or not | Claude Paroz | |
| 2013-07-09 | Partial revert of commit 2bf403ecbd95 | Claude Paroz | |
| Homework: write 100 times geoapp is not geogapp. | |||
| 2013-07-09 | Fixed #18261 -- Clarified 'project root directory' | SusanTan | |
| 2013-07-09 | Fixed #17339 -- Factor out has_result into database backend. | Tim Graham | |
| Thanks jonash. | |||
| 2013-07-08 | Fixed last_executed_query test failure on Oracle | Shai Berger | |
| 2013-07-08 | Fixed #18944 -- Documented PasswordResetForm's from_email argument as a ↵ | Tim Graham | |
| backwards incompatible change for 1.3 Thanks DrMeers for the report. | |||
| 2013-07-08 | Fixed #19695 -- Retitle "Form Media" to "Form Assets". | James Bennett | |
| 2013-07-08 | Fixed #16965 -- Clarified Formset can_delete docs. | Tim Graham | |
| Thanks gregcorey@ for the suggestion. | |||
| 2013-07-08 | Fixed #20493 -- Added a warning that objects may not be picklable across ↵ | Tim Graham | |
| Django versions Thanks cataliniacob for the suggestion and review. | |||
| 2013-07-08 | Fixed #6785 -- Made QuerySet.get() fetch a limited number of rows. | Tim Graham | |
| Thanks Patryk Zawadzki. | |||
| 2013-07-08 | Fixed #12346 -- Added a note on how to validate InlineFormSets. | Tim Graham | |
| Thanks johnsmith for the suggestion. | |||
| 2013-07-08 | Completed some more name_local names | Claude Paroz | |
| 2013-07-08 | Fixed #20716 --Missing 'name_local' translation | Mathias Andre | |
| Added 'name_local' translation for Albanian in LANG_INFO | |||
| 2013-07-08 | Revert ".DS_Store can be ignored." | Alex Gaynor | |
| OS specific files can be ignored in a global ignore file. This reverts commit d66bd1dfb9e090154e586680023aa2b1f22e735d. | |||
| 2013-07-07 | Merge branch 'docs-triage-needs-patch' | Jeremy Dunck | |
| 2013-07-07 | Clarified trac patch-related field meaning | Jeremy Dunck | |
| There was some confusion on the mentorship list as to whether 'needs tests' meant that a given ticket might not need tests, as opposed to flagging a specific patch as still needing tests. This commit seeks to clarify that confusion. | |||
| 2013-07-08 | Use a more explicit check for whether these ids are None. | Alex Gaynor | |
| 2013-07-08 | fixed a mis-importt in mysql/base.py | Alex Gaynor | |
| 2013-07-08 | A large number of stylistic cleanups across django/db/ | Alex Gaynor | |
| 2013-07-08 | Fixed a bug I introduced in my previosu ommit. | Alex Gaynor | |
| 2013-07-08 | Replaced some dicts with sets. | Alex Gaynor | |
| 2013-07-07 | Merge pull request #991 from stockr-labs/feature/email-backends-generators | Alex Gaynor | |
| Fixed #20194 -- Adds generators support for email backends that do not support it. | |||
| 2013-07-08 | Fixed #13813 -- Comparison of DatabaseWrappers doesn't raise errors. | Alex Gaynor | |
| Patch from Lukasz Balcerzak. | |||
| 2013-07-08 | A few cleanups to capture the minimum amount of code in try/except blocks. | Alex Gaynor | |
| 2013-07-08 | Merge branch 'ticket_20613' of https://github.com/ersran9/django into t20613 | Alex Gaynor | |
| 2013-07-08 | .DS_Store can be ignored. | Alex Gaynor | |
| 2013-07-08 | Removed some logic that wasn't needed following removal of some deprecated code. | Alex Gaynor | |
| 2013-07-07 | Fixed #20711 -- Fixed broken link in timesince.py docstring | SusanTan | |
| 2013-07-06 | Fixed #14006 -- Documented that Field's 'description' attribute is ↵ | Tim Graham | |
| interpolated with field.__dict__ Thanks abeld for the suggestion. | |||
| 2013-07-06 | [gis] Dropped official support for GDAL < 1.6 | Claude Paroz | |
| 2013-07-06 | Added release dates for gis libs as doc comments | Claude Paroz | |
| 2013-07-06 | Tweaked proj string regex in gis tests | Claude Paroz | |
| 2013-07-06 | Fixed 20613 - moved pickle loads/dumps outside with ↵ | ersran9 | |
| self._lock.reader()/writer() blocks Additionaly added pickled=None initially and check for none before returning in get | |||
| 2013-07-05 | Deprecate usage of boolean value for widget attributes | Claude Paroz | |
| Django 1.7 will loudly warn when widget attributes are assigned boolean values. In Django 1.8, False will mean attribute is not present while True will mean attribute present without value. Refs #20684. | |||
| 2013-07-05 | Fixed #20224 -- Update docs examples which mention __unicode__ | Claude Paroz | |
| Thanks Marc Tamlyn and Tim Graham for the review. | |||
| 2013-07-05 | Fixed #20561 -- Emphasized that QuerySet.distinct([*fields]) is only ↵ | Tim Graham | |
| supported by Postgres. Thanks jtiai for the suggestion. | |||
| 2013-07-05 | Fixed #19539 -- Updated custom model fields example for Python 3. | Tim Graham | |
| Thanks astorije@ for the report. | |||
| 2013-07-05 | Merge pull request #1331 from hekevintran/patch-1 | Marc Tamlyn | |
| fixed grammar | |||
| 2013-07-04 | Fixed #19940 -- Made test.runner.setup_databases properly handle aliases for ↵ | Tim Graham | |
| default db. Thanks simonpercivall. | |||
