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
757aefc1
Kaydet (Commit)
757aefc1
authored
Mar 17, 2017
tarafından
Alasdair Nicol
Kaydeden (comit)
Tim Graham
Mar 17, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed self from method signatures in docs.
üst
875aebdb
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
auth.txt
docs/ref/contrib/auth.txt
+1
-1
widgets.txt
docs/ref/forms/widgets.txt
+1
-1
expressions.txt
docs/ref/models/expressions.txt
+1
-1
lookups.txt
docs/ref/models/lookups.txt
+2
-2
api.txt
docs/ref/templates/api.txt
+1
-1
No files found.
docs/ref/contrib/auth.txt
Dosyayı görüntüle @
757aefc1
...
...
@@ -545,7 +545,7 @@ The following backends are available in :mod:`django.contrib.auth.backends`:
permission string ``perm``. Returns ``False`` if the user is not
:attr:`~django.contrib.auth.models.CustomUser.is_active`.
.. method:: has_module_perms(
self,
user_obj, app_label)
.. method:: has_module_perms(user_obj, app_label)
Returns whether the ``user_obj`` has any permissions on the app
``app_label``.
...
...
docs/ref/forms/widgets.txt
Dosyayı görüntüle @
757aefc1
...
...
@@ -258,7 +258,7 @@ foundation for custom widgets.
``Widget`` subclasses can provide custom context values by overriding
this method.
.. method:: id_for_label(
self,
id_)
.. method:: id_for_label(id_)
Returns the HTML ID attribute of this widget for use by a ``<label>``,
given the ID of the field. Returns ``None`` if an ID isn't available.
...
...
docs/ref/models/expressions.txt
Dosyayı görüntüle @
757aefc1
...
...
@@ -713,7 +713,7 @@ calling the appropriate methods on the wrapped expression.
clone.expression = self.expression.relabeled_clone(change_map)
return clone
.. method:: convert_value(
self,
value, expression, connection, context)
.. method:: convert_value(value, expression, connection, context)
A hook allowing the expression to coerce ``value`` into a more
appropriate type.
...
...
docs/ref/models/lookups.txt
Dosyayı görüntüle @
757aefc1
...
...
@@ -79,7 +79,7 @@ field references, aggregates, and ``Transform`` are examples that follow this
API. A class is said to follow the query expression API when it implements the
following methods:
.. method:: as_sql(
self,
compiler, connection)
.. method:: as_sql(compiler, connection)
Responsible for producing the query string and parameters for the expression.
The ``compiler`` is an ``SQLCompiler`` object, which has a ``compile()``
...
...
@@ -95,7 +95,7 @@ following methods:
override the generation of the SQL string. See :meth:`Func.as_sql` for
example usage.
.. method:: as_vendorname(
self,
compiler, connection)
.. method:: as_vendorname(compiler, connection)
Works like ``as_sql()`` method. When an expression is compiled by
``compiler.compile()``, Django will first try to call ``as_vendorname()``,
...
...
docs/ref/templates/api.txt
Dosyayı görüntüle @
757aefc1
...
...
@@ -163,7 +163,7 @@ what's passed by :class:`~django.template.backends.django.DjangoTemplates`.
Loads a template with the given name, compiles it and returns a
:class:`Template` object.
.. method:: Engine.select_template(
self,
template_name_list)
.. method:: Engine.select_template(template_name_list)
Like :meth:`~Engine.get_template`, except it takes a list of names
and returns the first template that was found.
...
...
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