summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-01Merge pull request #334 from dlo/tickets/18755Aymeric Augustin
Fixed #18755 -- Wrapped long admin forms fields labels.
2013-02-01Added myself to core developpersSimon Charette
2013-02-01Documented ArchiveIndexView's date_list context variable.Aymeric Augustin
Refs #16218.
2013-02-01Fixed #19715 -- Simplified findstatic output when verbosity set to 0Matt Robenolt
2013-02-01Fixed #19714 -- Updated documentation about TemplateView contextClaude Paroz
Thanks Aramgutang for the report. Refs #17228.
2013-02-01Set bigger maxDiff for ogrinspect testsClaude Paroz
2013-02-01Renamed inspectdb field names for claritySimon Charette
2013-01-31Fixed dict randomization issue in inspectdbClaude Paroz
2013-01-31Fixed #19341 -- Detected NullBooleanField when introspecting modelsClaude Paroz
Thanks Tim Bowden for the report.
2013-01-31Fixed #19709 -- Fixed TimeField introspection on MySQLClaude Paroz
Thanks Eugene Grachev for the report.
2013-01-31Added introspection tests for most of Django model fieldsClaude Paroz
2013-01-31Merge pull request #690 from rafales/ticket_19711Aymeric Augustin
Fixed #19711 -- Typo in django.test.simple.__all__
2013-01-31Fixed #19711 -- Typo in __all__ declaration in django/test/simple.pyRafal Stozek
2013-01-31Deprecated undocumented warnings manipulation testing tools.Ramiro Morales
2013-01-31Fixed #19708 -- Exception in timezone.override(None).Aymeric Augustin
Thanks rafales.
2013-01-31Fixed #19692 -- Completed deprecation of mimetype in favor of content_type.Aymeric Augustin
Thanks Tim for the report and initial patch.
2013-01-31Attempted to reduce version mismatch problems in the tutorial.Aymeric Augustin
2013-01-30Merge pull request #686 from skrr/ticket_19703Claude Paroz
Fixed #19703 -- Typo in get_declared_fields docstring
2013-01-30Added file forgotten in 23e319d7.Aymeric Augustin
2013-01-30Fixed #19034 -- Added proper i18n pluralization for max/min length ↵Claude Paroz
validation messages This was made possible by commit 3f1a0c0040b9. Thanks Evil Clay for the report and Alexey Boriskin his work on the ticket.
2013-01-30Changed "versionadded" after the decision to backport.Aymeric Augustin
Refs #19076.
2013-01-30Fixed #19076 -- Added content_type attribute to TemplateView.Aymeric Augustin
Thanks Gavin Wahl.
2013-01-30Fixed #19160 -- Made lazy plural translations usable.Aymeric Augustin
Many thanks to Alexey Boriskin, Claude Paroz and Julien Phalip.
2013-01-30fixed minor typo #19703Simon Kerr
2013-01-29Fixed #19552 -- Enhanced makemessages handling of ``{# #}``-style template ↵Ramiro Morales
comments. They are simply ignored now. This allows for a more correct behavior when they are placed before translatable constructs on the same line. Previously, the latter were wrongly ignored because the former were preserved when converting template code to the internal Python-syntax form later fed to xgettext but Python has no ``/* ... */``-style comments. Also, special comments directed to translators are now only taken in account when they are located at the end of a line. e.g.:: {# Translators: ignored #}{% trans "Literal A" %}{# Translators: valid, associated with "Literal B" below #} {% trans "Literal B" %} Behavior of ``{% comment %}...{% endcomment %}``tags remains unchanged. Thanks juneih at redpill-linpro dot com for the report and Claude for his work on the issue.
2013-01-29Implemented some SpatiaLiteOperations as cached propertiesClaude Paroz
Previously, some properties weren't set unless confirm_spatial_components_versions() was explicitely called.
2013-01-29Fixed typos in docs and commentsTim Graham
2013-01-29Fixed #19690 - Removed unused importLucian Ursu
Removed an import of a class unused in the Ajax example.
2013-01-29Updated metrics on the documentation.Aymeric Augustin
2013-01-29Fixed #19683 - Added a missing import in signing example.Tim Graham
Thanks sunsongxp@ for the report.
2013-01-28Added HTML5 url input typeClaude Paroz
Refs #16630.
2013-01-28Added HTML5 email input typeClaude Paroz
Refs #16630.
2013-01-28Fixed #19676 -- Supported 'self' foreign keys in inspectdb.Aymeric Augustin
Thanks Georgy Kutsurua for the report and Simon Charette for the patch.
2013-01-28Fixed #19677 -- Introspection of recursive foreign keys under SQLite.Aymeric Augustin
Thanks Simon Charette.
2013-01-27Fixed two malformed links.Tim Graham
2013-01-26Fixed #16123 -- Ensured strptime receive proper string typeClaude Paroz
strptime generates an UnicodeEncodeError when using a non-ascii unicode string on Python 2.
2013-01-26Fixed #18483 -- Marked hidden field error string for translationClaude Paroz
Thanks Evil Clay for the report and Emil Stenstrom for the initial patch.
2013-01-26Fixed #17158 -- Used a non-ambiguous representation of SQL queriesAymeric Augustin
when a correct representation cannot be obtained.
2013-01-26Moved BooleanField 'required' validation in validate()Claude Paroz
2013-01-26Fixed #19589 -- assertRegexpMatches is deprecated in Python 3.3.Aymeric Augustin
2013-01-26Fixed #19540 -- Stopped using deprecated os.stat_float_times.Aymeric Augustin
2013-01-26Fixed validation of email addresses when the local part contains an @.Aymeric Augustin
See also BaseUserManager.normalize_email -- it uses rsplit. Refs #4833.
2013-01-25Used property decorators in django/forms.pyClaude Paroz
2013-01-25Fixed #18460 -- Fixed change detection of ReadOnlyPasswordHashFieldClaude Paroz
Thanks jose.sanchez et ezeep.com for the report and Vladimir Ulupov for the initial patch.
2013-01-25Moved has_changed logic from widget to form fieldClaude Paroz
Refs #16612. Thanks Aymeric Augustin for the suggestion.
2013-01-25Revert "Patch by Claude for #16084."Ramiro Morales
This reverts commit 2babab0bb351ff7a13fd23795f5e926a9bf95d22.
2013-01-25Added more shortcuts to i18n docs in index page.Ramiro Morales
2013-01-25Patch by Claude for #16084.Ramiro Morales
2013-01-25Fixed #19665 -- Ensured proper stderr output for Command.run_from_argvClaude Paroz
Thanks Stefan Koegl for the report and Simon Charette for the review.
2013-01-25Fixed #19577 - Added HTML escaping to admin examples.Tim Graham
Thanks foo@ for the report and Florian Apolloner for the review.