summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2012-06-04Rewrote security.txt SSL docs, noting SECURE_PROXY_SSL_HEADER.Luke Plant
2012-06-04Merge pull request #99 from danielroseman/masterAdrian Holovaty
Docs: "Form in a view" example doesn't use RequestContext
2012-05-31Use render shortcut in form example.Daniel Roseman
2012-05-25Fixed #17371 -- Made the test client more flexibleAymeric Augustin
The OPTIONS, PUT and DELETE methods no longer apply arbitrary data encoding (in the query string or in the request body).
2012-05-22Fixed #18244 -- Documented that formset.has_changed is a 1.4 addition.Claude Paroz
2012-05-22Replaced print statement by print function in new install instructions.Claude Paroz
2012-05-21Fixed #18115 - added warning about overlaid install.Carl Meyer
Setup.py now warns if it detects that Django is being installed over top of a previous installation that was never removed. This should only happen when installing with ``python setup.py install``, as pip automatically uninstalls before installing a new version and easy_install installs as an egg directory. Also generally updated the installation doc.
2012-05-19Followed a best practice in the time zones docs.Aymeric Augustin
Prevented localize from swallowing non existent or ambiguous datetimes.
2012-05-18remove mention of djangoproject.com from cbv topicStratos Moros
The class based views topic mentions that the djangoproject.com weblog is built using the date-based generic views, but looking at the code, it actually uses the deprecated pre-1.3 function based generic views.
2012-05-16Merge pull request #43 from techtonik/patch-1Adrian Holovaty
Fixed #18267 -- document `settings.configured` property.
2012-05-16Fix issue #18267 - document `settings.configured` property.anatoly techtonik
2012-05-11Fixed #18301 -- Fixed url name in password reset example.Claude Paroz
Thanks nicknnn for the report.
2012-05-10Fixed #16335 -- Clarified an unintuitive behavior.Aymeric Augustin
The DTL will perform dict lookup before method lookup, which yields an unexpected result for defaultdicts.
2012-05-06Updated time zone FAQ with timezone.localize.Aymeric Augustin
2012-05-05Fixed the syntax used for the Python repl examples in docs and docstrings.Alex Gaynor
2012-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-05-04Fixed #18270 -- Corrected variable name in password reset example.Claude Paroz
Thanks schnippi for the report.
2012-05-03Fixed broken URLs introduced in 1adc87cd32.Ramiro Morales
2012-05-03Updated some URLs in the documentation to point to the new repository.Ramiro Morales
2012-05-03Fixed #18214 -- Clarified the docs about serializable objects.Alex Ogier
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin
And started the deprecation path for django.utils.simplejson. Thanks Alex Ogier, Clueless, and other contributors for their work on the patch.
2012-04-27Updated docs/topics/install.txt to note github URL instead of ↵Adrian Holovaty
code.djangoproject.com
2012-04-26Fixed #18038 -- Removed the 'supports_inactive_user' backwards-compatibility ↵Claude Paroz
flag. Thanks Aymeric Augustin for the initial patch and Ramiro Morales for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17938 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-25Fixed #18033 -- Removed function-based generic views, as per official ↵Claude Paroz
deprecation timeline. Rest in peace! Thanks Anssi Kääriäinen for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17937 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-24Fixed #18037 -- Changed behaviour of url and ssi template tags to the new ↵Claude Paroz
syntax, as per official deprecation timeline. Thanks Ramiro Morales and Jannis Leidel for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17934 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-22Fixed #18159 -- added an import statement to the docs. Thanks to Jeff Hui ↵Alex Gaynor
for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17927 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-21Added documentation notes about lack of database savepoints support when ↵Ramiro Morales
using MySQL+MyISAM. Refs #15507, #18116 and r17341, r17921. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17923 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-19Added more explicit warnings about unconfigured reStructured Text usage in docs.Luke Plant
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17915 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-16Fixed #18316 -- Fixed pre-1.3 PermWrapper location in docs. Thanks Adrien ↵Claude Paroz
Lemaire for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17913 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-15Fixed #18024 -- Reworded sentence in models documentation. Thanks Preston ↵Claude Paroz
Holmes for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17912 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-15Clarified that Django randomizes session keys. Refs #11555, #13478, #18128.Aymeric Augustin
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17911 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-14Fixed a typo in an example in the timezone docs.Aymeric Augustin
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17908 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-13Fixed #18118 -- Improved documentation for contrib.auth.hashers utility ↵Claude Paroz
functions. Thanks Mathieu Agopian for the report and Ramiro Morales for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17905 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-10Fixed #17229 -- Allow 'True', 'False' and 'None' to resolve to the ↵Aymeric Augustin
corresponding Python objects in templates. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17894 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-10Fixed #18095 -- Added missing 'cc' mention in EmailMessage recipients() ↵Claude Paroz
description. Thanks Stéphane Raimbault for the report and the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17891 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-06Fixed #16074 -- Added ContextMixin to class-based generic views to handle ↵Claude Paroz
get_context_data. Thanks emyller, Luke Plant, Preston Holmes for working on the ticket and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17875 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-06Fixed #16233 -- Added link to multiple databases docs from custom sql alias ↵Claude Paroz
section. Thanks charlax for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17872 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-31Fixed #18040 -- Removed so-called project-level locale trees from the list ↵Ramiro Morales
of paths the translation loading process takes in account. Deprecated in Django 1.3. Removed completely for Django 1.5. Thanks Claude for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17861 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-31Fixed #17983 -- Re-fixed the ln syntax by adding a trailing slash to the ↵Claude Paroz
destination directory. The -t argument is not a POSIX standard. Thanks Aymeric Augustin for pointing the problem. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17859 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-31Fixed #17983 -- Use a non-ambiguous syntax of the ln command in install docs.Claude Paroz
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17855 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-31Removed deprecated URLField.verify_exists.Aymeric Augustin
The deprecation schedule was slightly accelerated because of possible security ramifications. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17847 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-31Removed documentation for SMTPConnection, which was removed at r15978.Aymeric Augustin
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17837 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-31Fixed #18029 -- Removed mod_python as of deprecation process. Thanks Aymeric ↵Claude Paroz
Augustin for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17835 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-31Fixed #17965 -- Definitely dropped support for Python 2.5. Thanks jonash for ↵Claude Paroz
the initial patch and Aymeric Augustin for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17834 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-30Fixed #17999 -- Restored the links to examples from models documentation. ↵Claude Paroz
Refs #17605. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17832 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-30Use the class decorator syntax available in Python >= 2.6. Refs #17965.Aymeric Augustin
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17829 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-29Fixed #17999 -- Added a 'See also' paragraph to OneToOneField doc section.Ramiro Morales
Thanks creecocde for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17822 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-27Added missing indentation in models topic documentation.Claude Paroz
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17812 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-16Fixed #17841 -- Clarified caching note about authentication backends. Thanks ↵Claude Paroz
auzigog for the proposal and lukegb for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17752 bcc190cf-cafb-0310-a4f2-bffc1f526a37