summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2013-04-13Fixed #4592: Made CheckboxSelectMultiple more like RadioSelectBaptiste Mispelon
I refactored RadioSelect and CheckboxSelectMultiple to make them inherit from a base class, allowing them to share the behavior of being able to iterate over their subwidgets. Thanks to Matt McClanahan for the initial patch and to Claude Paroz for the review.
2013-04-13Fixed #4117: Apply id attribute to the outer <ul> of RadioSelectBaptiste Mispelon
2013-04-13Fixed #19874: Apply id attribute to the outer <ul> of CheckboxSelectMultipleBaptiste Mispelon
2013-04-12Fixed #20252 -- Mentionned geojson Spatialite support from 1.5Claude Paroz
Thanks burton449geo at gmail.com for the report.
2013-04-12Fixed #20248 - Clarified manage.py vs. django-admin.pyTim Graham
2013-04-12Documented BoundField.label_tagClaude Paroz
2013-04-11Fixed #20243 - Clarified when RelatedManager.remove() exists.Tim Graham
2013-04-11remove confusing phrase from DecimalField docsAndrew Badr
The phrase "if it exists" was used in reference to the `decimal_places` argument to `DecimalField`, when in fact that field is required.
2013-04-05Removed a trailing space in the template name on line 174.Andrew Brown
This trailing space may seem innocuous, but can be easily copied-and-pasted from the docs. This can lead to bizarre File Not Found errors where the checked paths look correct, but actually aren't because the trailing space is hard to see in an error message.
2013-04-04Fix #20195: wrong reference in session settings documentation.Baptiste Mispelon
2013-04-02Fixed #19748 - Documented django.utils.module_loading.import_by_pathTim Graham
2013-04-01Updated some 'Dive Into Python' linksClaude Paroz
2013-03-31Fixed #9913 - Clarified User.is_authenticated docs.Tim Graham
Thanks rshea for the draft text.
2013-03-30Fixed some markup in formtools docs.Tim Graham
2013-03-30Fixes #20162 -- Added a note in the documentation for `static.serve()` about ↵Julien Phalip
the need for updating the system's map files when incorrect content types are returned. Many thanks to Simon Charette and Claude Paroz for their feedback.
2013-03-30Fixed #18277 - Clarified startproject documentation.Tim Graham
2013-03-29Fixed #19897 - Updated static files howto.Tim Graham
Thanks Jan Murre, Reinout van Rees and Wim Feijen, plus Remco Wendt for reviewing.
2013-03-29Fixed #20160 -- Erronous reference to `module_name` in admin doc.Baptiste Mispelon
Ref #19689.
2013-03-29Improved FormView docs in class-based views index.Tim Graham
Thanks Stefan Berder.
2013-03-29Merge pull request #956 from maikhoepfel/masterTim Graham
Removed ambiguity regarding LANGUAGES setting
2013-03-28Fixed #20146 -- Updated removed_tags exampleferhat elmas
2013-03-25Docs: Remove ambiguity.Maik Hoepfel
The docs to the LANGUAGES setting were using both the term language code and language name for the same thing.
2013-03-24Merge pull request #951 from yohanboniface/set_signed_cookieTim Graham
Fixed signature of HttpResponse.set_signed_cookie in docs.
2013-03-24Fixed #20124 - Fixed doc warnings.Tim Graham
2013-03-24Doc: "value" is arg not kwarg in HttpResponse.set_signed_cookieYohan Boniface
2013-03-24Fixed #15124 -- Changed the default for BooleanField.Aymeric Augustin
Thanks to the many contributors who updated and improved the patch over the life of this ticket.
2013-03-23Merge pull request #942 from stephrdev/trac-18000Jannis Leidel
Fixed #18000 -- Moved the code to handle goto requests to an extra WizardView method.
2013-03-23Updated docs, changed versionchanged to versionadded.Stephan Jaekel
2013-03-23Added some class attributes to pass initial form lists to the WizardView ↵Stephan Jaekel
without the need to add them in the as_view call.
2013-03-23Moved the code to handle goto requests in a extra WizardView method.Stephan Jaekel
2013-03-22Added missing markup to docs.Tim Graham
2013-03-21Docs template name mistakeTom V
change_list_request.html doesn't exist, it's named  change_list_results.html
2013-03-21Fixed #20084 -- Provided option to validate formset max_num on server.Andrew Gorcester
This is provided as a new "validate_max" formset_factory option defaulting to False, since the non-validating behavior of max_num is longstanding, and there is certainly code relying on it. (In fact, even the Django admin relies on it for the case where there are more existing inlines than the given max_num). It may be that at some point we want to deprecate validate_max=False and eventually remove the option, but this commit takes no steps in that direction. This also fixes the DoS-prevention absolute_max enforcement so that it causes a form validation error rather than an IndexError, and ensures that absolute_max is always 1000 more than max_num, to prevent surprising changes in behavior with max_num close to absolute_max. Lastly, this commit fixes the previous inconsistency between a regular formset and a model formset in the precedence of max_num and initial data. Previously in a regular formset, if the provided initial data was longer than max_num, it was truncated; in a model formset, all initial forms would be displayed regardless of max_num. Now regular formsets are the same as model formsets; all initial forms are displayed, even if more than max_num. (But if validate_max is True, submitting these forms will result in a "too many forms" validation error!) This combination of behaviors was chosen to keep the max_num validation simple and consistent, and avoid silent data loss due to truncation of initial data. Thanks to Preston for discussion of the design choices.
2013-03-19Fixed #16319 -- added SuccessMessageMixin to contrib.messagesPaul Collins
Thanks martinogden for the initial patch and d1ffuz0r for tests.
2013-03-18small documentation update to outline caveat with SESSION_COOKIE_DOMAINRyan West
2013-03-18Added warn note to docs about MySQL issues with 0000-00-00 date stringsJuan Catalano
MySQL accepts 0000-00-00 as a valid date but MySQLdb converts those values into None. So there will be problems for instance if trying to transport the data using dumpdata/loaddata. This patch refs #6642 that has been closed as wontfix since this is a particular problem of MySQL.
2013-03-18Update versions and links to source tarballs.Justin Bronn
2013-03-18Fixed #19968 -- Dropped support for PostgreSQL < 8.4.Aymeric Augustin
2013-03-18Fixed #17037 -- Added a --all option to diffsettings.Aymeric Augustin
2013-03-15Fixed #20053 -- Fix `index_together` documentationJohan Charpentier
2013-03-14Fixed #17051 -- Removed some 'invalid' field error messagesClaude Paroz
When the 'invalid' error message is set at field level, it masks the error message raised by the validator, if any.
2013-03-14Fixed #16649 -- Refactored save_base logicAnssi Kääriäinen
Model.save() will use UPDATE - if not updated - INSERT instead of SELECT - if found UPDATE else INSERT. This should save a query when updating, but will cost a little when inserting model with PK set. Also fixed #17341 -- made sure .save() commits transactions only after the whole model has been saved. This wasn't the case in model inheritance situations. The save_base implementation was refactored into multiple methods. A typical chain for inherited save is: save_base() _save_parents(self) for each parent: _save_parents(parent) _save_table(parent) _save_table(self)
2013-03-11Fixed broken link in binary fields doc.Ramiro Morales
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 support for savepoints in SQLite.Aymeric Augustin
Technically speaking they aren't usable yet.
2013-03-11Enabled database-level autocommit for all backends.Aymeric Augustin
This is mostly a documentation change. It has the same backwards-incompatibility consequences as those described for PostgreSQL in a previous commit.
2013-03-10Fixed #20018: Added backtick to fix referenceJonathan Loy
Fixed #20018
2013-03-09Fixed #19923 -- Display tracebacks for non-CommandError exceptionsClaude Paroz
By default, show tracebacks for management command errors when the exception is not a CommandError. Thanks Jacob Radford for the report.
2013-03-08Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ↵Loic Bistuer
return a QuerySet.