summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-20[1.7.x] Bump version numbers for 1.7 beta 1.1.7b1James Bennett
2014-03-20Fixed #22163 -- Stopped ignoring unhandled kwargs in select_for_update.Aymeric Augustin
2014-03-20Fixed a small collection of flake8 violations that had snuck inAlex Gaynor
2014-03-20Removed a file accidentally added in 81f5408c7a16b8c79053950f05fe7a873506ca55.Baptiste Mispelon
2014-03-19Mark model renaming as irreversible for now (#22248)Andrew Godwin
2014-03-19Fixed #22275: unique_together broken if ForeignKey split into new file.Andrew Godwin
Thanks to bak1an for the patch.
2014-03-19Merge pull request #2221 from bmispelon/LazyObject-refactorAndrew Godwin
Fixed #21840 -- Moved dunder methods from SimpleLazyObject to LazyObject...
2014-03-19Replaced reference to ModelAdmin.get_formsets() (deprecated) with ↵Daniel Hahler
get_formsets_with_inlines().
2014-03-19Fixed #22253 -- Added django-i18n to the mailing lists docs.Anubhav Joshi
Thanks bmispelon for the suggestion.
2014-03-19Fixed migration so MySQL GIS test doesn't fail; refs #22001.Eric Palakovich Carr
The test previously failed with the error: (1170, "BLOB/TEXT column 'name' used in key specification without a key length")
2014-03-18Fixed regression in file locking on some platforms.smallcode
Some platforms with os.name == 'posix' do not have the fcntl module, e.g. AppEngine. refs #19373.
2014-03-18Fixed a regression from 2e5b82f6277227b69e9a6c5261a6deb14fff15dcFlorian Apolloner
2014-03-18Made a test app label unique.Florian Apolloner
2014-03-18Mentioned that ``dumpdata --natural`` is deprecated.Daniel Hahler
2014-03-18Fixed #22283 -- Updated documentation referring to non-existent tuples.Matthew Somerville
2014-03-18Fix any sqlite field migration deleting all implicit m2m tablesChris Beaven
Fixes #22281
2014-03-17Amended login required mixin documentation to honor **initkwargs.Simon Charette
2014-03-17Fixed #21179 -- Added a StreamingHttpResponse example for CSV files.zedr
Thanks charettes for the suggestion.
2014-03-17Fixed #22006 -- Documented how to write a login_required mixin for CBVs.Tim Graham
Thanks django at patjack.co.uk for the suggestion and mockforest for the draft patch.
2014-03-16Fixed #21860 -- Added to_field_name to ModelChoiceField docs.Anubhav Joshi
Thanks Keryn Knight for the suggestion.
2014-03-16Fixed #21991 -- Added warning regarding tests failure if locales not installed.Anubhav Joshi
Thanks reidrac for the report.
2014-03-16Fixed #22242 -- Documented common cookie size limit.Daniel Pyrathon
2014-03-15Remove u prefixes, skip test unless spatial db.Marc Tamlyn
Refs #22001, d22b291890c1736a40c0ad97448c7318df2eebb2
2014-03-15Fixed #22184 -- Allowed template_tests.tests to be run isolatedAnubhav Joshi
2014-03-15Merge pull request #2430 from NathanRSmith/ticket_21989Russell Keith-Magee
Fixed #21989 - Modified first day of week in AU locale. Although Australia is a signatory to ISO 8601, there's a lot of evidence to suggest that this is in the same category as "officially, the USA uses metric". See the ticket for supporting details.
2014-03-14Fixed #22001 -- Ensure db_type is respected.Marc Tamlyn
db_parameters should respect an already existing db_type method and return that as its type string. In particular, this was causing some fields from gis to not be generated. Thanks to @bigsassy and @blueyed for their work on the patch. Also fixed #22260
2014-03-14Changed start of week for Australia to Sunday as requested in ↵Nathan Smith
https://code.djangoproject.com/ticket/21989
2014-03-14Fixed #22272 -- Fixed regression in DecimalField when using decimal_places=0.Baptiste Mispelon
Thanks to trac user merb for the report.
2014-03-14Merged model_forms_regress with model_forms testsClaude Paroz
2014-03-14Fixed #6103 -- Splitted tests in model_forms testsClaude Paroz
2014-03-13Fixed #22245 -- Avoided widget overwrite in forms.IntegerField subclassesClaude Paroz
Thanks Jeroen Pulles for the report and Simon Charette for the review.
2014-03-13Fixed #22262 -- Added the correct line in the last example of Translator linesDejan Noveski
2014-03-13Fixed a grammar error in topics/i18n/translation.Iain Dawson
Hooks are quantum; you can not have an amount of them.
2014-03-13Simplified implementation of collectstatic command.Baptiste Mispelon
Since d2e242d16c6dde6f4736086fb38057424bed3edb made isinstance() calls work correctly on LazyObject, we can simplify the implementation of is_local_storage added in 7e27885c6e7588471fd94a4def16b7081577bdfc.
2014-03-13Fixed #21840 -- Moved dunder methods from SimpleLazyObject to LazyObject.Baptiste Mispelon
This commit also added tests for LazyObject and refactored the testsuite of SimpleLazyObject so that it can share test cases with LazyObject.
2014-03-13Skip test for saving microseconds on backends which do not support it.Shai Berger
2014-03-12Fixed #20292: Pass datetime objects (not formatted dates) as params to OracleShai Berger
This seems worthwhile in its own right, but also works around an Oracle bug (in versions 10 -- 11.1) where the use of Unicode would reset the date/time formats, causing ORA-01843 errors. Thanks Trac users CarstenF for the report, jtiai for the initial patch, and everyone who contributed to the discussion on the ticket.
2014-03-12Flake8 correctionsShai Berger
2014-03-12Fixed test failure on Oracle: model_fields.tests.test_float_validates_objectShai Berger
Failing test introduced in fix for refs #22210.
2014-03-11Fixed #22217 - ManyToManyField.through_fields fixes.Akis Kesoglou
- Docs description of arguments mix up. - Keep it from erroneously masking E332 check. - Add checks E338 and E339, tweak message of E337.
2014-03-11Remove failing test while we fix the underlying bugAndrew Godwin
2014-03-11Fixed test failures on Windows.Tim Graham
refs #21092 and 8d7e048a8b428bebe82be735a84570f9250441e6
2014-03-11Merge pull request #2418 from ramiro/21293-tweakRamiro Morales
Tweak password admin change form view context. Refs #21293.
2014-03-11Tweak password admin change form view context. Refs #21293.Ramiro Morales
2014-03-11Updated spelling_wordlist.Tim Graham
2014-03-11Fixed typo in docs/ref/django-admin.txtTim Graham
Thanks Wes Kendall for the report.
2014-03-11Fixed #21293 -- Adjusted admin header CSS to fix admin password reset template.Tim Graham
By removing the absolute positioning of the usertools div and using float positioning, the #header div will expand based on the height of its content. Thanks EvilDMP for the report.
2014-03-11Fix AlterField migrations that are related to a RenameModel migrationChris Beaven
2014-03-11Fix autodetector creation of RenameModel migration to capitalize model namesChris Beaven
2014-03-10Added myself to the committers list, finally.Shai Berger