Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/index.txt
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #24961 -- Added links to all auth docs pages from ↵Daniel Roseman2015-06-091-1/+6
| | | | index.
* Fixed #24732 -- Reordered tutorial to cover basics ↵João Luiz Lorencetti2015-05-281-3/+4
| | | | before bells and whistles.
* Fixed #24839 -- Removed references to deprecated ↵Tim Graham2015-05-221-1/+0
| | | | contrib.webdesign.
* Fixed #23814 -- Documented apps refactored out of Django.Fabio Natali2015-03-251-1/+0
|
* Added a "Writing migrations" how-to.Tim Graham2015-02-031-1/+2
|
* Removed FastCGI support per deprecation timeline; refs ↵Tim Graham2015-01-171-1/+0
| | | | #20766.
* Fixed #24031 -- Added CASE expressions to the ORM.Michał Modzelewski2015-01-131-0/+1
|
* Fixed #23878 -- Moved Query and Prefetch documentationNg Zhi An2015-01-121-1/+0
|
* Moved doc on the DTL's syntax to the ref/ section.Aymeric Augustin2015-01-101-1/+4
| | | | | | | This makes room for a more general introduction about templating. Updated some links to point to the new location, but kept those that didn't talk specifically about the DTL.
* Fixed #24070 -- Added tutorial topics to doc index.Bibhas2015-01-031-6/+6
|
* Fixed #23753 -- Added a suite of SQL FunctionsJosh Smeaton2014-12-271-1/+2
| | | | | | | | | Added functions and tests Added docs and more tests Added TextField converter to mysql backend Aliased Value as V in example docs and tests Removed unicode_compatible in example Fixed console emulation in examples
* Updated formtools docs to point at new package outside ↵Jannis Leidel2014-11-261-4/+0
| | | | | | the Django repo. Refs #23677.
* Fixed #14030 -- Allowed annotations to accept all ↵Josh Smeaton2014-11-151-1/+2
| | | | expressions
* Moved CSRF docs out of contrib.Thomas Chaumeny2014-11-031-1/+1
|
* Fixed #17101 -- Integrated django-secure and added check ↵Tim Graham2014-09-121-0/+1
| | | | | | | | | --deploy option Thanks Carl Meyer for django-secure and for reviewing. Thanks also to Zach Borboa, Erik Romijn, Collin Anderson, and Jorge Carleitao for reviews.
* Introduced a technical board.Aymeric Augustin2014-08-011-0/+2
| | | | | Extended the scope of the core team a bit (depending on your current perspective on that scope).
* Renamed "committers" to "team".Aymeric Augustin2014-08-011-1/+1
|
* Fixed #23067 -- Updated docs to use django-adminChristoph Heer2014-07-301-1/+1
|
* Fixed #22812 -- Refactored lookup API documentation.Jorge C. Leitão2014-07-091-2/+3
| | | | Thanks Anssi and Tim for reviews.
* Added array field support for PostgreSQL.Marc Tamlyn2014-05-221-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Fixed #22019 -- Added Model.objects reference documentation.Aliaksandr Semianiuk2014-05-171-1/+2
|
* Link new testing tools document from main index.Ramiro Morales2014-05-111-0/+1
|
* Added first cut at reference documentation for the ↵Russell Keith-Magee2014-03-031-1/+1
| | | | checks framework.
* Add reference documentation for operations and stubs for ↵Andrew Godwin2014-02-121-1/+3
| | | | schemaeditor.
* Fixed #16905 -- Added extensible checks (nee validation) ↵Russell Keith-Magee2014-01-201-0/+1
| | | | | | | | | | | framework This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
* Fixed #16187 -- refactored ORM lookup systemAnssi Kääriäinen2014-01-181-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allowed users to specify which lookups or transforms ("nested lookus") are available for fields. The implementation is now class based. Squashed commit of the following: commit fa7a7195f1952a9c8dea7f6e89ee13f81757eda7 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Jan 18 10:53:24 2014 +0200 Added lookup registration API docs commit eb1c8ce164325e0d8641f14202e12486c70efdb6 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Tue Jan 14 18:59:36 2014 +0200 Release notes and other minor docs changes commit 11501c29c9352d17f22f3a0f59d3b805913dedcc Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Jan 12 20:53:03 2014 +0200 Forgot to add custom_lookups tests in prev commit commit 83173b960ea7eb2b24d573f326be59948df33536 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Jan 12 19:59:12 2014 +0200 Renamed Extract -> Transform commit 3b18d9f3a1bcdd93280f79654eba0efa209377bd Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Jan 12 19:51:53 2014 +0200 Removed suggestion of temporary lookup registration from docs commit 21d0c7631c161fc0c67911480be5d3f13f1afa68 Merge: 2509006 f2dc442 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Jan 12 09:38:23 2014 -0800 Merge pull request #2 from mjtamlyn/lookups_3 Reworked custom lookups docs. commit f2dc4429a1da04c858364972eea57a35a868dab4 Author: Marc Tamlyn <marc.tamlyn@gmail.com> Date: Sun Jan 12 13:15:05 2014 +0000 Reworked custom lookups docs. Mostly just formatting and rewording, but also replaced the example using ``YearExtract`` to use an example which is unlikely to ever be possible directly in the ORM. commit 250900650628d1f11beadb22814abd666029fb81 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Jan 12 13:19:13 2014 +0200 Removed unused import commit 4fba5dfaa022653ffa72497258ffd8f8b7476f92 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Jan 11 22:34:41 2014 +0200 Added docs to index commit 6d53963f375c77a1f287833b19b976d23f36c30b Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Jan 11 22:10:24 2014 +0200 Dead code removal commit f9cc0390078e21f1ea5a7bc1f15b09f8f6b0904d Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Jan 11 19:00:43 2014 +0200 A new try for docs commit 33aa18a6e3c831930bda0028222a26f9c1d96e66 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Jan 11 14:57:12 2014 +0200 Renamed get_cols to get_group_by_cols commit c7d5f8661b7d364962bed2e6f81161c1b4f1bcc3 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Jan 11 14:45:53 2014 +0200 Altered query string customization for backends vendors The new way is trying to call first method 'as_' + connection.vendor. If that doesn't exist, then call as_sql(). Also altered how lookup registration is done. There is now RegisterLookupMixin class that is used by Field, Extract and sql.Aggregate. This allows one to register lookups for extracts and aggregates in the same way lookup registration is done for fields. commit 90e7004ec14e15503f828cc9bde2a7dab593814d Merge: 66649ff f7c2c0a Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Jan 11 13:21:01 2014 +0200 Merge branch 'master' into lookups_3 commit 66649ff891c7c73c7eecf6038c9a6802611b5d8a Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Jan 11 13:16:01 2014 +0200 Some rewording in docs commit 31b8faa62714b4b6b6057a9f5cc106c4dd73caab Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Dec 29 15:52:29 2013 +0200 Cleanup based on review comments commit 1016159f34674c0df871ed891cde72be8340bb5d Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Dec 28 18:37:04 2013 +0200 Proof-of-concept fix for #16731 Implemented only for SQLite and PostgreSQL, and only for startswith and istartswith lookups. commit 193cd097ca8f2cc6a911e57b8e3fb726f96ee6a6 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Dec 28 17:57:58 2013 +0200 Fixed #11722 -- iexact=F() produced invalid SQL commit 08ed3c3b49e100ed9019831e770c25c8f61b70f9 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Dec 21 23:59:52 2013 +0200 Made Lookup and Extract available from django.db.models commit b99c8d83c972786c6fcd0e84c9e5cb08c1368300 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Dec 21 23:06:29 2013 +0200 Fixed review notes by Loic commit 049eebc0703c151127f4f0265beceea7b8b39e72 Merge: ed8fab7 b80a835 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Dec 21 22:53:10 2013 +0200 Merge branch 'master' into lookups_3 Conflicts: django/db/models/fields/__init__.py django/db/models/sql/compiler.py django/db/models/sql/query.py tests/null_queries/tests.py commit ed8fab7fe8867ff3eb801c3697a426478387bb2f Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Dec 21 22:47:23 2013 +0200 Made Extracts aware of full lookup path commit 27a57b7aed91b2f346abc4a77da838bffa17c727 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Dec 1 21:10:11 2013 +0200 Removed debugger import commit 074e0f5aca0572e368c11e6d2c73c9026e7d63d7 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Dec 1 21:02:16 2013 +0200 GIS lookup support added commit 760e28e72bae475b442b026650969b0d182dbe53 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Dec 1 20:04:31 2013 +0200 Removed usage of Constraint, used Lookup instead commit eac47766844b90e7d3269e7a8c012eee34ec0093 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Dec 1 02:22:30 2013 +0200 Minor cleanup of Lookup API commit 2adf50428d59a783078b0da3d5d035106640c899 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sun Dec 1 02:14:19 2013 +0200 Added documentation, polished implementation commit 32c04357a87e3727a34f8c5e6ec0114d1fbbb303 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Nov 30 23:10:15 2013 +0200 Avoid OrderedDict creation on lookup aggregate check commit 7c8b3a32cc17b4dbca160921d48125f1631e0df4 Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Sat Nov 30 23:04:34 2013 +0200 Implemented nested lookups But there is no support of using lookups outside filtering yet. commit 4d219d4cdef21d9c14e5d6b9299d583d1975fcba Author: Anssi Kääriäinen <akaariai@gmail.com> Date: Wed Nov 27 22:07:30 2013 +0200 Initial implementation of custom lookups
* Documented the Apps and AppConfig APIs.Aymeric Augustin2013-12-241-0/+3
|
* Updated a bunch of hyperlinks in documentationClaude Paroz2013-12-081-1/+1
|
* Added link to localized formatting doc from main index.Ramiro Morales2013-12-041-1/+2
|
* Fixed #21213 -- Added docs for Django's mailing lists.Unai Zalakain2013-10-041-3/+4
| | | | | | | | | | 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.
* Fixed #20877 -- added a performance optimization guideevildmp2013-09-211-0/+8
|
* Corrected markup problems in new security summary page.Russell Keith-Magee2013-09-191-0/+1
|
* Consolidated documentation for F() and Q()evildmp2013-09-061-1/+2
|
* Merge remote-tracking branch 'core/master' into ↵Andrew Godwin2013-08-091-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | schema-alteration Conflicts: django/core/management/commands/flush.py django/core/management/commands/syncdb.py django/db/models/loading.py docs/internals/deprecation.txt docs/ref/django-admin.txt docs/releases/1.7.txt
| * Fixed #20766 -- Deprecated FastCGI support.Tim Graham2013-07-241-1/+1
| |
* | Small start to migrations documentationAndrew Godwin2013-07-251-0/+3
|/
* Updated test failure example.Ramiro Morales2013-05-121-1/+1
|
* Fixed #17365, #17366, #18727 -- Switched to discovery ↵Carl Meyer2013-05-111-1/+0
| | | | | | | | | | | test runner. Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670.
* Fixed #19897 - Updated static files howto.Tim Graham2013-03-301-1/+2
| | | | | Thanks Jan Murre, Reinout van Rees and Wim Feijen, plus Remco Wendt for reviewing.
* Fixed #19582 - Added a static files tutorial.Tim Graham2013-03-301-1/+2
| | | | Thanks James Pic.
* Deprecated django.contrib.comments.Jacob Kaplan-Moss2013-03-111-1/+0
|
* Added more shortcuts to i18n docs in index page.Ramiro Morales2013-01-251-1/+4
|
* Removed django.contrib.localflavor.Aymeric Augustin2012-12-291-1/+1
| | | | 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.
* Better name for a new testing documentation link.Ramiro Morales2012-12-221-1/+1
|
* Fixed #19497 -- Refactored testing docs.Ramiro Morales2012-12-221-1/+5
| | | | Thanks Tim Graham for the review and suggestions.
* Fixed #9962 - Added a testing tutorial.Tim Graham2012-12-151-1/+2
| | | | | Thank-you Daniele Procida for the first draft and shaibi, Aymeric, and others for the reviews.
* Fixed #16779 - Added a contributing tutorialTim Graham2012-11-171-1/+2
| | | | Thank-you Taavi Taijala for the draft patch!
* Fixed #16671 - Added a tutorial on reuseable appsTim Graham2012-10-301-0/+3
| | | | | Thank-you Katie Miller and Ben Sturmfels for the initial draft, as well as Russ and Carl for the reviews.