summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-02-28Fixed #21948 -- Noted TEMPLATE_LOADERS requirement when overriding admin ↵Alex de Landgraaf
templates. Thanks django at patjack.co.uk for the suggestion.
2014-02-28Fix keyword agument names in RunPython to be positionalAndrew Godwin
2014-02-28Fixed doc typos.Tim Graham
2014-02-28Fixed #22028 -- Documented that database signals aren't emitted for apps ↵Tim Graham
that laack a models module. Thanks un33k for the suggestion and donjpacheco for the draft patch.
2014-02-28Fixed #22129 -- Added steps for creating superusers to tutorial.Greg Chapple
2014-02-28Removed Django 1.5 upgrade hints for {% url %} tag.Tim Graham
Refs #19280 and Refs #19392.
2014-02-28Fixed #21962 -- Added escape_html flag to ErrorDict.as_json()vvojvoda
2014-02-28Replaced deprecated assertEqualsClaude Paroz
2014-02-27Fixed #22136 -- Updated comment for Textarea widgetClaude Paroz
Thanks Aymeric Augustin for the suggestion.
2014-02-26Merge pull request #2374 from spaceexperiment/doc_typoAlex Gaynor
Fixed documention typo
2014-02-27Fixed documention typojibreel
2014-02-26Fixed #22056 -- Omitted non-package directories when collecting testsClaude Paroz
This allows us to ignore empty dirs or other unrelated dirs. Thanks Sebastian Pawluś for the report and the initial patch.
2014-02-26Fixed #21389 -- Accept most valid language codesBouke Haarsma
By removing the 'supported' keyword from the detection methods and only relying on a cached settings.LANGUAGES, the speed of said methods has been improved; around 4x raw performance. This allows us to stop checking Python's incomplete list of locales, and rely on a less restrictive regular expression for accepting certain locales. HTTP Accept-Language is defined as being case-insensitive, based on this fact extra performance improvements have been made; it wouldn't make sense to check for case differences.
2014-02-25Fixed bad grammar in a comment.Martin Matusiak
2014-02-25Fixed #22145 -- Clarified docs on Field.blank and Field.null options.navneet suman
Thanks skipjack at peru.com for the suggestion.
2014-02-25Removed a nonexistent link in the docs.Tim Graham
2014-02-25Fixed #12670 -- Added a note about permissions of files stored in ↵Rik
FILE_UPLOAD_TEMP_DIR. Thanks simon29 for the suggestion.
2014-02-25Fixed #22071 -- Added a warning regarding override_settings and aliasing.Henk Vos
Thanks EvilDMP for the suggestion.
2014-02-25Fixed docs typos.Szczepan Cieślik
2014-02-25Fixed #22142 -- Documented PostGIS 2 database creation during testsIacopo Spalletti
2014-02-24Fixed #22116 -- Added precision about WSGIPythonPath separatorClaude Paroz
Thanks donjpacheco for the initial patch.
2014-02-23Added tests for django.contrib.admindocsGreg Chapple
Refs #22015
2014-02-23Allowed some auth tests to be run independentlyClaude Paroz
2014-02-23Two whitespace changes to appease flake8Alex Gaynor
2014-02-23Merge pull request #2363 from nheyning/22019_add_objects_docDaniele Procida
Fixed #22019 -- added documentation on Model attributes
2014-02-23added documentation on Model attributesNicolaas Heyning
2014-02-23Fixed #22063 -- Added reference to NoReverseMatch from the reverse() ↵Alex de Landgraaf
documentation
2014-02-23Removed incorrect statement from docstringPatrick Robertson
The docstring of FilterExpression said that it shouldn't be instantiated from anywhere but the get_filters_from_token helper function. However, that helper function was deleted in commit 3ede006fc98f7e96ae9fb997872f78635576d5f8 and FilterExpression is instantiated from inside the compile_filter help function.
2014-02-23Fixed #21881 -- Clarify behavior of {% ssi %} template tag.Baptiste Mispelon
When using the `parsed` option, {% ssi %} has the same limitation as {% include %}, namely that the rendering of the included template is done separately. Thanks to trac user nagyv for the report and to alextreme for the patch.
2014-02-23Fixed #22095 -- Enabled backward migrations for RunPython operationsAndrew Gorcester
Added reversible property to RunPython so that migrations will not refuse to reverse migrations including RunPython operations, so long as reverse_code is set in the RunPython constructor. Included tests to check the reversible property on RunPython and the similar RunSQL.
2014-02-22Fixed #22113 -- changed object_name to model_name in CBV docs.Marcin Sokół
Thanks to trac user nikunj.sg for the report.
2014-02-22Fixed #21741 -- Fixed render_to_string to stop pushing empty dictionaries to ↵Baptiste Mispelon
its Context Thanks to kezabelle for the report and original patch and to numerodix for his improved patch.
2014-02-22Fixed warnings when building the documentation.Baptiste Mispelon
2014-02-22Fixed #22032 -- added documentation for settings.MIGRATION_MODULESGreg Chapple
2014-02-22Extra new line to make flake8 happyAlex Gaynor
2014-02-22Fixed #22092 -- Documented ResolverMatch.view_nameJochem Oosterveen
2014-02-22Fixed #22120 -- Documented persistent activation of languages and cleaned up ↵Erik Romijn
language session key use
2014-02-22Fixed #21902 -- Documented search order for list_display.Marcin Sokół
2014-02-22Fixed #22123 -- EmailValidator now also accepts IPv6 literals in addressesErik Romijn
2014-02-22Fixed #21435 -- Improved error message when urlconf is empty.Baptiste Mispelon
The new error message now hints that the most likely issue is a circular import. Thanks to trac user elena for the report and to bpeschier for the original patch.
2014-02-22Fixed #22007 -- Fixed cbv docs - make imports consistentMartin Matusiak
Thanks to trac user kinjal.dixit for the report.
2014-02-22Deprecated django.utils.text.javascript_quote.Baptiste Mispelon
Refs #21725.
2014-02-22Fixed test failures when running in a narrow Python build.Baptiste Mispelon
2014-02-22Added some tests for #21725.Baptiste Mispelon
2014-02-22Added tests and minified javascript missing in ↵Bas Peschier
83a3add4bed8d8d49f93b30c817c66908b0a26ba. Refs #22038.
2014-02-21Fixed #22112 -- Added RedirectView.pattern_name to CBV flattened indexAlasdair Nicol
Also moved accessor method get_redirect_url next to its attribute url for consistency with the other views. Thanks nikunj.sg for the report
2014-02-20Merge pull request #2333 from davesque/sql-doc-fixesAlex Gaynor
Capitalize SQL keywords
2014-02-20Capitalize SQL keywordsDavid Sanders
2014-02-20Merge pull request #2332 from davesque/sql-doc-fixesAlex Gaynor
Capitalize SQL keywords
2014-02-20Capitalize SQL keywordsDavid Sanders