Loading django/template/defaulttags.py +2 −2 Original line number Diff line number Diff line Loading @@ -989,7 +989,7 @@ def ssi(parser, token): import warnings warnings.warn('The syntax for the ssi template tag is changing. Load the `ssi` tag from the `future` tag library to start using the new behavior.', category=PendingDeprecationWarning) category=DeprecationWarning) bits = token.contents.split() parsed = False Loading Loading @@ -1240,7 +1240,7 @@ def url(parser, token): import warnings warnings.warn('The syntax for the url template tag is changing. Load the `url` tag from the `future` tag library to start using the new behavior.', category=PendingDeprecationWarning) category=DeprecationWarning) bits = token.split_contents() if len(bits) < 2: Loading django/template/loader.py +0 −12 Original line number Diff line number Diff line Loading @@ -137,18 +137,6 @@ def find_template(name, dirs=None): pass raise TemplateDoesNotExist(name) def find_template_source(name, dirs=None): # For backward compatibility import warnings warnings.warn( "`django.template.loader.find_template_source` is deprecated; use `django.template.loader.find_template` instead.", DeprecationWarning ) template, origin = find_template(name, dirs) if hasattr(template, 'render'): raise Exception("Found a compiled template that is incompatible with the deprecated `django.template.loader.find_template_source` function.") return template, origin def get_template(template_name): """ Returns a compiled Template object for the given template name, Loading django/template/loaders/app_directories.py +0 −10 Original line number Diff line number Diff line Loading @@ -62,13 +62,3 @@ class Loader(BaseLoader): raise TemplateDoesNotExist(template_name) _loader = Loader() def load_template_source(template_name, template_dirs=None): # For backwards compatibility import warnings warnings.warn( "'django.template.loaders.app_directories.load_template_source' is deprecated; use 'django.template.loaders.app_directories.Loader' instead.", DeprecationWarning ) return _loader.load_template_source(template_name, template_dirs) load_template_source.is_usable = True django/template/loaders/eggs.py +0 −9 Original line number Diff line number Diff line Loading @@ -28,12 +28,3 @@ class Loader(BaseLoader): raise TemplateDoesNotExist(template_name) _loader = Loader() def load_template_source(template_name, template_dirs=None): import warnings warnings.warn( "'django.template.loaders.eggs.load_template_source' is deprecated; use 'django.template.loaders.eggs.Loader' instead.", DeprecationWarning ) return _loader.load_template_source(template_name, template_dirs) load_template_source.is_usable = resource_string is not None django/template/loaders/filesystem.py +0 −10 Original line number Diff line number Diff line Loading @@ -49,13 +49,3 @@ class Loader(BaseLoader): load_template_source.is_usable = True _loader = Loader() def load_template_source(template_name, template_dirs=None): # For backwards compatibility import warnings warnings.warn( "'django.template.loaders.filesystem.load_template_source' is deprecated; use 'django.template.loaders.filesystem.Loader' instead.", DeprecationWarning ) return _loader.load_template_source(template_name, template_dirs) load_template_source.is_usable = True Loading
django/template/defaulttags.py +2 −2 Original line number Diff line number Diff line Loading @@ -989,7 +989,7 @@ def ssi(parser, token): import warnings warnings.warn('The syntax for the ssi template tag is changing. Load the `ssi` tag from the `future` tag library to start using the new behavior.', category=PendingDeprecationWarning) category=DeprecationWarning) bits = token.contents.split() parsed = False Loading Loading @@ -1240,7 +1240,7 @@ def url(parser, token): import warnings warnings.warn('The syntax for the url template tag is changing. Load the `url` tag from the `future` tag library to start using the new behavior.', category=PendingDeprecationWarning) category=DeprecationWarning) bits = token.split_contents() if len(bits) < 2: Loading
django/template/loader.py +0 −12 Original line number Diff line number Diff line Loading @@ -137,18 +137,6 @@ def find_template(name, dirs=None): pass raise TemplateDoesNotExist(name) def find_template_source(name, dirs=None): # For backward compatibility import warnings warnings.warn( "`django.template.loader.find_template_source` is deprecated; use `django.template.loader.find_template` instead.", DeprecationWarning ) template, origin = find_template(name, dirs) if hasattr(template, 'render'): raise Exception("Found a compiled template that is incompatible with the deprecated `django.template.loader.find_template_source` function.") return template, origin def get_template(template_name): """ Returns a compiled Template object for the given template name, Loading
django/template/loaders/app_directories.py +0 −10 Original line number Diff line number Diff line Loading @@ -62,13 +62,3 @@ class Loader(BaseLoader): raise TemplateDoesNotExist(template_name) _loader = Loader() def load_template_source(template_name, template_dirs=None): # For backwards compatibility import warnings warnings.warn( "'django.template.loaders.app_directories.load_template_source' is deprecated; use 'django.template.loaders.app_directories.Loader' instead.", DeprecationWarning ) return _loader.load_template_source(template_name, template_dirs) load_template_source.is_usable = True
django/template/loaders/eggs.py +0 −9 Original line number Diff line number Diff line Loading @@ -28,12 +28,3 @@ class Loader(BaseLoader): raise TemplateDoesNotExist(template_name) _loader = Loader() def load_template_source(template_name, template_dirs=None): import warnings warnings.warn( "'django.template.loaders.eggs.load_template_source' is deprecated; use 'django.template.loaders.eggs.Loader' instead.", DeprecationWarning ) return _loader.load_template_source(template_name, template_dirs) load_template_source.is_usable = resource_string is not None
django/template/loaders/filesystem.py +0 −10 Original line number Diff line number Diff line Loading @@ -49,13 +49,3 @@ class Loader(BaseLoader): load_template_source.is_usable = True _loader = Loader() def load_template_source(template_name, template_dirs=None): # For backwards compatibility import warnings warnings.warn( "'django.template.loaders.filesystem.load_template_source' is deprecated; use 'django.template.loaders.filesystem.Loader' instead.", DeprecationWarning ) return _loader.load_template_source(template_name, template_dirs) load_template_source.is_usable = True