summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-06Merge pull request #1566 from adamsc64/ticket_11857Russell Keith-Magee
Fixed #11857 -- Added missing 'closed' property on TemporaryFile class.
2013-09-06Added Christopher Adams to the AUTHORS file.Christopher Adams
- Note that 'Chris Adams' and 'Christopher Adams' are two different contributors.
2013-09-06Fixed deprecation warning on Python 3Tim Graham
2013-09-06Fixed #21037 -- Made MigrationWriter raise a ValueError when serializing ↵Loic Bistuer
lambda functions.
2013-09-06Fixed Python 3 syntax error introduced in [c72392da]Tim Graham
2013-09-06Fixed test failure introduced in efd1e6096ee87fe332cf989ba5479e9461d0fb3a ↵Tim Graham
(sqlmigrate)
2013-09-06Merge pull request #1581 from mburst/patch-1Tim Graham
Added myself to the contributors list for work on #21049
2013-09-06Merge 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-06Cleanup commit after peer review.Roberto Aguilar
2013-09-06Merge pull request #1580 from ianawilson/ticket_16502Russell Keith-Magee
Fixed #16502 -- Fixed a TemplateDoesNotExist error that should be an ImproperlyConfigured. Assistance on the patch from #jambronrose.
2013-09-06Fixed 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-06Added name to AUTHORS (per Russell Keith-Magee)Roberto Aguilar
2013-09-06Updated 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-06fixed test name from an old, overly specific iteration of the testIan Wilson
2013-09-06Added myself to the contributors list.Max Burstein
2013-09-06Fixed #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-06Minor factorization.Aymeric Augustin
2013-09-06Merge pull request #1579 from ianawilson/ticket_21058Russell 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-06Removed unnecessary, leftover importsIan Wilson
2013-09-06Moved a settings usage up the stack in utils/formats.py #unsettingsAdrian Holovaty
2013-09-06Add -l alias for migrate --listAndrew Godwin
2013-09-06Fixed a link in topics/testing/overview.txtTim Graham
2013-09-06adds fix for SingleObjectTemplateResponseMixin raising a ↵Ian Wilson
TemplateDoesNotExist when it should have raised an ImproperlyConfigured. fixes 16502. by @ianawilson, @jambonrose
2013-09-06Fixed #19295 -- Documented that CachedStaticFilesStorage isn't compatible ↵Keith Edmiston
with runserver --insecure.
2013-09-06Added Rudy Mutter to AUTHORS for his work, ref #20821.Julien Phalip
2013-09-06Merge pull request #1578 from rmutter/ticket_20821Julien Phalip
Fixed #20821 -- Added tooltips to Admin SelectBox widget
2013-09-06adds fix and test for when a template is not specified at all to render(). ↵Ian Wilson
fixes #21058. by jambonrose and ianawilson
2013-09-06Fixed #20821 -- Added tooltips to Admin SelectBox widgetRudy 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-06Merge pull request #1575 from mburst/ticket_21049Andrew Godwin
Fixed #21049 -- Fixed autoreload for Python 3
2013-09-06Moved 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-06Added 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-06Adding 'sqlmigrate' command and quote_parameter to support it.Andrew Godwin
2013-09-06Added 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-06Fixed some sphinx errors and added some links.Tim Graham
2013-09-06Fixed #20646 -- Clarified the use of AbstractBaseUser.REQUIRED_FIELDSTim Graham
Thanks craigbruce.
2013-09-06Fixed #21043 -- Made resolve() handle reverse_lazy objects.Dan Johnson
Thanks Keryn Knight for the report.
2013-09-06Fixed #21049 -- Fixed autoreload for Python 3Max 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-06Added new AdminSite attributes to 1.7 release notesAdrian Holovaty
2013-09-06Fixed versionadded and ordering of note in admin/index.txtAdrian Holovaty
2013-09-06Merge pull request #1567 from technivore/ticket_20970Tim Graham
re-indented method documentation within RelatedManager
2013-09-06Merge branch 't20812'Florian Apolloner
2013-09-06Fixed #4287 -- Fixed NaN and +/- Infinity handling in FloatFieldDaniel Langer
NaN, +Inf, and -Inf are no longer valid values for FloatFields.
2013-09-06re-indented method documentation within RelatedManagerMatthew Rich
2013-09-06Fixed #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-06Fixed instructions for running a subset of tests.Tim Graham
2013-09-06Merge pull request #1544 from evildmp/ticket_20920_rebaseDaniele Procida
Fixed #20920 -- Consolidated F() and Q() documentation
2013-09-06fixes #19988, allow html in ordinal for humanizeGarry Polley
2013-09-06Consolidated documentation for F() and Q()evildmp
2013-09-06Migration autodetector now corerctly deals with proxy modelsAndrew Godwin
2013-09-06Added 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.