summaryrefslogtreecommitdiff
path: root/docs/internals
AgeCommit message (Collapse)Author
2014-08-28[1.7.x] Fixed #23375 -- Added missing security issues to the archive.Simon Charette
Also adjusted the pre-release process to prevent future omissions. Backport of c9c0be31c5 from master
2014-08-26[1.7.x] Fixed clone URL of Django git repository.Duncan Parkes
Backport of 905c4fdcc3 from master
2014-08-19[1.7.x] Added sphinx extension to ease generation of ticket links.Tim Graham
Backport of fca677fa43 from master
2014-08-07[1.7.x] Fixed #23252: Call out removed features in release notes.Andrew Godwin
Also added StrAndUnicode mixin note to deprecation plan as it was missing.
2014-08-05[1.7.x] Fixed broken links in docs.Tim Graham
Backport of 0efd72dc90 from master
2014-08-05[1.7.x] Updated links for continous integration server.Tim Graham
Backport of 21d0ceefb5 from master
2014-07-29[1.7.x] Fixed #23079 -- Added data loss issues to those that will be ↵Tim Graham
backported to LTS. Backport of e46801f13d from master
2014-07-27[1.7.x] Update from key ID in security.txt to authorized release keys list.James Bennett
Backport of fe87f8d6707e13fb9416d8e4c1ebc01817d53755 from master.
2014-07-25[1.7.x] Mark initial_data as deprecated separately from syncdb. Refs #23077.Andrew Godwin
Conflicts: docs/internals/deprecation.txt
2014-07-21[1.7.x] Replaced instances of 'his/her' with 'their'.Iain Dawson
Backport of 8fbf13a6c8 from master
2014-07-14[1.7.x] Fixed #23015 -- Fixed major/minor release terminology in docs.Tim Graham
Backport of dd6ef3197a from master
2014-07-02[1.7.x] Fixed #18108 -- Added instructions for translating documentation.Tim Graham
Thanks Claude Paroz. Backport of 1a3bec4a26 from master
2014-06-12[1.7.x] Fixed #22818 -- Clarified you need to cd into the Django clone.Tim Graham
Thanks Josh Parris. Backport of bcc3d2b978 from master
2014-05-07[1.7.x] Updated some docs for the delayed deprecation of legacy table ↵Tim Graham
creation; refs #22340. Backport of a2e3c96948 from master
2014-05-07[1.7.x] Bump DatabaseCreation deprecation to 2.0 (refs #22340)Tim Graham
Backport of 61da5f3f02 from master
2014-04-26[1.7.x] Fixed #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. Backport of 8b5b199 from master
2014-04-24[1.7.x] Renamed Transifex project from django-core to djangoClaude Paroz
See also http://blog.transifex.com/post/83622601443/new-teams-management-transifex Backport of 7c24027ba from master.
2014-04-22[1.7.x] Various documentation typo/spelling fixesMarti Raudsepp
Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand. Backport of 11d453bcad from master
2014-04-17[1.7.x] Fixed #22444 -- Marked initial SQL/fixture loading as deprecated.Tim Graham
Thanks Karen Tracey for the report. Backport of a4acb80463 from master
2014-04-16[1.7.x] Fixed #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. Backport of 28102991172ab931d030412275f926c1b05c688d from master.
2014-03-25[1.7.x] Add some syncdb deprecation stuff into the deprecation docAndrew Godwin
Backport of 378359de1c from master
2014-03-21[1.7.x] Small doc changes missed in 66076268.Aymeric Augustin
Partial backport of 253e8ac2 from master.
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.
2014-02-03Reordered deprecation timeline and added back old info; refs #21920.Tim Graham
2014-01-26Moved RequestSite and get_current_site.Aymeric Augustin
Following the app-loading refactor, these objects must live outside of django.contrib.sites.models because they must be available without importing the django.contrib.sites.models module when django.contrib.sites isn't installed. Refs #21680. Thanks Carl and Loic for reporting this issue.
2014-01-24Fixed #21824 -- Added reference to LTS in docs/internals/security.txtJames Turley
2014-01-23We should branch after the first beta.Marc Tamlyn
We did this for 1.6 and it was very effective. 95%+ of fixes which merge during the alpha are backported, as the policy is "all but really major features". It's easier to just not merge any really major features. After beta, we have feature freeze so we need to backport bugs to stable but not features, so then the branch makes sense.
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
2014-01-13Removed BDFL stuff from docs/internals/contributing/bugs-and-features.txtAdrian Holovaty
2014-01-13Removed BDFLs section from docs/internals/committers.txtAdrian Holovaty
2014-01-13Negligible change to my bio in docs/internals/committers.txtAdrian Holovaty
2014-01-11Fixed #8898 -- Obsoleted SplitDateTimeWidget usage with DateTimeFieldClaude Paroz
Thanks Tim Graham for the review.
2014-01-10Deprecated importing a model before loading its application.Aymeric Augustin
Refs #21719, #21680.
2014-01-02Updated my bio.Aymeric Augustin
2013-12-31Fixed #21701 -- Improved testing doc titles and added testing/tools.txt.Tim Graham
Thanks cjerdonek for the suggestion.