Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/contrib/index.txt
Commit message (Collapse)AuthorAgeFilesLines
* Refs #22789 -- Removed contrib.webdesign per deprecation ↵Tim Graham2015-09-241-9/+0
| | | | timeline.
* Fixed #23814 -- Documented apps refactored out of Django.Fabio Natali2015-03-251-1/+0
|
* Used https for most *.python.org linksClaude Paroz2014-12-191-1/+1
|
* Updated formtools docs to point at new package outside ↵Jannis Leidel2014-11-261-21/+0
| | | | | | the Django repo. Refs #23677.
* Moved CSRF docs out of contrib.Thomas Chaumeny2014-11-031-8/+0
|
* Added array field support for PostgreSQL.Marc Tamlyn2014-05-221-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The first part of django.contrib.postgres, including model and two form fields for arrays of other data types. This commit is formed of the following work: Add shell of postgres app and test handling. First draft of array fields. Use recursive deconstruction. Stop creating classes at lookup time. Add validation and size parameter. Add contained_by lookup. Add SimpleArrayField for forms. Add SplitArrayField (mainly for admin). Fix prepare_value for SimpleArrayField. Stop using MultiValueField and MultiWidget. They don't play nice with flexible sizes. Add basics of admin integration. Missing: - Tests - Fully working js Add reference document for django.contrib.postgres.fields.ArrayField. Various performance and style tweaks. Fix internal docs link, formalise code snippets. Remove the admin code for now. It needs a better way of handing JS widgets in the admin as a whole before it is easy to write. In particular there are serious issues involving DateTimePicker when used in an array. Add a test for nested array fields with different delimiters. This will be a documented pattern so having a test for it is useful. Add docs for SimpleArrayField. Add docs for SplitArrayField. Remove admin related code for now. definition -> description Fix typo. Py3 errors. Avoid using regexes where they're not needed. Allow passing tuples by the programmer. Add some more tests for multidimensional arrays. Also fix slicing as much as it can be fixed. Simplify SplitArrayWidget's data loading. If we aren't including the variable size one, we don't need to search like this.
* Removed contrib.comments per deprecation timeline.Tim Graham2014-03-211-6/+0
|
* Fixed #21712 -- Moved autodiscover() to AdminConfig.ready().Aymeric Augustin2014-01-181-2/+2
| | | | Thanks Marc Tamlyn for the initial version of the patch.
* Fixed #21213 -- Added docs for Django's mailing lists.Unai Zalakain2013-10-041-3/+1
| | | | | | | | | | Added docs/internals/mailing-lists.txt documenting the use of django's mailing lists. All references across docs changed to point to this page. The referencing makes use of substitution because there's no way to make a :ref: link in a non-inline fashion in Sphinx. It also makes use of rst_epilog Sphinx conf for making this substitutions across all the docs.
* More migration docs, and conversion of all easy syncdb ↵Andrew Godwin2013-07-251-1/+1
| | | | references
* Removed django.contrib.markup.Aymeric Augustin2012-12-291-8/+0
|
* Removed django.contrib.localflavor.Aymeric Augustin2012-12-291-10/+0
| | | | Each localflavor lives on as a separate app.
* Removed django.contrib.databrowse.Aymeric Augustin2012-12-291-1/+0
| | | | RIP -- you served us well.
* Fixed #19498 -- refactored auth documentationPreston Holmes2012-12-281-1/+1
| | | | | | The auth doc was a single page which had grown unwieldy. This refactor split and grouped the content into sub-topics. Additional corrections and cleanups were made along the way.
* Removed references to changes made in 1.2.Aymeric Augustin2012-06-071-3/+0
| | | | Thanks Florian Apolloner for the patch.
* Fixed #6644 -- Fixed django.contrib.formtools tests to ↵Jannis Leidel2011-08-131-1/+1
| | | | | | be better isolated when running outside of the Django test suite. Also moved around the new wizard's templates a bit to better fit the common app layout. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16616 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15992 -- Added more references to settings. ↵Jannis Leidel2011-05-291-2/+2
| | | | | | Thanks, aaugustin. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16290 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14000 - remove versionadded/changed tags for ↵Timo Graham2010-12-261-4/+0
| | | | | | Django 1.0 and 1.1 git-svn-id: http://code.djangoproject.com/svn/django/trunk@15055 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12323 and #11582 -- Extended the ability to ↵Jannis Leidel2010-10-201-0/+1
| | | | | | handle static files. Thanks to all for helping with the original app, the patch, documentation and general support. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14293 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Refactored markup documentation to give it it's own home.Russell Keith-Magee2010-08-281-34/+3
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@13647 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14112 -- Various Markup fixes for the docs. ↵Russell Keith-Magee2010-08-231-2/+3
| | | | | | Thanks to ramiro for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13628 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14141: docs now use the :doc: construct for links ↵Jacob Kaplan-Moss2010-08-191-22/+20
| | | | | | | | between documents. Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Corrected typo from r13154.Russell Keith-Magee2010-05-091-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@13157 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13310 -- Documented the ↵Russell Keith-Magee2010-05-091-0/+9
| | | | | | RESTRUCTUREDTEXT_FORMAT_SETTINGS setting. Thanks to Wraithan for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13154 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13202 -- Documented required libraries for markup ↵Gary Wilson Jr2010-03-271-6/+11
| | | | | | template tags, based on patch from steveed. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12860 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12930, #12832, #11538 -- Refactored and merged ↵Justin Bronn2010-03-261-0/+9
| | | | | | the GeoDjango documentation into the rest of the Django docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed several broken and redirecting URLs in the ↵Gary Wilson Jr2009-12-261-1/+1
| | | | | | documentation (fixes #12219, refs #12427). git-svn-id: http://code.djangoproject.com/svn/django/trunk@11994 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9465 -- Simplified API Reference documentation ↵Gary Wilson Jr2009-12-261-3/+3
| | | | | | titles for easier lookup and made first-level heading styles consistent. Thanks, adamnelson. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11990 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #4604 - Configurable message passing system, ↵Luke Plant2009-12-091-0/+12
| | | | | | | | | | | | | | | | | | supporting anonymous users This deprecates User.message_set in favour of a configurable messaging system, with backends provided for cookie storage, session storage and backward compatibility. Many thanks to Tobias McNulty for the bulk of the work here, with contributions from Chris Beaven (SmileyChris) and lots of code review from Russell Keith-Magee, and input from many others. Also credit to the authors of various messaging systems for Django whose ideas may have been pinched :-) git-svn-id: http://code.djangoproject.com/svn/django/trunk@11804 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10505: added support for bulk admin actions, ↵Jacob Kaplan-Moss2009-03-231-1/+1
| | | | | | | | including a globally-available "delete selected" action. See the documentation for details. This work started life as Brian Beck's "django-batchadmin." It was rewritten for inclusion in Django by Alex Gaynor, Jannis Leidel (jezdez), and Martin Mahner (bartTC). Thanks, guys! git-svn-id: http://code.djangoproject.com/svn/django/trunk@10121 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8753: converted "new in ..." callouts to proper ↵Jacob Kaplan-Moss2008-09-021-1/+3
| | | | | | Sphinx "versionadded/versionchanged" directives. Thanks to Marc Fargas for all the heavy lifting here. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8843 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Refactored Django's comment system.Jacob Kaplan-Moss2008-08-261-1/+4
| | | | | | | | | Much of this work was done by Thejaswi Puthraya as part of Google's Summer of Code project; much thanks to him for the work, and to them for the program. This is a backwards-incompatible change; see the upgrading guide in docs/ref/contrib/comments/upgrade.txt for instructions if you were using the old comments system. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8557 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Massive reorganization of the docs. See the new docs ↵Jacob Kaplan-Moss2008-08-241-0/+199
online at http://docs.djangoproject.com/. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506 bcc190cf-cafb-0310-a4f2-bffc1f526a37