summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-09-20Fixed #20702 -- Deprecated get_formsets in favor of get_formsets_with_inlines.tschilling
Thanks stanislas.guerra at gmail.com for the report.
2013-09-19Merge pull request #1644 from PaulMcMillan/bump_hash_iterationsPaul McMillan
Increase default PBKDF2 iterations
2013-09-19Added missing "in" in sentence.Markus Amalthea Magnuson
2013-09-19Fixed #9532 -- Added min_num and validate_min on formsets.yokomizor
Thanks gsf for the suggestion.
2013-09-19Increase default PBKDF2 iterationsPaul McMillan
Increases the default PBKDF2 iterations, since computers have gotten faster since 2011. In the future, we plan to increment by 10% per major version.
2013-09-19Fixed #21125 -- Removed support for cache URI syntaxCurtis Maloney
2013-09-19Reworked security issue list to be per-issue, not per-release.Russell Keith-Magee
2013-09-19Corrected markup problems in new security summary page.Russell Keith-Magee
2013-09-18Fixed two typos in the docsAlex Gaynor
2013-09-18Fixed a typo in the docsAlex Gaynor
2013-09-18Fix #21121: Add archive of security issues.James Bennett
2013-09-18Fixed #19414 -- Added admin registration decoratorBrian Holdefehr
Thanks stavros for the suggestion.
2013-09-18Fixed #21116 -- Made usage of manage.py in docs more consistent.Tim Graham
Thanks daniel.quattro at gmail.com for the report.
2013-09-18Fixed #4278 -- Added a dirs parameter to a few functions to override ↵Berker Peksag
TEMPLATE_DIRS. * django.template.loader.get_template() * django.template.loader.select_template() * django.shortcuts.render() * django.shortcuts.render_to_response() Thanks amcnabb for the suggestion.
2013-09-17Fixed #21024 -- Documented how to deprecate a feature.Tim Graham
2013-09-17Updated examples in the docs after eade315d.Aymeric Augustin
2013-09-16Reworded a paragraph in the logging docs.Ramiro Morales
2013-09-16Fixed #17627 -- Renamed util.py files to utils.pyTim Graham
Thanks PaulM for the suggestion and Luke Granger-Brown and Wiktor Kołodziej for the initial patch.
2013-09-15Cleaned up 1.5.4/1.4.8 release notesTim Graham
2013-09-15Ensure that passwords are never long enough for a DoS.Russell Keith-Magee
* Limit the password length to 4096 bytes * Password hashers will raise a ValueError * django.contrib.auth forms will fail validation * Document in release notes that this is a backwards incompatible change Thanks to Josh Wright for the report, and Donald Stufft for the patch. This is a security fix; disclosure to follow shortly.
2013-09-13Fixed #21101 -- Updated urlize documentation to mention email addressesGoetz
2013-09-13Fixed #21100 -- Noted that Create/UpdateViews.fields is new in 1.6Tim Graham
Thanks AndrewIngram for the suggestion.
2013-09-13Fixed #21094 -- Updated reuseable apps tutorial to use pip for installation.Tim Graham
Thanks ylb415 at gmail.com for the suggestion.
2013-09-13Documentation -- added instructions on working with pull requestsKevin Christopher Henry
Since non-core contributors are asked to review patches, instructions on working with pull requests were added to the Working with Git and GitHub page (based on the existing instructions in the core committers page).
2013-09-13Fixed #21095 -- Documented new requirement for dates lookups.Matt Austin
Day, month, and week_day lookups now require time zone definitions in the database.
2013-09-12Fixed a couple of typos in GeoDjango docs.Ramiro Morales
2013-09-12Minor typo fix in django.contrib.auth.models.User docsPhaneendra Chiruvella
2013-09-11Fixed #20887 -- Added a warning to GzipMiddleware in light of BREACH.Tim Graham
Thanks EvilDMP for the report and Russell Keith-Magee for the draft text.
2013-09-11Documentation -- Improved description of cache argumentsKevin Christopher Henry
- Fixed some grammar and formatting mistakes - Added the type and default for CULL_FREQUENCY - Made the note on culling the entire cache more precise. (It's actually slower on the filesystem backend.)
2013-09-10Added 1.4.7/1.5.3 release notesTim Graham
2013-09-10Fix broken sphinx reference to staticfiles.Tarjei Husøy
2013-09-10Fixed #20919 -- Extended assertRedirects to be able to avoid fetching ↵Juan Catalano
redirect's response. Thanks mjtamlyn for the suggestion.
2013-09-10Fixed #21083 - Fixed spelling in tutorial.Tim Graham
Thanks jimmy.kjaersgaard at gmail.com for the report.
2013-09-10Fixed #16534 -- Improved ability to customize DiscoverRunnerTim Graham
Added DiscoverRunner.test_suite and .test_runner attributes. Thanks tomchristie for the suggestion and jcd for the patch.
2013-09-10Fixed #21075 - Improved doc for calling call_command with arguments.oz123
2013-09-09Fixed a little mistake in Django 1.7 release notesRomain B.
2013-09-09Fixed #17262 -- Refactored tzinfo implementations.Aymeric Augustin
This commit deprecates django.utils.tzinfo in favor of the more recent django.utils.timezone which was introduced when Django gained support for time zones.
2013-09-09Fixed #19885 -- cleaned up the django.test namespaceKevin Christopher Henry
* override_settings may now be imported from django.test * removed Approximate from django.test * updated documentation for things importable from django.test Thanks akaariai for the suggestion.
2013-09-09Improved release notes for ticket #10164Tim Graham
Thanks Aymeric for the suggestions. refs #10164
2013-09-09Fixed spelling; refs #16895.Tim Graham
Thanks Panagiotis Issaris for the report.
2013-09-09Fixed #16895 -- Warned about cost of QuerySet orderinge0ne
Thanks outofculture at gmail.com for the suggestion.
2013-09-08Fix #20745: Don't silence TypeError raised inside templates.Baptiste Mispelon
Thanks to robin for the report and claudep for the review.
2013-09-08Repositioned two paragraphs in the release notes.Aymeric Augustin
2013-09-07Fixed #21068 -- Added some docs for DiscoverRunnerTim Graham
Thanks jcd.
2013-09-07Fixed #20409 -- Clarified how unique_for_date works when USE_TZ is set.Aymeric Augustin
2013-09-07Fixed #20005 -- Documented that Oracle databases need execute permission on ↵Tim Graham
SYS.DBMS_LOB. Thanks jafula for the suggestion.
2013-09-07Added a note about LTS releases.Jacob Kaplan-Moss
2013-09-07Fixed #20876 -- Changed Poll model name in tutorial to QuestionRodolfo
2013-09-07Fixed #20938 -- Added cached sessions note to deployment checklist.Tim Graham
Thanks mjtamlyn for the suggestion.
2013-09-07Merge pull request #1592 from pablomouzo/fix-admin-view-response-methods-docsTim Graham
Improved docs for `contrib.admin.options.ModelAdmin.response_*`