summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2012-07-01Fixed #17436 - Added warning about overriding Model.__init__()Tim Graham
Thanks zsiciarz for the draft patch.
2012-07-01Fixed #16882 - Clarified why one should not use 'init_command' after initial ↵Tim Graham
database creation.
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-28Fixed a formatting issue in the CBV docs.Aymeric Augustin
2012-06-28Fixed #18306 -- Removed most of GeoDjango-specific deployment docsClaude Paroz
2012-06-28Updated obsolete links in the documentationClaude Paroz
2012-06-27Fixed #17511 - Removed reference to deprecated "reset" management command in ↵Tim Graham
FAQ; thanks voxpuibr@ for the report.
2012-06-26Fixed #17485 -- Made defer work with select_relatedAnssi Kääriäinen
This commit tackles a couple of issues. First, in certain cases there were some mixups if field.attname or field.name should be deferred. Field.attname is now always used. Another issue tackled is a case where field is both deferred by .only(), and selected by select_related. This case is now an error. A lot of thanks to koniiiik (Michal Petrucha) for the patch, and to Andrei Antoukh for review.
2012-06-23Updated TEMPLATE_CONTEXT_PROCESSORS defaults in the docs.jnns
django.core.context_processors.tz was missing from default TEMPLATE_CONTEXT_PROCESSORS in the template api documentation.
2012-06-22Corrected the `instance_dict` description for form wizards.Florian Apolloner
2012-06-19Fixed a documentation typo on the widget page.Tim Saylor
2012-06-19Fixed #14502 again -- saner verbatim closing tokenChris Beaven
Previously, the closing token for the verbatim tag was specified as the first argument of the opening token. As pointed out by Jannis, this is a rather major departure from the core tag standard. The new method reflects how you can give a specific closing name to {% block %} tags.
2012-06-18Fixed #18444 -- Replace hard coded "View on Site" URLsDaniel Hepper
2012-06-11Fixed #18451 -- Vastly improved class based view documentation.Jannis Leidel
Many thanks to Daniel Greenfeld, James Aylett, Marc Tamlyn, Simon Williams, Danilo Bargen and Luke Plant for their work on this.
2012-06-08Cleaned whitespace errors introduced in previous commitAnssi Kääriäinen
2012-06-08Fixed #18399 – Added a way to get ContentTypes for proxy modelsSimon Charette
Added kwargs for_concrete_model and for_concrete_models to ContentType methods get_for_model() and get_for_models(). By setting the flag to False, it is possible to get the contenttype for proxy models.
2012-06-07Fixed #18445 -- Added a links in the docs.Aymeric Augustin
Thanks Audrey Roy for the patch.
2012-06-07Fixed #18363 -- Added Python 3 compatibility layer.Claude Paroz
Thanks Vinay Sajip for the support of his django3 branch and Alex Gaynor, kezabelle, YorikSar for the review.
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review.
2012-06-07fix bad locale namesjakul
2012-06-07Removed references to changes made in 1.2.Aymeric Augustin
Thanks Florian Apolloner for the patch.
2012-06-07Fixed #18397 -- Avoided referencing lawrence.com.Aymeric Augustin
This commit includes multiple small related changes, see the ticket for a full discussion.
2012-06-07Fixed #18396 -- Changed Spatialite download URLs.Aymeric Augustin
Thanks gabrielcw AT gmail.com for the report.
2012-06-07Fixed #18411 -- Clarified HttpRequest doc slightly.Aymeric Augustin
Thanks torkel.bjornson AT gmail.com for the report.
2012-06-07Fixed #14502 -- Added a verbatim template tag.Aymeric Augustin
Thanks SmileyChris for the patch.
2012-06-06Replaced documentation snippets using "gender" with less sensitive examples.Jacob Kaplan-Moss
2012-06-06Added alt attribute to img tags in docs.Aymeric Augustin
This is a good practice for accessibility. Thanks Jessica McKellar for the report.
2012-06-05Fixed #15926 -- Added option --no-initial-data to syncdb and flush.Honza Kral
Thanks msiedlarek, jpaugh64 and vlinhart!
2012-06-04Noted that SECURE_PROXY_SSL_HEADER is needed by CSRF protection.Luke Plant
Both false positives and false negatives of HttpRequest.is_secure can be dangerous.
2012-06-02Fixed #18259 -- Specified that ROOT_URLCONF might be needed.Claude Paroz
When using the template system in standalone mode and if the url template tag is used, ROOT_URLCONF has to be defined. Thanks techtonik for the report.
2012-05-24Fixed #18353 -- Inconsistency in date-based CBVs.Aymeric Augustin
2012-05-20Documented next/previous_week. Refs #10890.Aymeric Augustin
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
This is a preparation for unicode literals general usage in Django (Python 3 compatibility).
2012-05-18Fixed typo on GeoQuerySet.geohash method.Glen Robertson
2012-05-17Added load i18n code to the base wizard form template documentation as it ↵Jeremy Cowgar
uses the trans tag.
2012-05-16Fixed #17896 -- Added file_hash method to CachedStaticFilesStorage to be ↵Jannis Leidel
able to customize the way the hashed name of a file is created. Thanks to mkai for the initial patch.
2012-05-12Fixed #4102 -- Allow update of specific fields in model.save()Andrei Antoukh
Added the ability to update only part of the model's fields in model.save() by introducing a new kwarg "update_fields". Thanks to all the numerous reviewers and commenters in the ticket
2012-05-10Fixed #17950 -- Warned about usability limits of ModelChoiceField.Aymeric Augustin
Thanks poirier for the report.
2012-05-10Fixed #18257 -- Typo in contenttypes docs.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-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-01Fixed #18246 -- Replaced bash-specific syntax in geodjango postgis helper ↵Claude Paroz
script. Thanks jose for the report.
2012-05-01Clarified warning about date-based generic views.Aymeric Augustin
2012-04-30Fixed #18217 -- Time zone support in generic viewsAymeric Augustin
Introduced a distinct implementation depending on the type of the date field (DateField or DateTimeField), and applied appropriate conversions is the latter case, when time zone support is enabled.
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
Thanks Clueless for the initial patch. Note that unittest has been purposely left out (external package only used by Python 2.6).