| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-06 | Merge pull request #1566 from adamsc64/ticket_11857 | Russell Keith-Magee | |
| Fixed #11857 -- Added missing 'closed' property on TemporaryFile class. | |||
| 2013-09-06 | Added Christopher Adams to the AUTHORS file. | Christopher Adams | |
| - Note that 'Chris Adams' and 'Christopher Adams' are two different contributors. | |||
| 2013-09-06 | Fixed deprecation warning on Python 3 | Tim Graham | |
| 2013-09-06 | Fixed #21037 -- Made MigrationWriter raise a ValueError when serializing ↵ | Loic Bistuer | |
| lambda functions. | |||
| 2013-09-06 | Fixed Python 3 syntax error introduced in [c72392da] | Tim Graham | |
| 2013-09-06 | Fixed test failure introduced in efd1e6096ee87fe332cf989ba5479e9461d0fb3a ↵ | Tim Graham | |
| (sqlmigrate) | |||
| 2013-09-06 | Merge pull request #1581 from mburst/patch-1 | Tim Graham | |
| Added myself to the contributors list for work on #21049 | |||
| 2013-09-06 | Merge pull request #1582 from ↵ | Russell Keith-Magee | |
| rca/12756-missing-yaml-module-serializer-error-message Fixed #12756: Improved error message when yaml module is missing. | |||
| 2013-09-06 | Cleanup commit after peer review. | Roberto Aguilar | |
| 2013-09-06 | Merge pull request #1580 from ianawilson/ticket_16502 | Russell Keith-Magee | |
| Fixed #16502 -- Fixed a TemplateDoesNotExist error that should be an ImproperlyConfigured. Assistance on the patch from #jambronrose. | |||
| 2013-09-06 | Fixed existing tests to handle BadSerializer. | Roberto Aguilar | |
| When a BadSerializer instance is stubbed in for the yaml serializer, make sure tests do not fail. | |||
| 2013-09-06 | Added name to AUTHORS (per Russell Keith-Magee) | Roberto Aguilar | |
| 2013-09-06 | Updated NoYamlSerializerTestCase to run with yaml. | Roberto Aguilar | |
| In order to verify the behavior of using the yaml serializer when yaml is on the system, fake the ImportError when the serializer is being registered. | |||
| 2013-09-06 | fixed test name from an old, overly specific iteration of the test | Ian Wilson | |
| 2013-09-06 | Added myself to the contributors list. | Max Burstein | |
| 2013-09-06 | Fixed #11811 -- Data-loss bug in queryset.update. | Aymeric Augustin | |
| It's now forbidden to call queryset.update(field=instance) when instance hasn't been saved to the database ie. instance.pk is None. | |||
| 2013-09-06 | Minor factorization. | Aymeric Augustin | |
| 2013-09-06 | Merge pull request #1579 from ianawilson/ticket_21058 | Russell Keith-Magee | |
| Fixed #21058 -- Fixed debug view blowing up when no template is provided to the template rendering functions. Assistance on this commit from @jambonrose. | |||
| 2013-09-06 | Removed unnecessary, leftover imports | Ian Wilson | |
| 2013-09-06 | Moved a settings usage up the stack in utils/formats.py #unsettings | Adrian Holovaty | |
| 2013-09-06 | Add -l alias for migrate --list | Andrew Godwin | |
| 2013-09-06 | Fixed a link in topics/testing/overview.txt | Tim Graham | |
| 2013-09-06 | adds fix for SingleObjectTemplateResponseMixin raising a ↵ | Ian Wilson | |
| TemplateDoesNotExist when it should have raised an ImproperlyConfigured. fixes 16502. by @ianawilson, @jambonrose | |||
| 2013-09-06 | Fixed #19295 -- Documented that CachedStaticFilesStorage isn't compatible ↵ | Keith Edmiston | |
| with runserver --insecure. | |||
| 2013-09-06 | Added Rudy Mutter to AUTHORS for his work, ref #20821. | Julien Phalip | |
| 2013-09-06 | Merge pull request #1578 from rmutter/ticket_20821 | Julien Phalip | |
| Fixed #20821 -- Added tooltips to Admin SelectBox widget | |||
| 2013-09-06 | adds fix and test for when a template is not specified at all to render(). ↵ | Ian Wilson | |
| fixes #21058. by jambonrose and ianawilson | |||
| 2013-09-06 | Fixed #20821 -- Added tooltips to Admin SelectBox widget | Rudy Mutter | |
| The Admin widget, which can be used to filter multiple selects can sometimes be too narrow and hide information such as user permissions. This commit adds tooltips to the select options so that a user can hover over and see the hidden text. | |||
| 2013-09-06 | Merge pull request #1575 from mburst/ticket_21049 | Andrew Godwin | |
| Fixed #21049 -- Fixed autoreload for Python 3 | |||
| 2013-09-06 | Moved get_serializer() call in dumpdata command. | Roberto Aguilar | |
| Moved the get_serializer() call within the condition that checks public serializers. This will allow exceptions other than SerializerDoesNotExist to be raised in order to provide the caller with useful information, e.g when pyyaml is not installed. | |||
| 2013-09-06 | Added yaml directly into BUILTIN_SERIALIZERS. | Roberto Aguilar | |
| The serializer definitely exists, but the dependent yaml module may not be installed. The register_serializer() function will catch exceptions and will stub in a fake serializer object that will raise the exception when the serializer is used. | |||
| 2013-09-06 | Adding 'sqlmigrate' command and quote_parameter to support it. | Andrew Godwin | |
| 2013-09-06 | Added tests for missing pyyaml. | Roberto Aguilar | |
| This test makes sure an YAML import errors are communicated to the caller rather than stating the serializer does not exist. | |||
| 2013-09-06 | Fixed some sphinx errors and added some links. | Tim Graham | |
| 2013-09-06 | Fixed #20646 -- Clarified the use of AbstractBaseUser.REQUIRED_FIELDS | Tim Graham | |
| Thanks craigbruce. | |||
| 2013-09-06 | Fixed #21043 -- Made resolve() handle reverse_lazy objects. | Dan Johnson | |
| Thanks Keryn Knight for the report. | |||
| 2013-09-06 | Fixed #21049 -- Fixed autoreload for Python 3 | Max Burstein | |
| Changed th system module values check to return a list. In Python 3 it returns a dict_view which could occassionally produce a runtime error of "dictionary changed size during iteration". | |||
| 2013-09-06 | Added new AdminSite attributes to 1.7 release notes | Adrian Holovaty | |
| 2013-09-06 | Fixed versionadded and ordering of note in admin/index.txt | Adrian Holovaty | |
| 2013-09-06 | Merge pull request #1567 from technivore/ticket_20970 | Tim Graham | |
| re-indented method documentation within RelatedManager | |||
| 2013-09-06 | Merge branch 't20812' | Florian Apolloner | |
| 2013-09-06 | Fixed #4287 -- Fixed NaN and +/- Infinity handling in FloatField | Daniel Langer | |
| NaN, +Inf, and -Inf are no longer valid values for FloatFields. | |||
| 2013-09-06 | re-indented method documentation within RelatedManager | Matthew Rich | |
| 2013-09-06 | Fixed #11857 -- Added missing 'closed' property on TemporaryFile class. | Christopher Adams | |
| - TemporaryFile now minimally mocks the API of the Python standard library class tempfile.NamedTemporaryFile to avoid AttributeError exceptions. - The symbol django.core.files.NamedTemporaryFile is actually assigned as a different class on different operating systems. - The bug only occurred if Django is running on Windows, hence why it was hard to diagnose. | |||
| 2013-09-06 | Fixed instructions for running a subset of tests. | Tim Graham | |
| 2013-09-06 | Merge pull request #1544 from evildmp/ticket_20920_rebase | Daniele Procida | |
| Fixed #20920 -- Consolidated F() and Q() documentation | |||
| 2013-09-06 | fixes #19988, allow html in ordinal for humanize | Garry Polley | |
| 2013-09-06 | Consolidated documentation for F() and Q() | evildmp | |
| 2013-09-06 | Migration autodetector now corerctly deals with proxy models | Andrew Godwin | |
| 2013-09-06 | Added AdminSite attributes for easily changing admin title. | Adrian Holovaty | |
| AdminSite now has overridable site_header, site_title and index_title attributes. Changed each admin view to pass these to the context (in a new AdminSite.each_context() method). The intent here is to make it easier to override these things in the common case, instead of having to override a template, which is a bigger burden. | |||
