summaryrefslogtreecommitdiff
path: root/django/core/management/templates.py
AgeCommit message (Expand)Author
2025-04-27Fixed #18296 -- Created missing custom target directory for startproject and ...Bruno Alla
2024-11-29Fixed #35308 -- Handled OSError when launching code formatters.Jacob Walls
2023-09-01Fixed #34778 -- Avoided importing modules in startapp/startproject.Jacob Walls
2023-02-01Refs #33476 -- Applied Black's 2023 stable style.David Smith
2023-01-18Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak
2022-10-20Fixed #34085 -- Made management commands don't use black for non-Python files.Carlton Gibson
2022-09-07Fixed #33986 -- Hardened binary lookup in template commands.Shai Berger
2022-05-11Refs #33173 -- Removed use of deprecated cgi module.Carlton Gibson
2022-02-11Refs #33476 -- Made management commands use black.Carlton Gibson
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-11-25Fixed #32397 -- Made startapp/startproject management commands set User-Agent.Ad Timmering
2021-11-24Fixed #4282 -- Made startapp/startproject management commands honor umask.Ad Timmering
2021-09-01Fixed #32309 -- Added --exclude option to startapp/startproject management co...sage
2021-05-14Fixed #32734 -- Fixed validation of startapp's directory with trailing slash.Rohith PR
2020-06-24Fixed typo in django/core/management/templates.py docstring.excursus
2020-05-21Fixed #31546 -- Allowed specifying list of tags in Command.requires_system_ch...Hasan Ramezani
2020-04-27Refs #18325 -- Removed unnecessary line endings in management commands.François Freitag
2019-08-19Fixed #30693 -- Removed separate import of os.path in django.core.management....Maaz Bin Tahir Saeed
2019-04-25Fixed #30393 -- Added validation of startapp's directory option.oliver
2019-03-30Made startapp/project's overlaying error message use 'app' or 'project'.oliver
2019-01-31Fixed #30147 -- Simplified directory creation with os.makedirs(..., exist_ok=...Jon Dufresne
2019-01-28Fixed #30137 -- Replaced OSError aliases with the canonical OSError.Jon Dufresne
2019-01-27Removed default mode='r' argument from calls to open().Jon Dufresne
2018-05-13Fixed #17379 -- Removed management commands deactivation of the locale.Claude Paroz
2018-04-02Removed unused regexes in django.core.management.templates.desigrammer
2018-01-01Fixed typo in TemplateCommand argument help text.Philipp Bosch
2017-12-23Fixed #28594 -- Removed Jython docs and specific codeClaude Paroz
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-05-30DRY'd startapp and startproject management commands.Adam Johnson
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham
2017-01-18Refs #23919 -- Replaced io.open() with open().Aymeric Augustin
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-10-20Optimized file copy in TemplateCommandClaude Paroz
2016-10-02Fixed #27305 -- Removed BaseCommand.can_import_settings unused attributeClaude Paroz
2016-09-30Removed unneeded no_settings_commands hardcoded listClaude Paroz
2016-09-03Fixed #27171 -- Added unicode_literals and coding preamble to all files in st...Ivan
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-01-25Fixed #25968 -- Changed project/app templates to use a "py-tpl" suffix.Chris Lamb
2015-10-22Fixed #25589 -- Allowed startapp/project to create apps with Unicode characte...Yoong Kang Lim
2015-06-16Fixed #24971 -- Made startapp generate an apps.pyMounir Messelmeni
2015-06-11Fixed #24950 -- Added unicode_literals to models.py in app templateMarkus Holtermann
2015-02-22Fixed a few uses of Template that relied on a default engine.Aymeric Augustin
2015-02-22Removed rmtree_errorhandler.Aymeric Augustin
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-12-25Fixed #23866 -- Harmonized refs to Django documentation from codeClaude Paroz
2014-11-25Fixed #23899 -- Added 'Generated by Django X.Y' to startproject template.Martin Blech
2014-11-17Simplified handle_extensions management utilityClaude Paroz