summaryrefslogtreecommitdiff
path: root/docs/internals
AgeCommit message (Collapse)Author
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.
2013-02-25Updated the release process docs to reflect the current practices.Aymeric Augustin
Fixed #17919.
2013-02-25Fixed #19854 -- Turn Django's own Selenium tests off by default.Carl Meyer
2013-02-23Various tweaks and additions to 'how to release Django' document.Carl Meyer
2013-02-23Removed superfluous cookie check from auth login.Preston Holmes
This is ensured through the CSRF protection of the view
2013-02-23Some updates to "how to release Django":Jacob Kaplan-Moss
Typo fixes, spell check, some more specifics where possible.
2013-02-23Added a draft document explaining how to release Django.Jacob Kaplan-Moss
Thanks to James for the first draft; I made a few changes (svn->git) and some supporting links, but mostly I added FIXME's.
2013-02-23Added test runner option to skip Selenium tests (#19854).Zbigniew Siciarz
2013-02-23Fixed #17906 - Autoescaping {% cycle %} and {% firstof %} templatetags.Vladimir A Filonov
This commit adds "future" version of these two tags with auto-escaping enabled.
2013-02-05Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`.Simon Charette
2013-02-02Fixed #19333 -- Moved compress.py outside of the admin static folder. Thanks ↵Julien Phalip
to camilonova, Russell Keith-Magee, Aymeric Augustin and Ramiro Morales for the feedback.
2013-02-01Added myself to core developpersSimon Charette
2013-01-31Deprecated undocumented warnings manipulation testing tools.Ramiro Morales
2013-01-31Fixed #19692 -- Completed deprecation of mimetype in favor of content_type.Aymeric Augustin
Thanks Tim for the report and initial patch.
2013-01-29Fixed typos in docs and commentsTim Graham
2013-01-24Fixed #19639 - Updated contributing to reflect model choices best practices.Tim Graham
Thanks charettes.
2013-01-15Fixed #19099 -- Split broken link emails out of common middleware.Aymeric Augustin
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2012-12-29Removed links to deprecated IGNORABLE_404_STARTS/ENDS settings.Tim Graham
refs #19516 and 641acf76e7
2012-12-29Removed django.contrib.markup.Aymeric Augustin
2012-12-29Fixed broken links, round 4. refs #19516Tim Graham
2012-12-28Fixed #19498 -- refactored auth documentationPreston Holmes
The auth doc was a single page which had grown unwieldy. This refactor split and grouped the content into sub-topics. Additional corrections and cleanups were made along the way.
2012-12-26Fixed #19518 -- Documented the deprecation of localflavor.Aymeric Augustin
Also moved the contrib deprecations at the top of their section and made minor markup fixes.
2012-12-24Fixed #19505 -- A more flexible implementation for customizable admin ↵Julien Phalip
redirect urls. Work by Julien Phalip. Refs #8001, #18310, #19505. See also 0b908b92a2ca4fb74a103e96bb75c53c05d0a428.
2012-12-22Fixed #15516 -- Updated the ticket life cycle diagram.Aymeric Augustin
2012-12-21Fixed #19497 -- Refactored testing docs.Ramiro Morales
Thanks Tim Graham for the review and suggestions.
2012-12-08Fixed #19389 -- Docs on the location of contrib apps tests.Aymeric Augustin
2012-11-17Fixed #19291 -- Completed deprecation of ADMIN_MEDIA_PREFIX.Aymeric Augustin
2012-11-17Fixed #16779 - Added a contributing tutorialTim Graham
Thank-you Taavi Taijala for the draft patch!
2012-11-04Added a note and link to CLA from contributing docsPreston Holmes
2012-11-02Deprecated depth kwarg on select_related.Preston Holmes
This is the start of a deprecation path for the depth kwarg on select_related. Removing this will allow us to update select_related so it chains properly and have an API similar to prefetch_related. Thanks to Marc Tamlyn for spearheading and initial patch. refs #16855