summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-17Fixed #23495 -- Stopped swallowing real settings import errorClaude Paroz
Thanks papaloizouc for the report.
2014-09-17Updated release notes for backporting locale additions; refs #23368 and #23417.Tim Graham
2014-09-17Fixed #21775 -- Allowed customization of datafile for Oracle tablespaceJosh Smeaton
2014-09-17Fixed #23491 -- Clarified tutorial 3.Tim Graham
Thanks diek for the suggestion.
2014-09-17Fixed #23499 -- Error in built-in template tag "now" documentationJoseph Dougherty
2014-09-16Moved some people to "past team members".Tim Graham
2014-09-16Fixed typo in docs/internals/roles.txt and added words to spelling_wordlist.Tim Graham
2014-09-16Added 1.7.1 release notes for refs #23492.Tim Graham
2014-09-16Fixed #23492 -- Restored F.__deepcopy__.Baptiste Mispelon
This reverts commit 3a66035107a640c4905f0a5f247a45f32dbe16d7. A regression test was also added.
2014-09-16Fixed #19463 -- Added UUIDFieldMarc Tamlyn
Uses native support in postgres, and char(32) on other backends.
2014-09-15Fixed #23486 -- Corrected makemigrations output in tutorial 1.Tim Graham
Thanks nmarler for the report.
2014-09-15Fixed #23474 -- Prevented migrating backwards from unapplying the wrong ↵valtron
migrations.
2014-09-15Move my bio to "Past team members" section whilst I'm inactive.Simon Meers
2014-09-14Fixed occasional selenium test failure on Jenkins with Chrome 36+.Tim Graham
Previously find_element_by_id('id_password') on the next line failed with NoSuchElementException and selenium.page_source was <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body></html>. Possibly related: https://code.google.com/p/selenium/issues/detail?id=1969.
2014-09-13Fixed broken link in 1.7 release notes.Tim Graham
2014-09-13Factorized create_index_sql expressionClaude Paroz
2014-09-13Fixed #23397 -- Stripped whitespace from base64 during chunkingJason Hobbs
This insures the actual base64 content has a length a multiple of 4. Also added a test case for the failure.
2014-09-13Fixed #23466 -- Removed seconds from all locale time output formats.Malte Beckmann
2014-09-13Fixed #23461 -- Added EMAIL_TIMEOUT settingJosé Padilla
2014-09-13Forwardported 1.4.16 release notes.Tim Graham
2014-09-13Added 1.7.1 release notes for refs #23483.Tim Graham
2014-09-12Fixed #23484 -- Add comment in AppConfigStub clarifying app name vs app label.Carl Meyer
2014-09-12Fixed #23483 -- Prevented ImproperlyConfigured with dotted app namesSzilveszter Farkas
Made sure the app labels stay unique for the AppConfigStubs, so migrations wouldn't fail if two dotted app names has the same last part (e.g. django.contrib.auth and vendor.auth)
2014-09-12Added ops team to roles.txt.Tim Graham
2014-09-12Fixed #17101 -- Integrated django-secure and added check --deploy optionTim Graham
Thanks Carl Meyer for django-secure and for reviewing. Thanks also to Zach Borboa, Erik Romijn, Collin Anderson, and Jorge Carleitao for reviews.
2014-09-12Fixed #13843 -- Prevented AttributeError during geometry objects deletionClaude Paroz
2014-09-12Prevented Attribute error in GDAL objects deletionClaude Paroz
2014-09-12Fixed #19139 -- Made OpenLayersWidget follow GeoModelAdmin's modifiable ↵Flavio Curella
attribute Thanks Tim Graham for the review.
2014-09-11Fixed #23403 -- Fixed crash in contrib.sitemaps if lastmod returned a date ↵Tim Graham
rather than datetime. Thanks igorcc for the report.
2014-09-11Added link to LogRecord attributes in logging.txtGabe Jackson
2014-09-10Added ordering to prevent non-deterministic test failure; refs #23099.Tim Graham
2014-09-10Added some items to the 1.7.1 release notes.Tim Graham
2014-09-10Avoided using deprecated version of importlib; refs #23418.Tim Graham
2014-09-10Corrected indentation in a contrib.humanize test; refs #23340.Tim Graham
Thanks Zach Borboa for the report.
2014-09-10Fixed typo in topics/forms/formsets.txtTim Graham
2014-09-10Fixed #20743 -- Added support for keyfile/certfile in SMTP connections.Andi Albrecht
Thanks jwmayfield, serg.partizan, and Wojciech Banaś for work on the patch.
2014-09-10Corrected grammar in migrations error message.Markus Bertheau
2014-09-10Fixed #23417 -- Completed locale formats for zh_CN, zh_Hans, zh_Hant and zh_TW.Malte Beckmann
2014-09-10Fixed #23452 -- Prevented infinite migrations for empty unique/index_together.Markus Holtermann
Thanks fwkroon for the report.
2014-09-10Fixed an instance of 'an' before a word beginning with a consonant.Iain Dawson
2014-09-09Fixed flake8 warnings.Tim Graham
2014-09-09Fixed #23368 -- Overhauled the Welsh formats.py file.Duncan Parkes
The only debatable thing here is setting FIRST_DAY_OF_WEEK to 1. The only examples of calendars I can find in Welsh start on Monday, for example, the calendar on S4C (the only all Welsh TV station). http://www.s4c.co.uk/clic/c_clicschedule.shtml
2014-09-09Merge pull request #3208 from gregplaysguitar/masterAndrew Godwin
Note re migrations importing custom fields
2014-09-10Note re migrations importing custom fieldsGreg Brown
2014-09-09Fixed urlize after smart_urlquote rewriteClaude Paroz
Refs #22267.
2014-09-09Fixed #22267 -- Fixed unquote/quote in smart_urlquoteClaude Paroz
Thanks Md. Enzam Hossain for the report and initial patch, and Tim Graham for the review.
2014-09-09Avoid the word "stupid".Aymeric Augustin
There's always a better word.
2014-09-09Fixed #23442 -- Added django.__version__ per PEP 396.Tim Graham
Thanks abhillman for the suggestion and Claude Paroz for review.
2014-09-09Fixed #23398 -- Added helpful error message when runserver is accessed via HTTPSFlavio Curella
2014-09-09Fixed #11775 -- Made ABSOLUTE_URL_OVERRIDES work with models that don't ↵Tim Graham
define get_absolute_url(). Thanks jukvalim for the report and initial patch, and Preston Timmons for review.