Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
4811f09f
Kaydet (Commit)
4811f09f
authored
Eyl 05, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed template.loader.BaseLoader per deprecation timeline.
üst
2a20ebe6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
36 deletions
+1
-36
engine.py
django/template/engine.py
+1
-13
loader.py
django/template/loader.py
+0
-16
base.py
django/template/loaders/base.py
+0
-2
api.txt
docs/ref/templates/api.txt
+0
-5
No files found.
django/template/engine.py
Dosyayı görüntüle @
4811f09f
import
warnings
from
django.core.exceptions
import
ImproperlyConfigured
from
django.utils
import
lru_cache
,
six
from
django.utils.deprecation
import
RemovedInDjango110Warning
from
django.utils.functional
import
cached_property
from
django.utils.module_loading
import
import_string
...
...
@@ -122,16 +119,7 @@ class Engine(object):
if
isinstance
(
loader
,
six
.
string_types
):
loader_class
=
import_string
(
loader
)
if
getattr
(
loader_class
,
'_accepts_engine_in_init'
,
False
):
args
.
insert
(
0
,
self
)
else
:
warnings
.
warn
(
"
%
s inherits from django.template.loader.BaseLoader "
"instead of django.template.loaders.base.Loader. "
%
loader
,
RemovedInDjango110Warning
,
stacklevel
=
2
)
return
loader_class
(
*
args
)
return
loader_class
(
self
,
*
args
)
else
:
raise
ImproperlyConfigured
(
"Invalid value in template loaders configuration:
%
r"
%
loader
)
...
...
django/template/loader.py
Dosyayı görüntüle @
4811f09f
import
warnings
from
django.utils.deprecation
import
RemovedInDjango110Warning
from
.
import
engines
from
.exceptions
import
TemplateDoesNotExist
from
.loaders
import
base
def
get_template
(
template_name
,
using
=
None
):
...
...
@@ -62,14 +57,3 @@ def render_to_string(template_name, context=None, request=None, using=None):
def
_engine_list
(
using
=
None
):
return
engines
.
all
()
if
using
is
None
else
[
engines
[
using
]]
class
BaseLoader
(
base
.
Loader
):
_accepts_engine_in_init
=
False
def
__init__
(
self
,
*
args
,
**
kwargs
):
warnings
.
warn
(
"django.template.loader.BaseLoader was superseded by "
"django.template.loaders.base.Loader."
,
RemovedInDjango110Warning
,
stacklevel
=
2
)
super
(
BaseLoader
,
self
)
.
__init__
(
*
args
,
**
kwargs
)
django/template/loaders/base.py
Dosyayı görüntüle @
4811f09f
...
...
@@ -6,8 +6,6 @@ from django.utils.inspect import func_supports_parameter
class
Loader
(
object
):
# Only used to raise a deprecation warning. Remove in Django 1.10.
_accepts_engine_in_init
=
True
def
__init__
(
self
,
engine
):
self
.
engine
=
engine
...
...
docs/ref/templates/api.txt
Dosyayı görüntüle @
4811f09f
...
...
@@ -968,11 +968,6 @@ loaders. Custom ``Loader`` classes should inherit from
``django.template.loaders.base.Loader`` and define the ``get_contents()`` and
``get_template_sources()`` methods.
.. versionchanged:: 1.8
``django.template.loaders.base.Loader`` used to be defined at
``django.template.loader.BaseLoader``.
.. versionchanged:: 1.9
In previous versions of Django, custom loaders defined a single method:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment