| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-04-20 | Adapted uses of versionchanged/versionadded to the new form. | Juan Catalano | |
| Refs #20104. | |||
| 2013-04-11 | remove confusing phrase from DecimalField docs | Andrew 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-03-24 | Fixed #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-22 | Added missing markup to docs. | Tim Graham | |
| 2013-03-11 | Fixed broken link in binary fields doc. | Ramiro Morales | |
| 2013-03-10 | Fixed #20018: Added backtick to fix reference | Jonathan Loy | |
| Fixed #20018 | |||
| 2013-03-07 | Adde two "versionadded" markers, thanks to mYk for noticing. | Alex Gaynor | |
| 2013-03-07 | Added a ManyToManyField(db_constraint=False) option, this allows not ↵ | Alex Gaynor | |
| creating constraints on the intermediary models. | |||
| 2013-03-02 | Add a BinaryField model field | Claude Paroz | |
| Thanks Michael Jung, Charl Botha and Florian Apolloner for review and help on the patch. | |||
| 2013-02-20 | Clarified the language used in the documentation. Thanks to Mike Smith for ↵ | Alex Gaynor | |
| the report. | |||
| 2013-02-20 | Added a db_constraint option to ForeignKeys. | Alex Gaynor | |
| This controls whether or not a database level cosntraint is created. This is useful in a few specialized circumstances, but in general should not be used! | |||
| 2013-02-16 | Fixed #19824 - Corrected the class described for Field.primary_key from ↵ | Tim Graham | |
| IntegerField to AutoField. Thanks Keryn Knight. | |||
| 2013-01-07 | Created special PostgreSQL text indexes when unique is True | Claude Paroz | |
| Refs #19441. | |||
| 2013-01-02 | Fixed #19516 - Fixed remaining broken links. | Tim Graham | |
| Added -n to sphinx builds to catch issues going forward. | |||
| 2012-12-29 | Removed versionadded/changed annotations dating back to 1.4. | Aymeric Augustin | |
| 2012-12-29 | Removed django.contrib.localflavor. | Aymeric Augustin | |
| Each localflavor lives on as a separate app. | |||
| 2012-12-26 | Fixed broken links, round 3. refs #19516 | Tim Graham | |
| 2012-12-25 | Fixed more broken links. refs #19516 | Tim Graham | |
| 2012-11-07 | Fixed invalid ipv4 mapped ipv6 addresses in docs | Danilo Bargen | |
| 2012-11-03 | Fixed #17549 -- Added a clickable link for URLFields in admin change list. | Ulrich Petri | |
| 2012-10-18 | Fixed #18046 - Documented than an index is created by default for ↵ | Tim Graham | |
| ForeignKeys; thanks jbauer for the suggestion. | |||
| 2012-10-03 | Fixed #18413 - Noted that a model's files are not deleted when the model is ↵ | Tim Graham | |
| deleted. Thanks lawgon for the report. | |||
| 2012-09-20 | Fixed #18934 - Removed versionadded/changed annotations for Django 1.3 | Tim Graham | |
| 2012-09-19 | Fixed #15325 - Added a link to RelatedManager in the ManytoManyField docs; ↵ | Tim Graham | |
| thanks jammon for the suggestion. | |||
| 2012-09-08 | Fixed #18478 - Documented how to use a mutable default in a model field. | Tim Graham | |
| 2012-09-08 | Avoided mixing dates and datetimes in the examples. | Aymeric Augustin | |
| Refs #16023. | |||
| 2012-08-26 | Fixed typo in model fields reference docs. | Ramiro Morales | |
| 2012-08-21 | Fixed #18637 - Updated some documentation for aspects of models that are ↵ | Tim Graham | |
| ModelForm specific, not admin specific. Thanks Ben Sturmfels for the patch. | |||
| 2012-08-08 | Fix #18062: Document best practices for choices in model fields. | James Bennett | |
| 2012-08-03 | Fixed #15932 - Documented how to supress multiple reverse relations to the ↵ | Tim Graham | |
| same model. Thanks Claude Paroz for the patch. | |||
| 2012-07-24 | Clarified default name of M2M relationship DB table. | Ramiro Morales | |
| 2012-06-07 | Removed references to changes made in 1.2. | Aymeric Augustin | |
| Thanks Florian Apolloner for the patch. | |||
| 2012-06-06 | Replaced documentation snippets using "gender" with less sensitive examples. | Jacob Kaplan-Moss | |
| 2012-06-06 | Added alt attribute to img tags in docs. | Aymeric Augustin | |
| This is a good practice for accessibility. Thanks Jessica McKellar for the report. | |||
| 2012-04-29 | Prevent Oracle from changing field.null to True | Anssi Kääriäinen | |
| Fixed #17957 -- when using Oracle and character fields, the fields were set null = True to ease the handling of empty strings. This caused problems when using multiple databases from different vendors, or when the character field happened to be also a primary key. The handling was changed so that NOT NULL is not emitted on Oracle even if field.null = False, and field.null is not touched otherwise. Thanks to bhuztez for the report, ramiro for triaging & comments, ikelly for the patch and alex for reviewing. | |||
| 2012-04-22 | Fixed #5893 -- Added a flag to FilePathField to allow listing folders, in ↵ | Alex Gaynor | |
| addition to regular files. Thank you to Brian Rosner, for encouraging me to first contribute to Django 4 years ago. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17925 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2012-03-31 | Removed deprecated URLField.verify_exists. | Aymeric Augustin | |
| The deprecation schedule was slightly accelerated because of possible security ramifications. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17847 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2012-03-29 | Fixed #17870 -- Documented that EmailField default max_length of 75 does not ↵ | Claude Paroz | |
| comply with RFCs 3696/5321. Thanks Rotund for the report and the patch and Russell Keith-Magee for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17826 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2012-03-17 | Fixed #17926 -- Removed mention of XMLField in docs (missing deletion from ↵ | Claude Paroz | |
| r15982). Thanks aburgel for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17764 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-12-20 | Fixed a typo in the model fields reference. | Aymeric Augustin | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@17238 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-11-19 | Fix #15646: Document that a FileField's full path can't be relied upon until ↵ | Karen Tracey | |
| its model has been saved to the database. Thanks poirier. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17113 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-11-12 | Fix #16570: Restore ability to have decimal fields where max_digits equals ↵ | Karen Tracey | |
| decimal_places. Thanks dcwatson and kenth. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17089 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-10-30 | Fixed #17063 -- Fixed visibility of a few version-dependant notes in our ↵ | Ramiro Morales | |
| documentation. Thanks jifeng.yin AT gmail DOT com for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17057 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-10-14 | Fixed #12308 -- Added tablespace support to the PostgreSQL backend. | Aymeric Augustin | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@16987 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-10-14 | Fixed many more ReST indentation errors, somehow accidentally missed from ↵ | Luke Plant | |
| [16955] git-svn-id: http://code.djangoproject.com/svn/django/trunk@16983 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-10-13 | Fixed #7609 -- Noted in the model fields reference documentation that ↵ | Julien Phalip | |
| `PositiveIntegerField` accepts the value 0 for backwards-compatibility reasons. Thanks to everyone involved in the resolution of this issue, including Paul Collins for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16972 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-09-10 | Corrected documentation inconsistencies regarding deprecation of ↵ | Carl Meyer | |
| URLField.verify_exists. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16776 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-09-10 | Altered the behavior of URLField to avoid a potential DOS vector, and to ↵ | Russell Keith-Magee | |
| avoid potential leakage of local filesystem data. A security announcement will be made shortly. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16760 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-09-04 | Converted links to external topics so they use intersphinx extension markup. | Ramiro Morales | |
| This allows to make these links more resilent to changes in the target URLs. Thanks Jannis for the report and Aymeric Augustin for the patch. Fixes #16586. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16720 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-07-29 | Fixed #16498 -- Fixed typo in GenericIPAddressField docs. Thanks, JshWright. | Jannis Leidel | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@16559 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
