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
2fbea621
Kaydet (Commit)
2fbea621
authored
Haz 05, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Capitalized "Python" in docs.
üst
5c35b4a8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
submitting-patches.txt
...nternals/contributing/writing-code/submitting-patches.txt
+1
-1
migration-operations.txt
docs/ref/migration-operations.txt
+1
-1
database-functions.txt
docs/ref/models/database-functions.txt
+2
-2
1.5.txt
docs/releases/1.5.txt
+1
-1
multi-db.txt
docs/topics/db/multi-db.txt
+1
-1
translation.txt
docs/topics/i18n/translation.txt
+1
-1
No files found.
docs/internals/contributing/writing-code/submitting-patches.txt
Dosyayı görüntüle @
2fbea621
...
...
@@ -260,7 +260,7 @@ Compressing JavaScript
~~~~~~~~~~~~~~~~~~~~~~
To simplify the process of providing optimized JavaScript code, Django
includes a handy
p
ython script which should be used to create a "minified"
includes a handy
P
ython script which should be used to create a "minified"
version. To run it::
python django/contrib/admin/bin/compress.py
...
...
docs/ref/migration-operations.txt
Dosyayı görüntüle @
2fbea621
...
...
@@ -305,7 +305,7 @@ model::
This is generally the operation you would use to create
:ref:`data migrations <data-migrations>`, run
custom data updates and alterations, and anything else you need access to an
ORM and/or
p
ython code for.
ORM and/or
P
ython code for.
If you're upgrading from South, this is basically the South pattern as an
operation - one or two methods for forwards and backwards, with an ORM and
...
...
docs/ref/models/database-functions.txt
Dosyayı görüntüle @
2fbea621
...
...
@@ -57,7 +57,7 @@ Usage examples::
.. warning::
A
p
ython value passed to ``Coalesce`` on MySQL may be converted to an
A
P
ython value passed to ``Coalesce`` on MySQL may be converted to an
incorrect type unless explicitly cast to the correct database type:
>>> from django.db.models.expressions import RawSQL
...
...
@@ -121,7 +121,7 @@ Usage example::
>>> comments = Comment.objects.annotate(last_updated=Greatest('modified', 'blog__modified'))
>>> annotated_comment = comments.get()
``annotated_comment.last_updated`` will be the most recent of
``annotated_comment.last_updated`` will be the most recent of
``blog.modified`` and ``comment.modified``.
.. warning::
...
...
docs/releases/1.5.txt
Dosyayı görüntüle @
2fbea621
...
...
@@ -735,7 +735,7 @@ will be handed over to interested members of the community.
~~~~~~~~~~~~~~~~~~~~~~~~~
The markup contrib module has been deprecated and will follow an accelerated
deprecation schedule. Direct use of
p
ython markup libraries or 3rd party tag
deprecation schedule. Direct use of
P
ython markup libraries or 3rd party tag
libraries is preferred to Django maintaining this functionality in the
framework.
...
...
docs/topics/db/multi-db.txt
Dosyayı görüntüle @
2fbea621
...
...
@@ -359,7 +359,7 @@ from::
return True
Finally, in the settings file, we add the following (substituting
``path.to.`` with the actual
p
ython path to the module(s) where the
``path.to.`` with the actual
P
ython path to the module(s) where the
routers are defined)::
DATABASE_ROUTERS = ['path.to.AuthRouter', 'path.to.PrimaryReplicaRouter']
...
...
docs/topics/i18n/translation.txt
Dosyayı görüntüle @
2fbea621
...
...
@@ -1858,7 +1858,7 @@ way Django does translation:
* The string domain is ``django`` or ``djangojs``. This string domain is
used to differentiate between different programs that store their data
in a common message-file library (usually ``/usr/share/locale/``). The
``django`` domain is used for
p
ython and template translation strings
``django`` domain is used for
P
ython and template translation strings
and is loaded into the global translation catalogs. The ``djangojs``
domain is only used for JavaScript translation catalogs to make sure
that those are as small as possible.
...
...
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