summaryrefslogtreecommitdiff
path: root/docs/internals
AgeCommit message (Collapse)Author
2014-08-01Renamed "committers" to "team".Aymeric Augustin
2014-07-29Fixed #23079 -- Added data loss issues to those that will be backported to LTS.Tim Graham
2014-07-27Correctly remove extraneous text about keys from previous edit.James Bennett
2014-07-27Update from key ID in security.txt to authorized release keys list.James Bennett
2014-07-26Fixed #23103 -- Added contributing tutorial link to contributing index.Petras Zdanavičius
2014-07-25Mark initial_data as deprecated separately from syncdb. Refs #23077.Andrew Godwin
2014-07-21Replaced instances of 'his/her' with 'their'.Iain Dawson
2014-07-13Fixed #23015 -- Fixed major/minor release terminology in docs.Tim Graham
2014-07-11Bump the default iterations for PBKDF2.Alex Gaynor
The rate at which we've increased this has not been keeping up with hardware (and software) improvements, and we're now considerably behind where we should be. The delta between our performance and an optimized implementation's performance prevents us from improving that further, but hopefully once Python 2.7.8 and 3.4+ get into more hands we can more aggressively increase this number.
2014-07-02Removed myself from committers.Daniel Lindsley
2014-07-02Fixed #18108 -- Added instructions for translating documentation.Tim Graham
Thanks Claude Paroz.
2014-07-01Fixed #22933 -- Deprecated django.template.resolve_variable().Tim Graham
2014-06-23Fixed typo: MultipleModelChoiceField -> ModelMultipleChoiceField.Tim Graham
2014-06-20Fixed #22838 -- Deprecated ModelChoiceField.cache_choices.Marc Tamlyn
Undocumented, untested and probably not even useful feature.
2014-06-19Fixed #22835 -- Deprecated NoArgsCommand.Maxime Turcotte
2014-06-14Documented optparse to argparse changes for management commandsClaude Paroz
2014-06-12Fixed #22818 -- Clarified you need to cd into the Django clone.Tim Graham
Thanks Josh Parris.
2014-06-03Added a patch review checklist.Tim Graham
2014-06-03Fixed #22384 -- Deprecated reversing URLs by dotted path.Tim Graham
2014-05-07Updated some docs for the delayed deprecation of legacy table creation; refs ↵Tim Graham
#22340.
2014-05-06Bump DatabaseCreation deprecation to 2.0 (refs #22340)Andrew Godwin
2014-04-26Fixed #3214 -- Stopped parsing SQL with regex.Aymeric Augustin
Avoided introducing a new regex-based SQL splitter in the migrations framework, before we're bound by backwards compatibility. Adapted this change to the legacy "initial SQL data" feature, even though it's already deprecated, in order to facilitate the transition to migrations. sqlparse becomes mandatory for RunSQL on some databases (all but PostgreSQL). There's no API to provide a single statement and tell Django not to attempt splitting. Since we have a more robust splitting implementation, that seems like a good tradeoff. It's easier to add a new keyword argument later if necessary than to remove one. Many people contributed to both tickets, thank you all, and especially Claude for the review. Refs #22401.
2014-04-24Renamed Transifex project from django-core to djangoClaude Paroz
See also http://blog.transifex.com/post/83622601443/new-teams-management-transifex
2014-04-23Various documentation typo/spelling fixesMarti Raudsepp
Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand.
2014-04-17Fixed #22444 -- Marked initial SQL/fixture loading as deprecated.Tim Graham
Thanks Karen Tracey for the report.
2014-04-16Revert "Fixed #22401 -- Deprecated regular expression parsing of initial SQL ↵Tim Graham
in favor of installing sqlparse." This reverts commit 071c9337750b296d198cced56f3ffad0e176afb6. This introduced a regression on MySQL and custom SQL is deprecated.
2014-04-16Fixed #22457 -- Fixed contributing guide w/o github set-upJordi Yeh
The published commnand was not working when the user did not have the git client set-up with the public-key. Changed the contributing guide to clone it from https instead.
2014-04-09Fixed #22401 -- Deprecated regular expression parsing of initial SQL in ↵julien 'pouete' Godin
favor of installing sqlparse.
2014-04-08Fixed #13408 -- Deprecated silent unpacking exception passing in for ↵e0ne
template tag. Thanks peterbe for the suggestion.
2014-04-06Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi
2014-04-03Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham
Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
2014-03-28Fixed #22306 -- Deprecated future versions of cycle and firstof template tags.Maxime Turcotte
2014-03-25Add some syncdb deprecation stuff into the deprecation docAndrew Godwin
2014-03-21Removed django.middleware.doc. Refs #20126.Aymeric Augustin
Small doc changes missed in 66076268.
2014-03-19Fixed #22253 -- Added django-i18n to the mailing lists docs.Anubhav Joshi
Thanks bmispelon 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-10Added myself to the committers list, finally.Shai Berger
2014-03-10Added myself to the committers list.Erik Romijn
2014-03-09Reorganized the database test settingsShai Berger
Change database test settings from "TEST_"-prefixed entries in the database settings dictionary to setting in a dictionary that is itself an entry "TEST" in the database settings. Refs #21775 Thanks Josh Smeaton for review.
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
Thanks Anssi Kääriäinen for the idea and Simon Charette for the review.
2014-03-07Fixed #22141 -- Added a spelling checker for documentation.Szczepan Cieślik
2014-03-03Fixed some typos and formatting issues in docs.Rodolfo Carvalho
2014-03-01Fixed #22130 -- Deprecated fix_ampersands, removed utils.clean_html()Erik Romijn
2014-02-28Fixed spelling mistakes in docs.Tim Graham
2014-02-28Fixed doc typos.Tim Graham
2014-02-25Fixed docs typos.Szczepan Cieślik
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-16Fixed #21939 -- Deprecated loading ssi/url tags from future.Zbigniew Siciarz
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of ↵Berker Peksag
import_string(). Thanks Aymeric Augustin for the suggestion and review.