summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2012-07-17Merge pull request #215 from mgrouchy/add-interpreter-optionsAlex Gaynor
Adds interpreter option to shell command as per ticket #18639
2012-07-17Adds interpreter option to shell command as per ticket #18639Mike Grouchy
Specify python interpreter interface ipython or bpython with the -i, --interface options argument. ex// python manage.py shell -i bpython ex// python manage.py shell --interface bpython Like all other options, defaults to default python interpreter when your selected choice isn't available. updated documentation where appropriate
2012-07-17Fixed #17788 -- Added batch_size argument to qs.bulk_create()Anssi Kääriäinen
The qs.bulk_create() method did not work with large batches together with SQLite3. This commit adds a way to split the bulk into smaller batches. The default batch size is unlimited except for SQLite3 where the batch size is limited to 999 SQL parameters per batch. Thanks to everybody who participated in the discussions at Trac.
2012-07-16Fixed #3881 -- skip saving session when response status is 500Anssi Kääriäinen
Saving session data is somewhat likely to lead into error when the status code is 500. It is guaranteed to lead into error if the reason for the 500 code is query error on PostgreSQL.
2012-07-15Changed myapps.models.py to myapps/models.pyDaniel Greenfeld
2012-07-15Added mention in MRO section about method/attribute inheritence. Added ↵Daniel Greenfeld
simple examples to Generic editing views, added index to Generic editing views and Editing mixins, added missing template_name_suffix attribute to Generic editing views.
2012-07-15Dropped support for GDAL < 1.5Claude Paroz
GDAL 1.5 has been released in December 2007.
2012-07-15Fixed #18626 -- rst syntax collision.Aymeric Augustin
2012-07-15Fixed #18625 -- Removed old-style use of url tagAymeric Augustin
from the documentation.
2012-07-14Deprecate two methods (which I seriously doubt anyone ever used, but they ↵Alex Gaynor
were documented so...) because they cannot be implemented efficiently on top of collections.SortedDict in Python 2.7 and up.
2012-07-14Fixed a misplaced Sphinx reference.Aymeric Augustin
2012-07-13Updated links for MacOSX python installersClaude Paroz
2012-07-13Fixed #18601 -- Specified that Python minimum version is 2.6.5Preston Holmes
This is due to a bug in previous Python 2.6 versions related to unicode keyword arguments.
2012-07-12Fixed #18617 -- Highlighted that the app_directories template loader depends ↵Aymeric Augustin
on the order of INSTALLED_APPS. Thanks evildmp for the patch.
2012-07-12Removed old gis install instructions for obsolete distrosClaude Paroz
2012-07-11Merge pull request #197 from StefanKjartansson/masterAdrian Holovaty
Fixed typo in docs
2012-07-11fixed a typo in timezones docs.mitnk
2012-07-10typo in "django/docs/topics/python3.txt"Stefan Kjartansson
2012-07-08Fixed #18577 - Clarified middleware initialization.Tim Graham
Thanks Lukasz Balcerzak for the patch.
2012-07-08Fixed #18173 - Corrected ModelAdmin documentation for get_changelist.Tim Graham
Thanks Keryn Knight for the report and vanessagomes for the patch.
2012-07-08Fixed #18374 -- Explained "corrupt image" errorAymeric Augustin
Thanks fabian and charettes.
2012-07-07Fixed #18164 -- Precised startapp template context contentClaude Paroz
2012-07-07Fixed #18589 -- Typo in generic CBV docs.Aymeric Augustin
Thanks cpthomas for the report.
2012-07-07Removed Django 1.0-specific sections.Aymeric Augustin
2012-07-07Fixed #18587 -- Typo in management command exampleAymeric Augustin
Thanks Frank Wiles.
2012-07-07Fixed #18254 -- Added ability to the static template tags to store the ↵Jannis Leidel
result in a contextt variable. Many thanks to Andrei Antoukh for the initial patch.
2012-07-06Merge pull request #183 from rpedigoni/masterAdrian Holovaty
Fixed typo in 1.5 release notes
2012-07-06Merge pull request #187 from evildmp/docs_typosAdrian Holovaty
Added a missing \ in uwsgi docs. Thanks, evildmp.
2012-07-06Fixed #18576 -- Added missing import in tutorial02Claude Paroz
Thanks jaaruiz at yahoo.com for the report.
2012-07-06restored a missing \ in uwsgi docsDaniele Procida
2012-07-05Fixed #17997 - Documented that the debug server is now multithreaded by default.Tim Graham
Thanks trey.smith@ for the report and vanessagomes for the patch.
2012-07-04fixed typoRenato Pedigoni
2012-07-03Added 'format_html' utility for formatting HTML fragments safelyLuke Plant
2012-07-03Documented utils.html.escape and conditional_escapeLuke Plant
2012-07-02Replaced 'return' by 'raise' in custom model field docsClaude Paroz
Thanks Simon Charette for noticing it. Refs #11162.
2012-07-01Fixed #17436 - Added warning about overriding Model.__init__()Tim Graham
Thanks zsiciarz for the draft patch.
2012-07-01Fixed #16047 -- Restore autocommit state correctly on psycopg2Anssi Kääriäinen
When the postgresql_psycopg2 backend was used with DB-level autocommit mode enabled, after entering transaction management and then leaving it, the isolation level was never set back to autocommit mode. Thanks brodie for report and working on this issue.
2012-07-01Fixed #16882 - Clarified why one should not use 'init_command' after initial ↵Tim Graham
database creation.
2012-07-01Fixed #18493 - Added instructions to locate the Django source files to the tTim Graham
Thanks Claude Paroz for the draft patch.
2012-06-30Fixed #17705 - Updated TabularInline image and doc in tutorial 2.Tim Graham
Thanks xbito for the draft patch.
2012-06-30Fixed #18145 -- Improved documentation of unique_together type fieldsRaúl Cumplido
2012-06-30Fixed #17026 -- Improved wording of contrib.messages' storage backends sectionClaude Paroz
2012-06-30Fixed #16519 -- Deprecated mimetype kwarg of HttpResponse __init__Claude Paroz
This keyword was already deprecated in the code (supported for backwards compatibility only), but never formally deprecated. Thanks Paul McMillan for the report and yasar11732 for the initial patch.
2012-06-30Fixed #17024 -- Added import statements in tutorial code sampleClaude Paroz
2012-06-30Fixed #17168 - Noted TransactionMiddleware only works with "default" ↵Tim Graham
database alias. Thanks codeinthehole for the draft patch.
2012-06-30Fixed #12493 -- Deprecated auto-correction of TEMPLATE_DIRSClaude Paroz
2012-06-30Fixed #11162 -- Mentioned ValidationError in custom model field docsClaude Paroz
2012-06-29Fixed #18528 -- Fixed custom field value_to_string exampleClaude Paroz
Thanks anuraguniyal for the report.
2012-06-28Fixed a formatting issue in the CBV docs.Aymeric Augustin
2012-06-28Fixed #18306 -- Removed most of GeoDjango-specific deployment docsClaude Paroz