summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2013-05-10Add root_node and leaf_node functions to MigrationGraphAndrew Godwin
2013-05-10First phase of loading migrations from diskAndrew Godwin
2013-05-10Merge branch 'master' into schema-alterationAndrew Godwin
2013-05-10Adding a dependency graph class and testsAndrew Godwin
2013-05-10[py3] Made GeoIP tests pass with Python 3Claude Paroz
2013-05-10Fixed #20384 -- Forced GeoIP_open path argument to bytestringClaude Paroz
Thanks Julian Wachholz for the report.
2013-05-09Fixed #19733 - deprecated ModelForms without 'fields' or 'exclude', and ↵Luke Plant
added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute.
2013-05-09Further removal of static admin validation that can fail erroneouslyLuke Plant
2013-05-09Fixed conditional skipping of test for left/right lookup types.Aymeric Augustin
connection.ops.spatial_version is None for some backends (eg. MySQL) and the comparison fails on Python 3 with TypeError.
2013-05-09Made gis_terms be a set, rather than a dict with None for all keys.Alex Gaynor
2013-05-09Rest of the _meta.app_cache stuff. Schema tests work now.Andrew Godwin
2013-05-09Split out a BaseAppCache, make AppCache borg again, add _meta.app_cacheAndrew Godwin
2013-05-09Fixed #20215 -- Disabled persistent connections by default.Aymeric Augustin
2013-05-09Whoops. Need to be good and use six.Andrew Godwin
2013-05-09Improve error message for bad FK resolutionAndrew Godwin
2013-05-08Merge pull request #1049 from mfogel/remove-unescessary-parameter-checksAlex Gaynor
Remove unnecessary check on __set__ parameters.
2013-05-09Removed fragile admin validation of fields on ModelFormLuke Plant
Refs #19445
2013-05-08Added an HTTP status code to Django's WSGI application that was missing ↵Alex Gaynor
(reason unknown).
2013-05-08[py3] Stopped iterating on exceptions. Refs #20025.Aymeric Augustin
2013-05-08Fixed #20025 -- Pointed to a MySQLdb fork for Python 3.Aymeric Augustin
Made a few minor compatibility adjustments.
2013-05-08Fixed test failures on MySQL.Aymeric Augustin
Some tests failed when the time zone definitions were loaded in MySQL and pytz wasn't installed. This setup isn't supported.
2013-05-08Fixed #20256 -- Corrected startproject --template help textClaude Paroz
Thanks n0nam3 for the patch.
2013-05-07Remove unnecessary check on __set__ parameters.Mike Fogel
2013-05-07Fixed #20354 -- `makemessages` no longer crashes with `UnicodeDecodeError`Tai Lee
Handle the `UnicodeDecodeError` exception, send a warning to `stdout` with the file name and location, and continue processing other files.
2013-05-05Ensured that the javascript_catalog view doesn't leak translations.Florian Apolloner
2013-05-04One more changed import location of wrapsClaude Paroz
2013-05-04Fixed #18351 -- Added X-Robots-Tag header to sitemapsClaude Paroz
Thanks Michael Lissner for the report and initial patch, and Tom Mortimer-Jones for working on the patch.
2013-05-04Systematically imported wraps from functoolsClaude Paroz
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-02Updated translation templates and removed en translationsClaude Paroz
"en" translations have been mistakenly committed in 87cc3da81.
2013-05-01Fixed #19252 -- Added support for wheel packages.Florian Apolloner
Signed-off-by: Jannis Leidel <jannis@leidel.info>
2013-04-29Fixed #20330 -- Normalized spelling of "web server".Aymeric Augustin
Thanks Baptiste Mispelon for the report.
2013-04-28Fixed #18986 -- Improved error message for missing filesAymeric Augustin
in CachedStaticFilesStorage. Thanks zyegfryed for his work on the patch.
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-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-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-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-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-18Use `LOOKUP_SEP` in `get_or_create`.Simon Charette
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.
2013-04-15Properly used test skipping in OGRInspectTest TestCaseClaude Paroz
2013-04-14Fixed #18231 -- Made JavaScript i18n not pollute global JS namespace.Matthew Tretter
Also, use Django templating for the dynamic generated JS code and use more idiomatic coding techniques. Thanks Matthew Tretter for the report and the patch.
2013-04-13Fixed #17840 -- Generalized named placeholders in form error messagesClaude Paroz
Also fixed plural messages for DecimalField.
2013-04-13Fixed #4592: Made CheckboxSelectMultiple more like RadioSelectBaptiste Mispelon
I refactored RadioSelect and CheckboxSelectMultiple to make them inherit from a base class, allowing them to share the behavior of being able to iterate over their subwidgets. Thanks to Matt McClanahan for the initial patch and to Claude Paroz for the review.