summaryrefslogtreecommitdiff
path: root/docs/howto
AgeCommit message (Collapse)Author
2014-10-09Fixed #23627 -- Allowed register_lookup to work as a decorator.Marc Tamlyn
2014-09-22Removed sudo from pip commands in docs.Corey Farwell
2014-09-21Fixed #23530 -- Specified PyYAML requirement in initial-data.txtClaude Paroz
Thanks aks for the report.
2014-09-19Don't recommend using sudo when installing uwsgiMatt Robenolt
2014-09-12Fixed #17101 -- Integrated django-secure and added check --deploy optionTim Graham
Thanks Carl Meyer for django-secure and for reviewing. Thanks also to Zach Borboa, Erik Romijn, Collin Anderson, and Jorge Carleitao for reviews.
2014-09-09Fixed #23350 -- Updated mod_wsgi auth example to use less memory.Tim Graham
Thanks Graham Dumpleton for the report.
2014-09-07Fixed typo in docs/howto/custom-lookups.txt.Sébastien Fievet
2014-09-06Refs #23430 -- gunicorn wants a module, not fileCollin Anderson
2014-09-05Fixed #23430 -- simplified gunicorn deployment docs.Collin Anderson
2014-09-03Fixed #18757, #14462, #21565 -- Reworked database-python type conversionsMarc Tamlyn
Complete rework of translating data values from database Deprecation of SubfieldBase, removal of resolve_columns and convert_values in favour of a more general converter based approach and public API Field.from_db_value(). Now works seamlessly with aggregation, .values() and raw queries. Thanks to akaariai in particular for extensive advice and inspiration, also to shaib, manfre and timograham for their reviews.
2014-08-28Fixed #23374 -- Renamed StaticLiveServerCase to StaticLiveServerTestCaseClaude Paroz
Refs #20739. Thanks Raphaël Hertzog for the report and the initial patch.
2014-08-26Fixed spelling mistake in file docs.Tim Graham
2014-08-20Fixed #23157 -- Removed O(n) algorithm when uploading duplicate file names.Tim Graham
This is a security fix. Disclosure following shortly.
2014-08-19Removed unnecessary code-block directives.areski
2014-08-18Fixed #14638 -- Clarified model Field.to_python() docs.Tim Graham
Thanks Anubhav Joshi for the patch.
2014-08-15Fixed typo in docs/howto/custom-model-fields.txt.Tim Graham
2014-08-08Fixed #23257 -- Updated docs for new django-jython release.Andreas Stocker
2014-08-02Fixed #23154 -- Removed reference to deprecated run_gunicorn command.Tim Graham
Thanks frewsxcv for the report.
2014-07-30Fixed #23067 -- Updated docs to use django-adminChristoph Heer
2014-07-10Fixed #22809 -- Added model Field API reference.Jorge C. Leitão
Thanks to @timgraham for the review.
2014-07-08Fixed #22812 -- Refactored lookup API documentation.Jorge C. Leitão
Thanks Anssi and Tim for reviews.
2014-07-07Fixed #22942 -- Noted that __init__.py files are required for management ↵Tim Graham
command detection. Thanks Diego Cerdán for the suggestion.
2014-07-05Fixed various minor doc typos / references.Daniel Hahler
2014-06-26Fixed typo in parameter name doc for BaseCommand.check().Gert Van Gool
2014-06-19Fixed #22835 -- Deprecated NoArgsCommand.Maxime Turcotte
2014-06-14Documented optparse to argparse changes for management commandsClaude Paroz
2014-06-11Added link to data migrations in initial data deprecation noteGreg Chapple
2014-05-12Fixed #22619 -- Corrected description of os.path.Tim Graham
Thanks Collin Anderson for the report.
2014-05-07Updated some docs for the delayed deprecation of legacy table creation; refs ↵Tim Graham
#22340.
2014-05-06Improve docs around deconstruction/serialisation (refs #22337)Andrew Godwin
2014-05-05Fixed #1349 -- Clarified docs on serving files from STATIC/MEDIA_URL.Tim Graham
2014-05-03Fix docs error with deconstruct() docsAndrew Godwin
2014-04-28Fixed #22497 -- Highlighted difference between field and class deconstruction.Tim Graham
Thanks nliberg for the suggestion.
2014-04-26Specified 'csv and unicode' note as Python 2 onlyClaude Paroz
2014-04-21Fixed queries that may return unexpected results on MySQL due to typecasting.Erik Romijn
This is a security fix; disclosure to follow shortly.
2014-04-20Changed paths in docs that referred to Python 2.Aymeric Augustin
2014-04-18Moved RemoteUserBackend documentation to reference guide.Tim Graham
2014-04-17Fixed #22444 -- Marked initial SQL/fixture loading as deprecated.Tim Graham
Thanks Karen Tracey for the report.
2014-04-16Revert "Fixed #22401 -- Deprecated regular expression parsing of initial SQL ↵Tim Graham
in favor of installing sqlparse." This reverts commit 071c9337750b296d198cced56f3ffad0e176afb6. This introduced a regression on MySQL and custom SQL is deprecated.
2014-04-16Added RemoteUserMiddleware to middleware reference page.Tim Graham
2014-04-15Fixed #22392 -- Corrected deployment instructions for Apache 2.4.Tim Graham
Thanks zjcheah at yahoo.com for the report.
2014-04-09Fixed #22412 -- More nuanced advice re template filters and exceptions.Carl Meyer
Thanks Tim for review.
2014-04-09Fixed #22401 -- Deprecated regular expression parsing of initial SQL in ↵julien 'pouete' Godin
favor of installing sqlparse.
2014-04-09Noted that pip is included with Python 3.4 in Windows install guide.Tim Graham
Thanks CHI Cheng.
2014-04-08Fixed #16205 -- Added an installation for Windows.Anubhav Joshi
2014-04-03Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham
Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
2014-03-25Fixed #22322 -- Fixed incorrect explanation of what managed=False does.Tim Graham
refs #14305. Thanks Adrian Klaver for the report.
2014-03-24Removed versionadded/changed annotations for 1.6.Tim Graham
2014-03-17Fixed #21179 -- Added a StreamingHttpResponse example for CSV files.zedr
Thanks charettes for the suggestion.
2014-03-02Removed WSGI upgrade instructions for Django 1.3 and earlier.Tim Graham