Joshua Massover
|
92309e53d9
|
Fixed #31594 -- Added ASGIStaticFilesHandler.get_response_async().
|
2020-06-08 12:52:26 +02:00 |
René Fleschenberg
|
578b3046e3
|
Reverted "Refs #23919 -- Removed obsolete __init__.py files in management command directories."
This reverts commit ccc25bfe4f .
https://groups.google.com/d/topic/django-developers/GVHMH2ciAnk/discussion
|
2020-06-01 10:55:41 +02:00 |
Hasan Ramezani
|
c60524c658
|
Fixed #31546 -- Allowed specifying list of tags in Command.requires_system_checks.
|
2020-05-21 12:34:54 +02:00 |
Hasan Ramezani
|
87faeee4e0
|
Fixed #31528 -- Made collectstatic management command run staticfiles checks.
|
2020-05-08 12:47:57 +02:00 |
Mariusz Felisiak
|
b23e3a1caa
|
Refs #27661 -- Added Tags.staticfiles.
Follow up to 0ec4dc91e0 .
|
2020-05-08 11:38:18 +02:00 |
François Freitag
|
e0998a460a
|
Optimized collectstatic when verbosity is 0.
Avoid the dict lookup and length computation when command is not run in
verbose mode.
|
2020-05-02 20:36:14 +02:00 |
Richard Campen
|
67b334fbaf
|
Fixed #31517 -- Fixed HashedFilesMixin.hashed_name() if hash of the file is None.
|
2020-04-28 08:25:07 +02:00 |
François Freitag
|
71d9876e39
|
Refs #18325 -- Removed unnecessary line endings in management commands.
The OutputWrapper automatically adds \n when it’s not present.
|
2020-04-27 10:10:36 +02:00 |
François Freitag
|
e03eb8db93
|
Fixed #31428 -- Allowed empty message in management command self.stdout/err proxies.
|
2020-04-07 08:45:11 +02:00 |
Jon Dufresne
|
13993e0f38
|
Removed unused default value None to matches_patterns().
An iterable is always passed.
|
2020-03-19 11:06:33 +01:00 |
Jon Dufresne
|
6b61b8b904
|
Used modern idiom in collectstatic command.
Replaced set(<generator expression>) with set comprehension.
|
2020-03-19 11:04:33 +01:00 |
Jon Dufresne
|
77aa74cb70
|
Refs #29983 -- Added support for using pathlib.Path in all settings.
|
2019-11-07 10:26:22 +01:00 |
pablo
|
fa8fe09e4e
|
Fixed #30802 -- Prevented manifest creation when running collectstatic in dry run mode.
|
2019-09-27 23:01:41 +02:00 |
Mariusz Felisiak
|
f1894bae30
|
Refs #28606 -- Removed CachedStaticFilesStorage per deprecation timeline.
|
2019-09-10 12:01:00 +02:00 |
Mariusz Felisiak
|
3d716467a9
|
Refs #29817 -- Removed settings.FILE_CHARSET per deprecation timeline.
|
2019-09-10 12:01:00 +02:00 |
zeyneloz
|
955b382600
|
Fixed #30599 -- Prevented ManifestFilesMixin.read_manifest() from silencing errors other than FileNotFoundError.
|
2019-08-02 08:35:28 +02:00 |
Andrew Godwin
|
a415ce70be
|
Fixed #30451 -- Added ASGI handler and coroutine-safety.
This adds an ASGI handler, asgi.py file for the default project layout,
a few async utilities and adds async-safety to many parts of Django.
|
2019-06-20 12:29:43 +02:00 |
Nathan Gaberel
|
b27c9c953b
|
Fixed #28604 -- Prevented ManifestStaticFilesStorage from leaving intermediate files.
|
2019-06-03 13:11:55 +02:00 |
Tobias Bengfort
|
7619a33665
|
Refs #28593 -- Changed url() to path() in comments following URL routing changes.
|
2019-05-13 18:30:51 +02:00 |
Carlton Gibson
|
34f589ba88
|
Moved unnecessarily nested import.
|
2019-05-08 09:26:13 +02:00 |
Carlton Gibson
|
6a92bcf55b
|
Removed redundant check from StaticFilesHandler.
|
2019-05-08 09:26:13 +02:00 |
Nick Pope
|
24b82cd201
|
Fixed #30159 -- Removed unneeded use of OrderedDict.
Dicts preserve order since Python 3.6.
|
2019-02-06 13:48:39 -05:00 |
Jon Dufresne
|
290d8471bb
|
Fixed #30147 -- Simplified directory creation with os.makedirs(..., exist_ok=True).
|
2019-01-31 12:53:36 -05:00 |
Jon Dufresne
|
7785e03ba8
|
Fixed #30137 -- Replaced OSError aliases with the canonical OSError.
Used more specific errors (e.g. FileExistsError) as appropriate.
|
2019-01-28 11:15:06 -05:00 |
Tim Graham
|
92d4d0859a
|
Refs #21221 -- Removed staticfiles and admin_static template tag libraries.
Per deprecation timeline.
|
2019-01-17 10:52:19 -05:00 |
Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)
|
a375e911ef
|
Removed unused variables.
|
2018-11-09 15:44:12 -05:00 |
Tim Graham
|
f892781b95
|
Fixed #28606 -- Deprecated CachedStaticFilesStorage.
|
2018-10-27 11:58:29 -04:00 |
Jon Dufresne
|
4ab071f43c
|
Refs #27795 -- Removed force_bytes() usage in contrib/staticfiles/storage.py.
|
2018-10-05 09:26:28 -04:00 |
Paweł Kołodziej
|
05c578bc1f
|
Fixed #29796 -- Added system check for STATICFILES_DIRS prefix ending with a slash.
|
2018-09-27 19:49:37 -04:00 |
Alejandro Dubrovsky
|
108c04f572
|
Fixed #29570 -- Added check that MEDIA_URL isn't in STATIC_URL.
|
2018-08-23 10:10:39 -04:00 |
Daniel Wiesmann
|
8f75d21a2e
|
Fixed #28566 -- Added path matching to collectstatic ignore patterns.
|
2018-07-13 16:48:19 -04:00 |
Claude Paroz
|
eac9ab7ebb
|
Removed parser.add_arguments() arguments that match the defaults.
|
2018-07-02 17:54:57 -04:00 |
Arthur Silva
|
bc1435551c
|
Fixed #29464 -- Silenced post-process messages in collectstatic's default verbosity.
|
2018-06-11 20:21:58 -04:00 |
Claude Paroz
|
1fac974067
|
Refs #29353 -- Removed duplicated logic in StaticFilesHandler.get_response().
Thanks Sergey Fursov for spotting the issue.
|
2018-06-05 11:58:38 +02:00 |
Claude Paroz
|
a9189d27ef
|
Fixed #29353 -- Made StaticFilesHandler return a 404 response when settings.DEBUG is False
|
2018-04-25 10:38:13 +02:00 |
Claude Paroz
|
3aae43d800
|
Fixed #28973 -- Silenced copying/linking messages in collectstatic's default verbosity.
|
2018-04-23 23:04:02 -04:00 |
Jon Dufresne
|
7d607127e3
|
Refs #21221 -- Deprecated staticfiles and admin_static template tag libraries.
|
2018-01-23 10:30:10 -05:00 |
Дилян Палаузов
|
a38ae914d8
|
Fixed #28996 -- Simplified some boolean constructs and removed trivial continue statements.
|
2018-01-12 12:44:50 -05:00 |
Дилян Палаузов
|
d7b2aa24f7
|
Fixed #28982 -- Simplified code with and/or.
|
2018-01-03 20:12:23 -05:00 |
я котик пур-пур
|
ccc25bfe4f
|
Refs #23919 -- Removed obsolete __init__.py files in management command directories.
|
2018-01-03 11:02:26 -05:00 |
Дилян Палаузов
|
4c599ece57
|
Fixed #28930 -- Simplified code with any() and all().
|
2017-12-26 17:11:15 -05:00 |
Дилян Палаузов
|
6c0042430e
|
Fixed #28776 -- Fixed a/an/and typos in docs and comments.
|
2017-11-06 22:41:03 -05:00 |
Ed Morley
|
2d4ccac275
|
Fixed #28603 -- Clarified comment in collectstatic's collect().
|
2017-09-27 08:45:10 -04:00 |
Tim Graham
|
98706bb35e
|
Refs #27857 -- Replaced json.loads() ValueError exception catching with JSONDecodeError.
|
2017-09-25 17:11:06 -04:00 |
Tim Graham
|
6e4c6281db
|
Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."
This reverts commit 550cb3a365
because try/except performs better.
|
2017-09-07 08:16:21 -04:00 |
Claude Paroz
|
09b3e46635
|
Fixed #27796 -- Prevented middleware being loaded twice with runserver
Thanks Tim Graham for the review.
|
2017-08-23 23:05:18 +02:00 |
Mads Jensen
|
550cb3a365
|
Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().
|
2017-06-28 14:07:55 -04:00 |
Tim Graham
|
cde31daf88
|
Sorted imports per isort 4.2.9.
|
2017-06-01 13:23:48 -04:00 |
Jon Dufresne
|
21046e7773
|
Fixed #28249 -- Removed unnecessary dict.keys() calls.
iter(dict) is equivalent to iter(dict.keys()).
|
2017-05-27 19:08:46 -04:00 |
Jon Dufresne
|
7bbb5161ea
|
Removed implicit default store_true/false argparse args.
argparse automatically sets the default value for store_true/false
arguments to its opposite.
|
2017-04-01 20:03:56 -04:00 |