summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-04Used ngettext in a formsets error messageClaude Paroz
Several languages will distinctly translate '%d or fewer forms' depending on the variable.
2013-05-03Added clarification to the docs, pointing out that unique_for_date only ↵Aaron Cannon
considers the date portion of DateTime fields.
2013-05-03Added myself to the committers list.Daniel Lindsley
2013-05-02Updated translation templates and removed en translationsClaude Paroz
"en" translations have been mistakenly committed in 87cc3da81.
2013-05-01Fixed #20338 - Document FQDN behavior with ALLOWED_HOSTSMichael Manfre
2013-05-01Fixed test failures introduced in a5becad9094e5c5403b692b9a7b3a6ffaabf64a3.Florian Apolloner
2013-05-01Fixed #19252 -- Added support for wheel packages.Florian Apolloner
Signed-off-by: Jannis Leidel <jannis@leidel.info>
2013-04-30Fixed #20336 -- Removed obsolete paragraph from the docs.Aymeric Augustin
Thanks Baptiste Mispelon.
2013-04-30Merge pull request #1034 from infraredgirl/masterPreston Holmes
Fix two typos in database transactions docs
2013-04-30Fix two typos in database transactions docsAna Krivokapic
2013-04-29Fixed #20330 -- Normalized spelling of "web server".Aymeric Augustin
Thanks Baptiste Mispelon for the report.
2013-04-29Corrected "it's" to "its" when used possessively.Thomas Thurman
Fixed #20327.
2013-04-28Tested that get_or_create raises IntegrityError.Aymeric Augustin
It used to raise "DatabaseError: no such savepoint" with the old transaction management. Closes #15117.
2013-04-28Fixed #18986 -- Improved error message for missing filesAymeric Augustin
in CachedStaticFilesStorage. Thanks zyegfryed for his work on the patch.
2013-04-28Pointed to the docs version switcher in tutorial 1.Aymeric Augustin
Refs #20324. Thanks dwisehart for the suggestion.
2013-04-28Fixed #18336 -- Doubled request_queue_size.Aymeric Augustin
This reduces random failures to load static files with Google Chrome.
2013-04-26Fixed #20321 -- Added missing key name in MergeDict KeyError messageClaude Paroz
Thanks mark.harviston et gmail.com for the report.
2013-04-25Converted a list comprehension into a generator expression in query_utils.pyAdrian Holovaty
2013-04-25Negligible formatting fixes in query_utils.pyAdrian Holovaty
2013-04-25Removed an errant ipdb import from commit 9777442Adrian Holovaty
2013-04-25Updated Transifex links to the Django projectClaude Paroz
Translations for the Django framework are now hosted on the django-core Transifex project, and the django project is only dedicated to a team-only hub project.
2013-04-24Merge pull request #1029 from carmi/patch-1Simon Charette
Fix CharField typo in legacy-databases.txt docs
2013-04-24Fix CharField typo in legacy-databases.txt docsEvan Carmi
The example Person model in the legacy databases HowTo had a typo referring to ChaField instead of Charfield
2013-04-24Fixed documentation of disable_constraint_checkingMichael Manfre
The docstring and base implementation of disable_constraint_checking do not indicate that a return value is expected for proper behavior.
2013-04-24Fixed a rST bug in the README template in the reusable apps docs.Jannis Leidel
2013-04-24Fixed the reusable apps docs to use a rst file extension for the README and ↵Jannis Leidel
follow PEP8 a bit more.
2013-04-23Fixed #20307 -- Word repeated in tutorial.Thomas Thurman
Replaced "the the" in the tutorial with "the".
2013-04-23Clearer explanation when exception has no messageMarti Raudsepp
"No exception supplied" is misleading; actually there is an exception, but there's no message string.
2013-04-22Fixed #20270 -- Fixed error in AjaxResponseMixin documentationBaptiste Mispelon
2013-04-22Fixed #19211 -- Adapted tutorial for Python 3Claude Paroz
2013-04-22Merge pull request #1024 from jktravis/masterPreston Holmes
Updated reusable apps doc's review of project layout
2013-04-21Added 'polls' sub directory under static and reorganized to more accurately ↵jktravis
represent the project; compared using 'tree' command.
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-04-20Removed unused imports.Juan Catalano
2013-04-20Fixed #20104 -- Changed VersionDirective in order to avoid ambiguity.Juan Catalano
As explained in ticket #20104, the use of versionchanged/versionadded was confusing. To solve this ambiguity these directives no longer accept a second argument but now they only receive the version number (1st arg) and then a content with the proper comment.
2013-04-20Updated tutorial INSTALLED_APPS section (removed contrib.sites)Claude Paroz
2013-04-19Fix != operations on lazy objects.Alex Gaynor
2013-04-19Fixed #20276 -- Implemented __bool__ for MergeDictAnton Baklanov
MergeDict evaluates now to False if all contained dicts are empty. Thanks til for the report and the initial patch.
2013-04-19Fix schema editor interaction with new transactionsAndrew Godwin
2013-04-19Explained the pattern for special methods compatibility.Aymeric Augustin
2013-04-18Complemented documentation following commit be9ae693cClaude Paroz
Refs #17840. Thanks Carl Meyer for noticing the omission.
2013-04-18Fixed #20285 - Added missing commas in translation docs.Tim Graham
Thanks cody.j.b.scott@
2013-04-18Fixed #20286 - Typo in static files docs.Tim Graham
Thanks bmispelon.
2013-04-18Merge branch 'master' into schema-alterationAndrew Godwin
Conflicts: django/db/backends/__init__.py django/db/backends/mysql/base.py django/db/backends/oracle/base.py django/db/backends/oracle/creation.py django/db/backends/postgresql_psycopg2/base.py django/db/backends/sqlite3/base.py django/db/models/fields/related.py
2013-04-18Fixed #20282 -- Typo in WSGI docs.Aymeric Augustin
2013-04-18Use `LOOKUP_SEP` in `get_or_create`.Simon Charette
2013-04-16Refs #14567 -- Fixed failing test that wasn't being run.Carl Meyer
2013-04-16Fixed #20266 -- Updated view example in CBV introductionClaude Paroz
Thanks jim at hellolocals.com for the report.
2013-04-15Fixed #20262 -- Replaced a reference to the wrong model in the CBV doc.Simon Charette
Thanks to mossplix for the review and bmispelon for the review.
2013-04-15Updated get_ogr_db_string in inspectapp tests to support MySQL/SpatialiteClaude Paroz
The OGRInspectTest.test_time_field does still not succeed with these databases (even when removing the postgis guard), but at least it's now possible to setup a datasource.