| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-02-01 | Merge pull request #334 from dlo/tickets/18755 | Aymeric Augustin | |
| Fixed #18755 -- Wrapped long admin forms fields labels. | |||
| 2013-02-01 | Added myself to core developpers | Simon Charette | |
| 2013-02-01 | Documented ArchiveIndexView's date_list context variable. | Aymeric Augustin | |
| Refs #16218. | |||
| 2013-02-01 | Fixed #19715 -- Simplified findstatic output when verbosity set to 0 | Matt Robenolt | |
| 2013-02-01 | Fixed #19714 -- Updated documentation about TemplateView context | Claude Paroz | |
| Thanks Aramgutang for the report. Refs #17228. | |||
| 2013-02-01 | Set bigger maxDiff for ogrinspect tests | Claude Paroz | |
| 2013-02-01 | Renamed inspectdb field names for clarity | Simon Charette | |
| 2013-01-31 | Fixed dict randomization issue in inspectdb | Claude Paroz | |
| 2013-01-31 | Fixed #19341 -- Detected NullBooleanField when introspecting models | Claude Paroz | |
| Thanks Tim Bowden for the report. | |||
| 2013-01-31 | Fixed #19709 -- Fixed TimeField introspection on MySQL | Claude Paroz | |
| Thanks Eugene Grachev for the report. | |||
| 2013-01-31 | Added introspection tests for most of Django model fields | Claude Paroz | |
| 2013-01-31 | Merge pull request #690 from rafales/ticket_19711 | Aymeric Augustin | |
| Fixed #19711 -- Typo in django.test.simple.__all__ | |||
| 2013-01-31 | Fixed #19711 -- Typo in __all__ declaration in django/test/simple.py | Rafal Stozek | |
| 2013-01-31 | Deprecated undocumented warnings manipulation testing tools. | Ramiro Morales | |
| 2013-01-31 | Fixed #19708 -- Exception in timezone.override(None). | Aymeric Augustin | |
| Thanks rafales. | |||
| 2013-01-31 | Fixed #19692 -- Completed deprecation of mimetype in favor of content_type. | Aymeric Augustin | |
| Thanks Tim for the report and initial patch. | |||
| 2013-01-31 | Attempted to reduce version mismatch problems in the tutorial. | Aymeric Augustin | |
| 2013-01-30 | Merge pull request #686 from skrr/ticket_19703 | Claude Paroz | |
| Fixed #19703 -- Typo in get_declared_fields docstring | |||
| 2013-01-30 | Added file forgotten in 23e319d7. | Aymeric Augustin | |
| 2013-01-30 | Fixed #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-30 | Changed "versionadded" after the decision to backport. | Aymeric Augustin | |
| Refs #19076. | |||
| 2013-01-30 | Fixed #19076 -- Added content_type attribute to TemplateView. | Aymeric Augustin | |
| Thanks Gavin Wahl. | |||
| 2013-01-30 | Fixed #19160 -- Made lazy plural translations usable. | Aymeric Augustin | |
| Many thanks to Alexey Boriskin, Claude Paroz and Julien Phalip. | |||
| 2013-01-30 | fixed minor typo #19703 | Simon Kerr | |
| 2013-01-29 | Fixed #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-29 | Implemented some SpatiaLiteOperations as cached properties | Claude Paroz | |
| Previously, some properties weren't set unless confirm_spatial_components_versions() was explicitely called. | |||
| 2013-01-29 | Fixed typos in docs and comments | Tim Graham | |
| 2013-01-29 | Fixed #19690 - Removed unused import | Lucian Ursu | |
| Removed an import of a class unused in the Ajax example. | |||
| 2013-01-29 | Updated metrics on the documentation. | Aymeric Augustin | |
| 2013-01-29 | Fixed #19683 - Added a missing import in signing example. | Tim Graham | |
| Thanks sunsongxp@ for the report. | |||
| 2013-01-28 | Added HTML5 url input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-28 | Added HTML5 email input type | Claude Paroz | |
| Refs #16630. | |||
| 2013-01-28 | Fixed #19676 -- Supported 'self' foreign keys in inspectdb. | Aymeric Augustin | |
| Thanks Georgy Kutsurua for the report and Simon Charette for the patch. | |||
| 2013-01-28 | Fixed #19677 -- Introspection of recursive foreign keys under SQLite. | Aymeric Augustin | |
| Thanks Simon Charette. | |||
| 2013-01-27 | Fixed two malformed links. | Tim Graham | |
| 2013-01-26 | Fixed #16123 -- Ensured strptime receive proper string type | Claude Paroz | |
| strptime generates an UnicodeEncodeError when using a non-ascii unicode string on Python 2. | |||
| 2013-01-26 | Fixed #18483 -- Marked hidden field error string for translation | Claude Paroz | |
| Thanks Evil Clay for the report and Emil Stenstrom for the initial patch. | |||
| 2013-01-26 | Fixed #17158 -- Used a non-ambiguous representation of SQL queries | Aymeric Augustin | |
| when a correct representation cannot be obtained. | |||
| 2013-01-26 | Moved BooleanField 'required' validation in validate() | Claude Paroz | |
| 2013-01-26 | Fixed #19589 -- assertRegexpMatches is deprecated in Python 3.3. | Aymeric Augustin | |
| 2013-01-26 | Fixed #19540 -- Stopped using deprecated os.stat_float_times. | Aymeric Augustin | |
| 2013-01-26 | Fixed validation of email addresses when the local part contains an @. | Aymeric Augustin | |
| See also BaseUserManager.normalize_email -- it uses rsplit. Refs #4833. | |||
| 2013-01-25 | Used property decorators in django/forms.py | Claude Paroz | |
| 2013-01-25 | Fixed #18460 -- Fixed change detection of ReadOnlyPasswordHashField | Claude Paroz | |
| Thanks jose.sanchez et ezeep.com for the report and Vladimir Ulupov for the initial patch. | |||
| 2013-01-25 | Moved has_changed logic from widget to form field | Claude Paroz | |
| Refs #16612. Thanks Aymeric Augustin for the suggestion. | |||
| 2013-01-25 | Revert "Patch by Claude for #16084." | Ramiro Morales | |
| This reverts commit 2babab0bb351ff7a13fd23795f5e926a9bf95d22. | |||
| 2013-01-25 | Added more shortcuts to i18n docs in index page. | Ramiro Morales | |
| 2013-01-25 | Patch by Claude for #16084. | Ramiro Morales | |
| 2013-01-25 | Fixed #19665 -- Ensured proper stderr output for Command.run_from_argv | Claude Paroz | |
| Thanks Stefan Koegl for the report and Simon Charette for the review. | |||
| 2013-01-25 | Fixed #19577 - Added HTML escaping to admin examples. | Tim Graham | |
| Thanks foo@ for the report and Florian Apolloner for the review. | |||
