Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* Refs #25381 -- Clarified that AppConfig model methods ↵Tim Graham2015-09-111-3/+4
| | | | search only the current app.
* Fixed #25203 -- Documented how to pass Apache ↵Paul Rentschler2015-09-111-0/+41
| | | | environment variables to Django.
* Fixed #25382 -- Removed obsolete references to DateQuerySet.Renato Oliveira2015-09-112-19/+13
|
* Renamed admin doc image files to match the documentation ↵Ryan Allen2015-09-117-5/+5
| | | | they are for.
* Fixed #25200 -- Updated admin screenshots in docs.Ryan Allen2015-09-116-0/+0
|
* Fixed #25374 -- Made ModelAdmin checks work on instances ↵Malcolm Box2015-09-111-0/+3
| | | | | | | instead of classes. This allows dynamically-generated attributes to be specified in checked ModelAdmin attributes without triggering errors.
* Fixed #25351 -- Added example for database test settings ↵Jose Carlos Menezes2015-09-111-2/+16
| | | | to docs.
* Fixed #25380 -- Added Postgres.app to the PostGIS ↵Flavio Curella2015-09-111-5/+21
| | | | options on OS X.
* Fixed #25379 -- Removed obsolete information from ↵Flavio Curella2015-09-112-30/+7
| | | | | | | GeoDjango tutorial. Django 1.9 drops support for PostgreSQL 9.0 where creating a database using a template was needed.
* Documented that the parallel test runner doesn't work on ↵Aymeric Augustin2015-09-102-4/+6
| | | | Windows.
* Avoided running more test processes than necessary.Aymeric Augustin2015-09-101-0/+4
| | | | | | This reduces the time spent cloning databases. Thanks Tim for the suggestion.
* Enabled parallel testing by default in runtests.py.Aymeric Augustin2015-09-102-1/+19
|
* Test parallelization isn't implemented on Oracle.Aymeric Augustin2015-09-091-0/+2
|
* Acknoweldeged a limitation of the parallel test runner.Aymeric Augustin2015-09-091-0/+11
| | | | | | Notably it will fail to report a Model.DoesNotExist exceptions because the class itself isn't pickleable. (Django has specific code to make its instances pickleable.)
* Allowed a port range for the liveserver by default.Aymeric Augustin2015-09-093-6/+20
| | | | This is required for running tests in parallel.
* Cloned databases for running tests in parallel.Aymeric Augustin2015-09-092-0/+12
|
* Implemented a parallel test runner.Aymeric Augustin2015-09-092-0/+26
|
* Fixed #25372 -- Fixed autocompletion for options of ↵Daniel Hahler2015-09-091-0/+3
| | | | non-argparse commands.
* Fixed #25371 -- Added reverse_sql and reverse_code ↵Bibhas2015-09-091-3/+21
| | | | examples to docs.
* Fixed #25135 -- Deprecated the contrib.admin allow_tags ↵Ola Sitarska2015-09-093-11/+21
| | | | | | attribute. Thanks Jaap Roes for the idea and initial patch.
* Fixed #25350 -- Added alias --no-input for --noinput to ↵Raphael Michel2015-09-083-2/+15
| | | | management commands.
* Fixed #24857 -- Added "python -m django" entry point.Ryan Hiebert2015-09-082-1/+10
|
* Fixed #25356 -- Removed default_app_config from startapp ↵Tim Graham2015-09-074-7/+8
| | | | | | template. Also discouraged its use outside the intended use case.
* Fixed #24917 -- Made admindocs display model methods ↵Zan Anderle2015-09-072-4/+15
| | | | that take arguments.
* Fixed #25200 -- Updated tutorial screenshots for new ↵elky2015-09-0714-0/+0
| | | | admin theme.
* Fixed #25358 -- Improved variable name for question in ↵Alasdair Nicol2015-09-072-6/+6
| | | | tutorial.
* Stopped returning mirrors from setup_databases.Aymeric Augustin2015-09-061-0/+7
| | | | | The return value of setup_databases is only used as an argument for teardown_databases which doesn't need mirrors.
* Updated references to the TEST_* database settings.Aymeric Augustin2015-09-052-20/+32
| | | | | | | | They were removed in Django 1.9. I could leave the reference to TEST_DEPENDENCIES in the 1.2.4 release notes because the link points to the right location and the name was accurate at the time.
* Removed some discussion of deprecated {% url %} behavior.Tim Graham2015-09-051-15/+10
|
* Fixed #25355 -- Made two tweaks to ↵Maarten2015-09-051-2/+2
| | | | docs/topics/db/aggregation.txt.
* Fixed #25334 -- Provided a way to allow cross-origin ↵Joshua Kehn2015-09-054-1/+25
| | | | | | | | unsafe requests over HTTPS. Added the CSRF_TRUSTED_ORIGINS setting which contains a list of other domains that are included during the CSRF Referer header verification for secure (HTTPS) requests.
* Added default value for default kwargs for QueryDict.David Sanders2015-09-051-4/+4
|
* Fixed #24525 -- Fixed AssertionError in some complex ↵Tim Graham2015-09-051-0/+2
| | | | | | queries. Thanks Anssi Kääriäinen for providing the solution.
* Added links to new security settings introduced in 1.8.David Sanders2015-09-041-7/+8
|
* Refs #25144 -- Revised deprecation timeline: migrations ↵Tim Graham2015-09-041-3/+6
| | | | won't become compulsory.
* Fixed #25144 -- Allowed migrate to create tables for ↵Tim Graham2015-09-042-3/+14
| | | | apps without migrations.
* Refs #25345 -- Updated links to code.google.com.Maxime Lorant2015-09-043-7/+5
|
* Updated static files howto title to include JavaScript.David Gibbons2015-09-041-3/+3
|
* Documented a limitation of Options.required_db_features.Tim Graham2015-09-031-1/+2
|
* Fixed #25326 -- Added namedtuple example for executing ↵Dražen Odobašić2015-09-031-8/+30
| | | | custom SQL.
* Moved misplaced versionadded annotation.Tim Graham2015-09-031-2/+2
|
* Refs #24152 -- Fixed typos in deprecated GeoQuerySet ↵Tim Graham2015-09-032-5/+5
| | | | aggregate names.
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-2/+0
|
* Fixed #25289 -- Updated admin's jQuery to 2.1.4.Tim Graham2015-08-312-4/+30
|
* Cleaned up example migration files in docsTyson Clugg2015-08-312-3/+9
|
* Fixed #25259 -- Added comments to header of generated ↵Tyson Clugg2015-08-312-0/+3
| | | | migration files
* Clarified 404.html usage, excplicitly stated that it's ↵David Sanders2015-08-311-8/+9
| | | | | | used when DEBUG is False Thanks to Keryn Knight, Curtis Maloney and Tim Graham for their reviews.
* Fixed #24704 -- Made the autoreloader survive SyntaxErrors.Aymeric Augustin2015-08-291-0/+2
| | | | | | | | | | | | | | | | | With this change, it's expected to survive anything except errors that make it impossible to import the settings. It's too complex to fallback to a sensible behavior with a broken settings module. Harcoding things about runserver in ManagementUtility.execute is atrocious but it's the only way out of the chicken'n'egg problem: the current implementation of the autoreloader primarily watches imported Python modules -- and then a few other things that were bolted on top of this design -- but we want it to kick in even if the project contains import-time errors and django.setup() fails. At some point we should throw away this code and replace it by an off-the-shelf autoreloader that watches the working directory and re-runs `django-admin runserver` whenever something changes.
* Fixed #25262 -- Removed the enable_comments field from ↵Y3K2015-08-293-1/+39
| | | | FlatPageAdmin.
* Fixed #17375 -- Changed makemessages to use xgettext ↵Sergey Kolosov2015-08-281-0/+3
| | | | | | | | | with --files-from Changed the way makemessages invokes xgettext from one call per translatable file to one call per locale directory (using --files-from). This allows to avoid https://savannah.gnu.org/bugs/index.php?35027 and, as a positive side effect, speeds up localization build.