| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-08 | Fixed #9535 -- Added a reference guide for file upload classes. | Anubhav Joshi | |
| 2014-04-03 | Fixed #22218 -- Deprecated django.conf.urls.patterns. | Tim Graham | |
| Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews. | |||
| 2014-03-27 | Fixed #21941 -- Documented the kwargs param of django.conf.urls.url(). | Tim Martin | |
| Thanks cjerdonek for the report. | |||
| 2014-03-24 | Removed versionadded/changed annotations for 1.6. | Tim Graham | |
| 2014-03-21 | Removed contrib.comments per deprecation timeline. | Tim Graham | |
| 2014-02-25 | Fixed #12670 -- Added a note about permissions of files stored in ↵ | Rik | |
| FILE_UPLOAD_TEMP_DIR. Thanks simon29 for the suggestion. | |||
| 2014-02-14 | Fixed #21177 -- Made resolve_url support relative URLs. | Antoine Catton | |
| This fixes redirecting to relative URLs with django.shortcuts.redirect. | |||
| 2014-01-22 | Always use parentheses when documenting a method with no arguments. | Baptiste Mispelon | |
| 2014-01-22 | Don't show `self` in the list of arguments of a method. | Baptiste Mispelon | |
| This is consistent with Python's official documentation and it's a sphinx recommendation too[1]. [1] http://sphinx-doc.org/markup/desc.html#dir-method Refs #21855. | |||
| 2014-01-03 | Fixed a sentence in the session security docs; thanks claudep. | Tim Graham | |
| 2013-12-30 | Fixed #21708 -- Added some headings to separate unrelated topics. | Tim Graham | |
| Thanks ashley at ashleymills.com for the suggestion. | |||
| 2013-12-26 | Fixed #21582 -- Corrected URL namespace example. | Tim Graham | |
| Thanks oubiga for the report. | |||
| 2013-12-13 | Fixed #21580 -- Clarified why render() does not return a TemplateResponse ↵ | johannes-gehrs | |
| object. | |||
| 2013-11-30 | Removed gender-based pronouns per [c0a2daad78]. | Tim Graham | |
| 2013-11-27 | Added a warning regarding risks in serving user uploaded media. | Tim Graham | |
| Thanks Preston Holmes for the draft text. | |||
| 2013-11-24 | Fixed some unnescesarily gendered language in the docs | Alex Gaynor | |
| 2013-11-22 | Removed unused import in docs/topics/http/sessions.txt | Tim Graham | |
| 2013-11-19 | Added more examples to the get_object_or_404 documentation. | Baptiste Mispelon | |
| 2013-11-18 | Fixed typo in topics/http/sessions.txt. | Tim Graham | |
| 2013-11-15 | Fixed #21440 -- Typo #2 in topics/http/shortcuts.txt | Tim Graham | |
| Thanks alasdair. | |||
| 2013-11-15 | Fixed #21440 -- Typo in topics/http/shortcuts.txt | Tim Graham | |
| Thanks olof.bjarnason at gmail.com for the report. | |||
| 2013-10-18 | Added a warning regarding session security and subdomains. | Tim Graham | |
| 2013-10-14 | Fixed #21264 -- Incorrect RST usage in docs | Bouke Haarsma | |
| 2013-10-10 | Whitespace cleanup. | Tim Graham | |
| * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs. | |||
| 2013-10-02 | Changed the doc to use gender-neutral pronouns when possible. | Baptiste Mispelon | |
| 2013-10-02 | Clarified session replay attack differences with cookie backend. | Tim Graham | |
| 2013-09-24 | Fixed #21137 -- Corrected ULRconf include example. | Tim Graham | |
| Thanks marfire for the report. | |||
| 2013-09-22 | A few doc additions for changes from d228c1192e. | Ramiro Morales | |
| 2013-09-21 | Fixed #21137 -- Documented best practice for URLconfs with repeated pattern ↵ | Michael DiBernardo | |
| prefixes. | |||
| 2013-09-19 | Added missing "in" in sentence. | Markus Amalthea Magnuson | |
| 2013-09-18 | Fixed #4278 -- Added a dirs parameter to a few functions to override ↵ | Berker Peksag | |
| TEMPLATE_DIRS. * django.template.loader.get_template() * django.template.loader.select_template() * django.shortcuts.render() * django.shortcuts.render_to_response() Thanks amcnabb for the suggestion. | |||
| 2013-09-05 | Fixed #21000 -- Made cached_db session backend respect SESSION_CACHE_ALIAS | CHI Cheng | |
| 2013-09-03 | Fixed #21002 -- Documented JSON session serialization requires string keys | Tim Graham | |
| Thanks jeroen.pulles at redslider.net for the report. | |||
| 2013-08-29 | Fixed #20997 -- Added SessionStore note to docs. | Tim Graham | |
| Thanks jsdalton. | |||
| 2013-08-23 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/backends/oracle/base.py django/db/backends/postgresql_psycopg2/base.py django/db/models/signals.py tests/queries/tests.py | |||
| 2013-08-22 | Fixed #20922 -- Allowed customizing the serializer used by contrib.sessions | Tim Graham | |
| Added settings.SESSION_SERIALIZER which is the import path of a serializer to use for sessions. Thanks apollo13, carljm, shaib, akaariai, charettes, and dstufft for reviews. | |||
| 2013-08-19 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: docs/ref/django-admin.txt | |||
| 2013-08-19 | Removed versionadded/changed annotations for 1.5 | Tim Graham | |
| 2013-08-15 | Fixed some ReST errors regarding backticks | Tim Graham | |
| 2013-08-12 | Fixed #13518 -- Added FILE_UPLOAD_DIRECTORY_PERMISSIONS setting | Mel Collins | |
| This setting does for new directories what FILE_UPLOAD_PERMISSIONS does for new files. Thanks jacob@ for the suggestion. | |||
| 2013-08-09 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/core/management/commands/flush.py django/core/management/commands/syncdb.py django/db/models/loading.py docs/internals/deprecation.txt docs/ref/django-admin.txt docs/releases/1.7.txt | |||
| 2013-08-05 | Fixed #20862 -- Updated startproject MIDDLEWARE_CLASSES in docs. | Tim Graham | |
| Thanks Keryn Knight. | |||
| 2013-08-03 | Added missing request argument to example in URL dispatcher docs | Alasdair Nicol | |
| 2013-08-01 | Fixed #20667 - Removed discussion of DEBUG from tutorial. | Tim Graham | |
| Forward-port of 3493f18d78 from master. | |||
| 2013-07-27 | Fixed a number of minor misspellings. | Julien Phalip | |
| 2013-07-25 | More migration docs, and conversion of all easy syncdb references | Andrew Godwin | |
| 2013-07-11 | Fixed #13721 -- Added UploadedFile.content_type_extra. | Benjamin Kagia | |
| Thanks Waldemar Kornewald and mvschaik for work on the patch. | |||
| 2013-06-24 | Clarified get_list_or_404 docs, refs #14150. | Tim Graham | |
| 2013-06-24 | Corrected minor typos in FileUploadHandler.receive_data_chunk docs. | Simon Meers | |
| 2013-05-25 | Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation. | Preston Holmes | |
| SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review. | |||
