summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-09-07Merge pull request #336 from dlo/tickets/18915Alex Gaynor
remove unused import in decoupling URLs tutorial, closes #18915
2012-09-07[py3] Documented forwards-compatible aliasesAymeric Augustin
that will be available as of version 1.4.2.
2012-09-07remove unused import in decoupling URLs tutorial, closes #18915Dan Loewenherz
The `include` function isn't used in polls/urls.py.
2012-09-07Merge pull request #335 from dlo/tickets/18875Alex Gaynor
specify any orderable field can be specified in get_latest_by, closes #18875
2012-09-07specify any orderable field can be specified in get_latest_by, closes #18875Dan Loewenherz
2012-09-07wrap long words in field labels on admin forms, closes #18755Dan Loewenherz
Otherwise, words overlap into the fields themselves, which makes the labels unreadable.
2012-09-07Cleaned up some small bits of the ORM, including removing an import *.Alex Gaynor
2012-09-07clarify clean_<field> docs, ticket #18917Brad Pitcher
2012-09-06Made use of property decorator in formsets.pyClaude Paroz
2012-09-06Formatting fix for host headers sectionDavid Fischer
2012-09-06Added CSRF with HTTPS/HSTS and forwarding noteDavid Fischer
2012-09-06Added note about Strict Transport Security (HSTS)David Fischer
2012-09-06Fixed minor typo in 1.3 release notes.Simon Meers
2012-09-05Fixed #18687: Removed test_performance_scalabilityAymeric Augustin
Even after repeated adjustment of the constants, this test still fails randomly. It has educated us to ignore messages from Jenkins, to a point where we missed some actual failures. In addition, it accounts for a non-negligible percentage of the run time of the test suite just by itself. Since no one has proposed a convincing patch in months, I'm going to remove the patch. We can't keep a randomly failing test forever.
2012-09-05Merge pull request #318 from Matt-Stevens/masterAdrian Holovaty
Small doc change: clarify day and month
2012-09-05Fixed #18904 - Typo in MySQL link; thanks Johie Anderson for the report.Tim Graham
2012-09-05Add some state management methods to AppCache.Andrew Godwin
2012-09-05Merge branch 'master' into schema-alterationAndrew Godwin
2012-09-05Merge pull request #325 from shabda/ticket_18905Tim Graham
Fixed #18905 - Updated URL for Django People
2012-09-05Fixed #18905 - Changed to new url for DjangopeopleShabda Raaj
2012-09-04Negligible spacing fix in auth/forms.pyAdrian Holovaty
2012-09-04Fixed #9967 - Added a link to a bug that affects contrib.comments redirects.Tim Graham
2012-09-04Implement primary key changingAndrew Godwin
2012-09-04Fixed #18824 -- Allow deleting a setting from overriden settingsClaude Paroz
2012-09-04Fixed #18902 -- Made force_bytes properly handle exception inputClaude Paroz
Thanks Aymeric Augustin for the report and the initial patch.
2012-09-03Changes day to from 2 to 30Matt Stevens
2012-09-03Clarifies day and month in example querysetMatt Stevens
2012-09-01Merge pull request #315 from streeter/auth-docs-cleanup-patchTim Graham
Clarify some of the password reset docs
2012-09-01Fixed #17892 -- Do not include whole RegexURLPattern lists in ↵Claude Paroz
RegexURLResolver repr Thanks milosu for the report and the initial patch.
2012-09-01Fixed #18840 - Added a mentioned of the upload_to parameter to the ModelForm ↵Tim Graham
example in file uploads.
2012-09-01Fixed #18212 -- Standardized arguments of GenericIPAddressFieldClaude Paroz
Unlike other model fields, the newly introduced (1.4) GenericIPAddressField did not accept verbose_name and name as the first positional arguments. This commit fixes it. Thanks Dan McGee for the report and the patch.
2012-09-01Fixed #13608 - Noted that template lookups use literal values.Tim Graham
2012-09-01Fixed #17378 - Added a flattened index for class-based views.Tim Graham
Thanks Preston Holmes for the patch.
2012-09-01Fixed #9920 - Clarfied empty string vs. localhost in settings database host.Tim Graham
Thanks chromano for the draft patch.
2012-09-01Fixed #16936 - Updated javascript for CSRF protection.Tim Graham
Thanks Idan Gazit for the patch.
2012-08-31Fixed #18642 - Added a note suggesting the use of render() rather than ↵Tim Graham
render_to_response() if you need RequestContext in your template.
2012-08-31Clarify some of the password reset docsChris Streeter
Some of the wording was copied from the change password section. Updated the text to clarify that the we are talking about password resets.
2012-08-31Fixed #16309 - Made ModelAdmin.list_filter versionchanged annotations more ↵Tim Graham
specific to the sections that changed; thanks akaihola for the suggestion and patch.
2012-08-31Added 1.4.1 and 1.3.2 release notesClaude Paroz
2012-08-31Fixed #14556 - Documented how to use flatpages in URLconf; thanks Claude ↵Tim Graham
Paroz for the draft patch.
2012-08-31Merge pull request #310 from juanpex/masterFlorian Apolloner
fix documentation testing of Selenium WebDriverWait
2012-08-31Merge pull request #311 from gutworth/py3-docFlorian Apolloner
Indexing bytes is the problem not slicing.
2012-08-31Merge pull request #313 from davidfischer/masterFlorian Apolloner
Fix comment typo
2012-08-30Fixed #18883 -- added a missing self parameter in the docsAlex Gaynor
2012-08-30db_index alteration mostly workingAndrew Godwin
2012-08-30Fixed #18384 - Reformatted GeoDjango install instructions slightly.Tim Graham
2012-08-30Made get_table_description also return the size of char fields on SQLiteClaude Paroz
2012-08-30Fixed #5725 -- Fixed varchar column size introspection for MySQLClaude Paroz
Thanks ferdonline for the initial patch and Karen Tracey for the related post on django-users.
2012-08-30Fixed #18751 -- Cleaned up BaseFormSet._should_delete_formClaude Paroz
We can do that now that cleaned_data is guaranteed to be present. Related to [121fd109]. Thanks Simon Charette for his work on the ticket.
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
smart_str/smart_text should only be used when a potential lazy string should be preserved in the result of the function call.