summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-07-29Fixed #20774 -- Mention the new django-localflavor app as a replacement for ↵Jannis Leidel
the contrib app.
2013-07-28Fixed ReST typo in topics/class-based-views/mixins.txtTim Graham
2013-07-27Moved a release note that I had accidentally misplaced in bb145e2c47d71.Julien Phalip
2013-07-27Fixed #11195 -- Added CSS classes to the changelist cells to allow style ↵Julien Phalip
customizations. Thanks to akaihola, Ramiro Morales and vdboor for their work on the patch.
2013-07-27Fixed a number of minor misspellings.Julien Phalip
2013-07-26Fixed #20805 -- Removed an extra colon beside checkboxes in the admin.Tim Graham
Thanks CollinAnderson for the report.
2013-07-26A bit more documentationAndrew Godwin
2013-07-26Fixed #20625 -- Chainable Manager/QuerySet methods.Loic Bistuer
Additionally this patch solves the orthogonal problem that specialized `QuerySet` like `ValuesQuerySet` didn't inherit from the current `QuerySet` type. This wasn't an issue until now because we didn't officially support custom `QuerySet` but it became necessary with the introduction of this new feature. Thanks aaugustin, akaariai, carljm, charettes, mjtamlyn, shaib and timgraham for the reviews.
2013-07-25Added versionadded directive missing from b7bd708.Aymeric Augustin
2013-07-25Fixed #20769 -- Added "Python compatibility" section to the 1.6 release notes.Tim Graham
2013-07-25More migration docs, and conversion of all easy syncdb referencesAndrew Godwin
2013-07-25Fixed #18315 -- Documented QueryDict.popitem and QueryDict.popmark hellewell
Thanks gcbirzan for the report.
2013-07-25Small start to migrations documentationAndrew Godwin
2013-07-25Fixed #20792 -- Corrected DISALLOWED_USER_AGENTS docs.Brenton Cleeland
Thanks simonb for the report.
2013-07-24Fixed #18168 -- clarified precedence of validationPreston Holmes
any choices set by formfield_for_choice_field are still subject to model validation of the model field's choices attribute
2013-07-24Fixed #20766 -- Deprecated FastCGI support.Tim Graham
2013-07-24Fixed #19941 -- Modified runtests.py to make running the tests easier.Anssi Kääriäinen
1. Automatically use tests/../django as the Django version. 2. If settings aren't provided through --settings or DJANGO_SETTINGS_MODULE) then use test_sqlite.
2013-07-24Fixed typo in Custom management commands documentation.Jon Lønne
2013-07-24Fixed #14300 -- Fixed initial SQL location if models is a package.Tim Graham
Thanks al_the_x for the report and fheinz for the draft patch.
2013-07-24Fixed #20794 -- Documented changes to validate_emailDominic Rodger
4e2e8f39d changed the way validate_email behaves for foo@localhost email addresses, but wasn't listed in the release notes.
2013-07-23Fixed #10284 -- ModelFormSet.save(commit=False) no longer deletes objectsTim Graham
Thanks laureline.guerin@ and Wedg.
2013-07-23Fixed #19900 -- Updated admin buttons to use CSS3 rounded corners.Pedro Mourelle
2013-07-21Fixed #13629 -- Added CSS classes to the `<body>` tag of some admin ↵Thomas Sorrel
templates to allow style customizations per app or per model.
2013-07-19Fixed #18551 -- Enabled skipIfDBFeature/skipUnlessDBFeature to decorate a classClaude Paroz
Thanks Tim Graham for the review and improved patch.
2013-07-19Fixed #14656 -- Added Atom1Feed `published` elementMatt Deacalion Stevens
Some feed aggregators make use of the `published` element as well as the `updated` element (within the Atom standard -- http://bit.ly/2YySb). The standard allows for these two elements to be present in the same entry. `Atom1Feed` had implemented the `updated` element which was incorrectly taking the date from `pubdate`.
2013-07-19Merge pull request #1374 from seocam/fix_i18n_docsTim Graham
LocaleMiddleware isn't default anymore (corrected docs)
2013-07-19Merge pull request #1377 from Matt-Stevens/doc-fixes-ref-databasesTim Graham
Updated the `databases` documentation
2013-07-19Merge pull request #1375 from Matt-Stevens/masterTim Graham
Fixed Croatia's country code in `localflavor` docs
2013-07-19Merge pull request #1378 from loic/docsTim Graham
Fixed #20772 -- Fixed minor typo in form media docs.
2013-07-19Fixed #20772 -- Fixed minor typo in form media docs.Loic Bistuer
2013-07-19Updated the `databases` documentationMatt Deacalion Stevens
+ Removed a reference about MySQL storage engines also being called 'table types', as this term has been deprecated for 8 years and is no longer used. + Fixed the link to the official InnoDB storage engine docs. + Apache (versions >= 2.4) will always choose a multi-threaded MPM module on modern operating systems (later than 2002).
2013-07-19Fix Croatia's country code in `localflavor` docsMatt Deacalion Stevens
Croatia's country code is 'HR', not 'CR'.
2013-07-18LocaleMiddleware isn't default anymoreSergio Oliveira
Changed in @23229061fcb836ecca2195cc75f91e331279a5d1
2013-07-18Fixed #20762 -- Clarified that add_fieldsets is not a standard ModelAdmin ↵Tim Graham
attribute.
2013-07-18Merge pull request #1370 from Matt-Stevens/doc-url-fixTim Graham
Fixed broken Atom URLs in syndication docs
2013-07-18Fixed #20763 -- Typo in tutorial 3.Tim Graham
Thanks crichard@ for the report.
2013-07-18Atom specification URL updatedMatt Deacalion Stevens
Changed to the URL of the official RFC for Atom, since Atomenabled.org is just a holding page.
2013-07-18Fixed typo in inspectdb docsAlasdair Nicol
2013-07-17Allowed Context.push to behave as a context mananger.Curtis Maloney
Thanks Loic Bistuer for the review.
2013-07-17Fixed #20756 -- Typo in uWSGI docs.Tim Graham
2013-07-16Fixed #14007 -- Added model discovery in models module without the need to ↵Tim Graham
specify app_label. Thanks mark@ and Aramgutang for work on the patch.
2013-07-16Reworked docs for ModelForm validation.Loic Bistuer
2013-07-16Rephrased the docs for reporting security issues to make it less intimidating.Loic Bistuer
2013-07-15Fixed some markup in docs/ref/templates/api.txtTim Graham
2013-07-14Fixed #20746 -- Removed Python 2.6 specific code/docsTim Graham
2013-07-13Fixes grammatical error in auth docsDavid Binetti
Changes "An error will be raise if you try..." to "An error will be raised if you try..."
2013-07-13Removed Python 2.6 references in GIS docsClaude Paroz
Refs #20746.
2013-07-13Removed obsolete sentence in queries docsClaude Paroz
2013-07-13Fixed #20582 -- Allowed default Form.label_suffix to be translatedClaude Paroz
Thanks Tim Graham for the review.
2013-07-12Fixed #20653 -- Renamed checksetup -> check missed in [03465639]Tim Graham
Thanks CollinAnderson for the report.