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
98de90d3
Kaydet (Commit)
98de90d3
authored
Kas 09, 2013
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed spelling of compatibility.
üst
d15985d8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
base.py
django/template/base.py
+1
-1
coding-style.txt
docs/internals/contributing/writing-code/coding-style.txt
+1
-1
deprecation.txt
docs/internals/deprecation.txt
+1
-1
signals.txt
docs/ref/signals.txt
+2
-2
1.5.5.txt
docs/releases/1.5.5.txt
+1
-1
No files found.
django/template/base.py
Dosyayı görüntüle @
98de90d3
...
@@ -6,7 +6,7 @@ from importlib import import_module
...
@@ -6,7 +6,7 @@ from importlib import import_module
from
inspect
import
getargspec
,
getcallargs
from
inspect
import
getargspec
,
getcallargs
from
django.conf
import
settings
from
django.conf
import
settings
from
django.template.context
import
(
BaseContext
,
Context
,
RequestContext
,
# NOQA: imported for backwards compat
a
bility
from
django.template.context
import
(
BaseContext
,
Context
,
RequestContext
,
# NOQA: imported for backwards compat
i
bility
ContextPopException
)
ContextPopException
)
from
django.utils.itercompat
import
is_iterable
from
django.utils.itercompat
import
is_iterable
from
django.utils.text
import
(
smart_split
,
unescape_string_literal
,
from
django.utils.text
import
(
smart_split
,
unescape_string_literal
,
...
...
docs/internals/contributing/writing-code/coding-style.txt
Dosyayı görüntüle @
98de90d3
...
@@ -198,7 +198,7 @@ Miscellaneous
...
@@ -198,7 +198,7 @@ Miscellaneous
* Remove ``import`` statements that are no longer used when you change code.
* Remove ``import`` statements that are no longer used when you change code.
`flake8`_ will identify these imports for you. If an unused import needs to
`flake8`_ will identify these imports for you. If an unused import needs to
remain for backwards-compat
a
bility, mark the end of of with ``# NOQA`` to
remain for backwards-compat
i
bility, mark the end of of with ``# NOQA`` to
silence the flake8 warning.
silence the flake8 warning.
* Systematically remove all trailing whitespaces from your code as those
* Systematically remove all trailing whitespaces from your code as those
...
...
docs/internals/deprecation.txt
Dosyayı görüntüle @
98de90d3
...
@@ -451,7 +451,7 @@ these changes.
...
@@ -451,7 +451,7 @@ these changes.
* Instances of ``util.py`` in the Django codebase have been renamed to
* Instances of ``util.py`` in the Django codebase have been renamed to
``utils.py`` in an effort to unify all util and utils references.
``utils.py`` in an effort to unify all util and utils references.
The modules that provided backwards compat
a
bility will be removed:
The modules that provided backwards compat
i
bility will be removed:
* ``django.contrib.admin.util``
* ``django.contrib.admin.util``
* ``django.contrib.gis.db.backends.util``
* ``django.contrib.gis.db.backends.util``
...
...
docs/ref/signals.txt
Dosyayı görüntüle @
98de90d3
...
@@ -410,7 +410,7 @@ pre_syncdb
...
@@ -410,7 +410,7 @@ pre_syncdb
This signal has been renamed to :data:`~django.db.models.signals.pre_migrate`.
This signal has been renamed to :data:`~django.db.models.signals.pre_migrate`.
Alias of :data:`django.db.models.signals.pre_migrate`. As long as this alias
Alias of :data:`django.db.models.signals.pre_migrate`. As long as this alias
is present, for backwards-compat
a
bility this signal has an extra argument it sends:
is present, for backwards-compat
i
bility this signal has an extra argument it sends:
``create_models``
``create_models``
A list of the model classes from any app which :djadmin:`migrate` is
A list of the model classes from any app which :djadmin:`migrate` is
...
@@ -484,7 +484,7 @@ post_syncdb
...
@@ -484,7 +484,7 @@ post_syncdb
This signal has been renamed to :data:`~django.db.models.signals.post_migrate`.
This signal has been renamed to :data:`~django.db.models.signals.post_migrate`.
Alias of :data:`django.db.models.signals.post_migrate`. As long as this alias
Alias of :data:`django.db.models.signals.post_migrate`. As long as this alias
is present, for backwards-compat
a
bility this signal has an extra argument it sends:
is present, for backwards-compat
i
bility this signal has an extra argument it sends:
``created_models``
``created_models``
A list of the model classes from any app which :djadmin:`migrate` has
A list of the model classes from any app which :djadmin:`migrate` has
...
...
docs/releases/1.5.5.txt
Dosyayı görüntüle @
98de90d3
...
@@ -25,7 +25,7 @@ Bugfixes
...
@@ -25,7 +25,7 @@ Bugfixes
========
========
* Fixed a data corruption bug with ``datetime_safe.datetime.combine`` (#21256).
* Fixed a data corruption bug with ``datetime_safe.datetime.combine`` (#21256).
* Fixed a Python 3 incompat
a
bility in ``django.utils.text.unescape_entities()``
* Fixed a Python 3 incompat
i
bility in ``django.utils.text.unescape_entities()``
(#21185).
(#21185).
* Fixed a couple data corruption issues with ``QuerySet`` edge cases under
* Fixed a couple data corruption issues with ``QuerySet`` edge cases under
Oracle and MySQL (#21203, #21126).
Oracle and MySQL (#21203, #21126).
...
...
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