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
e261337e
Kaydet (Commit)
e261337e
authored
Eki 06, 2016
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed docs typos in lines ending with a dash.
üst
5d35181d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
11 deletions
+11
-11
committing-code.txt
docs/internals/contributing/committing-code.txt
+3
-3
working-with-git.txt
.../internals/contributing/writing-code/working-with-git.txt
+2
-2
applications.txt
docs/ref/applications.txt
+2
-2
request-response.txt
docs/ref/request-response.txt
+2
-2
1.4.txt
docs/releases/1.4.txt
+2
-2
No files found.
docs/internals/contributing/committing-code.txt
Dosyayı görüntüle @
e261337e
...
@@ -109,9 +109,9 @@ Committing guidelines
...
@@ -109,9 +109,9 @@ Committing guidelines
In addition, please follow the following guidelines when committing code to
In addition, please follow the following guidelines when committing code to
Django's Git repository:
Django's Git repository:
* Never change the published history of django/django branches! **Never
force-
* Never change the published history of django/django branches! **Never
push your changes to django/django.** If you absolutely must (for security
force-push your changes to django/django.** If you absolutely must (for
reasons for example) first discuss the situation with the core team.
security
reasons for example) first discuss the situation with the core team.
* For any medium-to-big changes, where "medium-to-big" is according to
* For any medium-to-big changes, where "medium-to-big" is according to
your judgment, please bring things up on the |django-developers|
your judgment, please bring things up on the |django-developers|
...
...
docs/internals/contributing/writing-code/working-with-git.txt
Dosyayı görüntüle @
e261337e
...
@@ -179,8 +179,8 @@ commit, for example to fix a typo in a docstring::
...
@@ -179,8 +179,8 @@ commit, for example to fix a typo in a docstring::
# The second and third commits should be applied.
# The second and third commits should be applied.
If your topic branch is already published at GitHub, for example if you're
If your topic branch is already published at GitHub, for example if you're
making minor changes to take into account a review, you will need to force-
making minor changes to take into account a review, you will need to force-
push
push
the changes::
the changes::
git push -f origin ticket_xxxxx
git push -f origin ticket_xxxxx
...
...
docs/ref/applications.txt
Dosyayı görüntüle @
e261337e
...
@@ -340,8 +340,8 @@ Application registry
...
@@ -340,8 +340,8 @@ Application registry
Returns the :class:`~django.db.models.Model` with the given ``app_label``
Returns the :class:`~django.db.models.Model` with the given ``app_label``
and ``model_name``. As a shortcut, this method also accepts a single
and ``model_name``. As a shortcut, this method also accepts a single
argument in the form ``app_label.model_name``. ``model_name`` is
case-
argument in the form ``app_label.model_name``. ``model_name`` is
insensitive.
case-
insensitive.
Raises :exc:`LookupError` if no such application or model exists. Raises
Raises :exc:`LookupError` if no such application or model exists. Raises
:exc:`ValueError` when called with a single argument that doesn't contain
:exc:`ValueError` when called with a single argument that doesn't contain
...
...
docs/ref/request-response.txt
Dosyayı görüntüle @
e261337e
...
@@ -1035,8 +1035,8 @@ with the following notable differences:
...
@@ -1035,8 +1035,8 @@ with the following notable differences:
:class:`StreamingHttpResponse` should only be used in situations where it is
:class:`StreamingHttpResponse` should only be used in situations where it is
absolutely required that the whole content isn't iterated before transferring
absolutely required that the whole content isn't iterated before transferring
the data to the client. Because the content can't be accessed, many
the data to the client. Because the content can't be accessed, many
middlewares can't function normally. For example the ``ETag`` and
``Content-
middlewares can't function normally. For example the ``ETag`` and
Length`` headers can't be generated for streaming responses.
``Content-
Length`` headers can't be generated for streaming responses.
Attributes
Attributes
----------
----------
...
...
docs/releases/1.4.txt
Dosyayı görüntüle @
e261337e
...
@@ -21,8 +21,8 @@ handling date/times. When enabled, this Django will store date/times in UTC,
...
@@ -21,8 +21,8 @@ handling date/times. When enabled, this Django will store date/times in UTC,
use timezone-aware objects internally, and translate them to users' local
use timezone-aware objects internally, and translate them to users' local
timezones for display.
timezones for display.
If you're upgrading an existing project to Django 1.4, switching to the time
-
If you're upgrading an existing project to Django 1.4, switching to the time
zone
zone
aware mode may take some care: the new mode disallows some rather sloppy
aware mode may take some care: the new mode disallows some rather sloppy
behavior that used to be accepted. We encourage anyone who's upgrading to check
behavior that used to be accepted. We encourage anyone who's upgrading to check
out the :ref:`timezone migration guide <time-zones-migration-guide>` and the
out the :ref:`timezone migration guide <time-zones-migration-guide>` and the
:ref:`timezone FAQ <time-zones-faq>` for useful pointers.
:ref:`timezone FAQ <time-zones-faq>` for useful pointers.
...
...
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