summaryrefslogtreecommitdiff
path: root/docs/internals
AgeCommit message (Collapse)Author
2013-05-24Updated my bioBrian Rosner
2013-05-23Added back a link to docs/internals/committers.txtTim Graham
2013-05-23Update my employer.Alex Gaynor
2013-05-23Fixing some FIXMEs in howto-release-django. Refs #20082Andrew Godwin
2013-05-23Fixed #20474 -- Proxied and deprecated django.db.backendClaude Paroz
2013-05-22Clarified policy for stable branches.Tim Graham
Thanks Ramiro Morales for the initial patch and Preston Holmes for the review.
2013-05-20Fixed #9321 -- Deprecated hard-coding of help text in model ManyToManyField ↵Ramiro Morales
fields. This is backward incompatible for custom form field/widgets that rely on the hard-coded 'Hold down "Control", or "Command" on a Mac, to select more than one.' sentence. Application that use standard model form fields and widgets aren't affected but need to start handling these help texts by themselves before Django 1.8. For more details, see the related release notes and deprecation timeline sections added with this commit.
2013-05-20Tweaked unit test 'quick start' explanation.Tim Graham
Thanks Jeremy Dunck.
2013-05-19Clarified when triagers should close tickets as needsinfo.Aymeric Augustin
https://groups.google.com/d/msg/django-developers/dyldP9kFADc/rHTlRBVEP8MJ
2013-05-18Fixed #15201: Marked CACHE_MIDDLEWARE_ANONYMOUS_ONLY as deprecatedŁukasz Langa
2013-05-18Reorganize committers list chronologically.Aymeric Augustin
This completes the removal of the distinction between core devs and specialists. Patch by Simon Meers.
2013-05-17Finally add myself to the committers listDonald Stufft
2013-05-17Fix up company link.Marc Tamlyn
2013-05-17Added myself to committers.Marc Tamlyn
2013-05-16Removed "specialists".Jacob Kaplan-Moss
The distinction's not really one we make any more, so updated the docs accordingly.
2013-05-16Updated my bio.Jacob Kaplan-Moss
2013-05-14Fixed #19934 - Use of Pillow is now preferred over PIL.Daniel Lindsley
This starts the deprecation period for PIL (support to end in 1.8).
2013-05-10Fixed #17365, #17366, #18727 -- Switched to discovery test runner.Carl Meyer
Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670.
2013-05-10Updated my bio.Jannis Leidel
2013-05-03Added myself to the committers list.Daniel Lindsley
2013-05-01Fixed #19252 -- Added support for wheel packages.Florian Apolloner
Signed-off-by: Jannis Leidel <jannis@leidel.info>
2013-04-25Updated Transifex links to the Django projectClaude Paroz
Translations for the Django framework are now hosted on the django-core Transifex project, and the django project is only dedicated to a team-only hub project.
2013-04-20Fixed #20104 -- Changed VersionDirective in order to avoid ambiguity.Juan Catalano
As explained in ticket #20104, the use of versionchanged/versionadded was confusing. To solve this ambiguity these directives no longer accept a second argument but now they only receive the version number (1st arg) and then a content with the proper comment.
2013-04-13Fixed #4592: Made CheckboxSelectMultiple more like RadioSelectBaptiste Mispelon
I refactored RadioSelect and CheckboxSelectMultiple to make them inherit from a base class, allowing them to share the behavior of being able to iterate over their subwidgets. Thanks to Matt McClanahan for the initial patch and to Claude Paroz for the review.
2013-04-10Turned the triage attributes to actual sections so they can be more easily ↵Julien Phalip
linked to in the documentation.
2013-04-09Added some further guidance to "accepted" triage stagePreston Holmes
Now that DDN is gone, I felt it was worth some extra language about what "accepted" means, and qualify what it means to be "safe" to start writing a patch.
2013-04-08Removed references to the DDN triage state.Aymeric Augustin
Rephrased "How can I help with triaging?" a bit to reflect the current practice.
2013-04-04Removed instructions about download_url from release process notes.Jacob Kaplan-Moss
This is no longer something that has to happen now that 5c771da3 is in.
2013-03-30Merge pull request #963 from richardcornish/masterTim Graham
Updated bios of committers
2013-03-28Minor updates to 'How is Django Formed.'Carl Meyer
2013-03-28Updated the release document after actually doing a release (!).Jacob Kaplan-Moss
2013-03-27Updated bios of committersRichard Cornish
2013-03-24Goodbye, Malcolm.Aymeric Augustin
2013-03-22Added missing markup to docs.Tim Graham
2013-03-14Deprecated django.views.defaults.shortcut.Aymeric Augustin
2013-03-14Updated release instructions to account for website automation.Aymeric Augustin
2013-03-13Proof-read and adjusted the transactions docs.Aymeric Augustin
2013-03-11Deprecated django.contrib.comments.Jacob Kaplan-Moss
2013-03-11Deprecated TransactionMiddleware and TRANSACTIONS_MANAGED.Aymeric Augustin
Replaced them with per-database options, for proper multi-db support. Also toned down the recommendation to tie transactions to HTTP requests. Thanks Jeremy for sharing his experience.
2013-03-11Added some assertions to enforce the atomicity of atomic.Aymeric Augustin
2013-03-11Deprecated transaction.is_managed().Aymeric Augustin
It's synchronized with the autocommit flag.
2013-03-11Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin
Since "unless managed" now means "if database-level autocommit", committing or rolling back doesn't have any effect. Restored transactional integrity in a few places that relied on automatically-started transactions with a transitory API.
2013-03-11Added an API to control database-level autocommit.Aymeric Augustin
2013-03-11Made transaction.managed a no-op and deprecated it.Aymeric Augustin
enter_transaction_management() was nearly always followed by managed(). In three places it wasn't, but they will all be refactored eventually. The "forced" keyword argument avoids introducing behavior changes until then. This is mostly backwards-compatible, except, of course, for managed itself. There's a minor difference in _enter_transaction_management: the top self.transaction_state now contains the new 'managed' state rather than the previous one. Django doesn't access self.transaction_state in _enter_transaction_management.
2013-03-08Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ↵Loic Bistuer
return a QuerySet.
2013-02-28Implemented persistent database connections.Aymeric Augustin
Thanks Anssi Kääriäinen and Karen Tracey for their inputs.
2013-02-28Added a Trac-related item to the release checklist.Aymeric Augustin
2013-02-26Added a note about creating new doc versions; update stable doc version ↵Carl Meyer
before announcement.
2013-02-26Added note about updating default docs version in howto-release doc.Carl Meyer
2013-02-26Updated docs to reflect new tests layout.Florian Apolloner
Thanks to Ramiro Morales for the initial patch.