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
617686e2
Kaydet (Commit)
617686e2
authored
Eki 31, 2017
tarafından
Ville Skyttä
Kaydeden (comit)
Tim Graham
Eki 31, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed 'a'/'an' mix-ups in docs.
üst
fcfcf8aa
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
custom-lookups.txt
docs/howto/custom-lookups.txt
+2
-2
utils.txt
docs/ref/utils.txt
+1
-1
multi-db.txt
docs/topics/db/multi-db.txt
+1
-1
urls.txt
docs/topics/http/urls.txt
+1
-1
advanced.txt
docs/topics/testing/advanced.txt
+1
-1
No files found.
docs/howto/custom-lookups.txt
Dosyayı görüntüle @
617686e2
...
...
@@ -109,7 +109,7 @@ or where it did not exceed a certain amount
functionality which is possible in a database backend independent manner,
and without duplicating functionality already in Django.
We will start by writing a ``AbsoluteValue`` transformer. This will use the SQL
We will start by writing a
n
``AbsoluteValue`` transformer. This will use the SQL
function ``ABS()`` to transform the value before comparison::
from django.db.models import Transform
...
...
@@ -257,7 +257,7 @@ operator. (Note that in reality almost all databases support both, including
all the official databases supported by Django).
We can change the behavior on a specific backend by creating a subclass of
``NotEqual`` with a ``as_mysql`` method::
``NotEqual`` with a
n
``as_mysql`` method::
class MySQLNotEqual(NotEqual):
def as_mysql(self, compiler, connection):
...
...
docs/ref/utils.txt
Dosyayı görüntüle @
617686e2
...
...
@@ -966,7 +966,7 @@ appropriate entities.
.. function:: make_naive(value, timezone=None)
Returns a
n
naive :class:`~datetime.datetime` that represents in
Returns a naive :class:`~datetime.datetime` that represents in
``timezone`` the same point in time as ``value``, ``value`` being an
aware :class:`~datetime.datetime`. If ``timezone`` is set to ``None``, it
defaults to the :ref:`current time zone <default-current-time-zone>`.
...
...
docs/topics/db/multi-db.txt
Dosyayı görüntüle @
617686e2
...
...
@@ -650,7 +650,7 @@ registered with any ``Admin`` instance::
This example sets up two admin sites. On the first site, the
``Author`` and ``Publisher`` objects are exposed; ``Publisher``
objects have a
n
tabular inline showing books published by that
objects have a tabular inline showing books published by that
publisher. The second site exposes just publishers, without the
inlines.
...
...
docs/topics/http/urls.txt
Dosyayı görüntüle @
617686e2
...
...
@@ -227,7 +227,7 @@ This usage isn't particularly recommended as it makes it easier to accidentally
introduce errors between the intended meaning of a match and the arguments
of the view.
In either case, using only one style within a
n
given regex is recommended. When
In either case, using only one style within a given regex is recommended. When
both styles are mixed, any unnamed groups are ignored and only named groups are
passed to the view function.
...
...
docs/topics/testing/advanced.txt
Dosyayı görüntüle @
617686e2
...
...
@@ -298,7 +298,7 @@ Advanced features of ``TransactionTestCase``
recommended that you do not hard code primary key values in tests.
Using ``reset_sequences = True`` will slow down the test, since the primary
key reset is a
n
relatively expensive database operation.
key reset is a relatively expensive database operation.
.. _testing-reusable-applications:
...
...
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