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
ea4da8e6
Kaydet (Commit)
ea4da8e6
authored
Mar 02, 2014
tarafından
Baptiste Mispelon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed some typos in the documentation.
Thanks to Rodolfo Carvalho and Piotr Kasprzyk for the patch.
üst
a08f9065
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
glossary.txt
docs/glossary.txt
+1
-1
tutorial05.txt
docs/intro/tutorial05.txt
+1
-1
checks.txt
docs/ref/checks.txt
+1
-1
form-wizard.txt
docs/ref/contrib/formtools/form-wizard.txt
+1
-1
commands.txt
docs/ref/contrib/gis/commands.txt
+1
-1
geoquerysets.txt
docs/ref/contrib/gis/geoquerysets.txt
+1
-1
measure.txt
docs/ref/contrib/gis/measure.txt
+1
-1
testing.txt
docs/ref/contrib/gis/testing.txt
+1
-1
migration-operations.txt
docs/ref/migration-operations.txt
+1
-1
customizing.txt
docs/topics/auth/customizing.txt
+1
-1
No files found.
docs/glossary.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -72,4 +72,4 @@ Glossary
See :doc:`/topics/templates`.
view
A function responsible for rending a page.
A function responsible for rend
er
ing a page.
docs/intro/tutorial05.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -362,7 +362,7 @@ With that ready, we can ask the client to do some work for us::
>>> response.status_code
404
>>> # on the other hand we should expect to find something at '/polls/'
>>> # we'll use 'reverse()' rather than a harcoded URL
>>> # we'll use 'reverse()' rather than a har
d
coded URL
>>> from django.core.urlresolvers import reverse
>>> response = client.get(reverse('polls:index'))
>>> response.status_code
...
...
docs/ref/checks.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -185,7 +185,7 @@ code snippet shows how you can implement this check::
self.min > self.max):
return [
checks.Error(
'min greate
d
than max.',
'min greate
r
than max.',
hint='Decrease min or increase max.',
obj=self,
id='myapp.E001',
...
...
docs/ref/contrib/formtools/form-wizard.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -319,7 +319,7 @@ The ``urls.py`` file would contain something like::
.. versionchanged:: 1.6
The ``condi
c
tion_dict`` can be passed as attribute for the ``as_view()`
The ``condition_dict`` can be passed as attribute for the ``as_view()`
method or as a class attribute named ``condition_dict``::
class OrderWizard(WizardView):
...
...
docs/ref/contrib/gis/commands.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -19,7 +19,7 @@ ogrinspect <data_source> <model_name>
.. django-admin:: ogrinspect
The ``ogrin
ps
ect`` management command will inspect the given OGR-compatible
The ``ogrin
sp
ect`` management command will inspect the given OGR-compatible
:class:`~django.contrib.gis.gdal.DataSource` (e.g., a shapefile) and will
output a GeoDjango model with the given model name. There's a detailed example
of using ``ogrinspect`` :ref:`in the tutorial <ogrinspect-intro>`.
...
...
docs/ref/contrib/gis/geoquerysets.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -1102,7 +1102,7 @@ Aggregate Methods
*Availability*: PostGIS
Returns a ``GEOMETRYCOLLECTION`` or a ``MULTI`` geometry object from the geometry
column.
This is analogous to a simplified version of the :meth:`GeoQuerySet.unionagg` method,
column. This is analogous to a simplified version of the :meth:`GeoQuerySet.unionagg` method,
except it can be several orders of magnitude faster than performing a union because
it simply rolls up geometries into a collection or multi object, not caring about
dissolving boundaries.
...
...
docs/ref/contrib/gis/measure.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -5,7 +5,7 @@ Measurement Objects
===================
.. module:: django.contrib.gis.measure
:synopsis: GeoDjango's distance and area measurment objects.
:synopsis: GeoDjango's distance and area measur
e
ment objects.
The :mod:`django.contrib.gis.measure` module contains objects that allow
for convenient representation of distance and area units of measure. [#]_
...
...
docs/ref/contrib/gis/testing.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -131,7 +131,7 @@ Settings
Only relevant when using a SpatiaLite version 2.3.
By default, the GeoDjango test runner looks for the :ref:`file containing the
SpatiaLite da
b
abase-initialization SQL code <create_spatialite_db>` in the
SpatiaLite da
t
abase-initialization SQL code <create_spatialite_db>` in the
same directory where it was invoked (by default the same directory where
``manage.py`` is located). To use a different location, add the following to
your settings::
...
...
docs/ref/migration-operations.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -221,7 +221,7 @@ SeparateDatabaseAndState
SeparateDatabaseAndState(database_operations=None, state_operations=None)
A highly speciali
st
operation that let you mix and match the database
A highly speciali
zed
operation that let you mix and match the database
(schema-changing) and state (autodetector-powering) aspects of operations.
It accepts two list of operations, and when asked to apply state will use the
...
...
docs/topics/auth/customizing.txt
Dosyayı görüntüle @
ea4da8e6
...
...
@@ -5,7 +5,7 @@ Customizing authentication in Django
The authentication that comes with Django is good enough for most common cases,
but you may have needs not met by the out-of-the-box defaults. To customize
authentication to your projects needs involves understanding what points of the
provided system are exten
d
ible or replaceable. This document provides details
provided system are exten
s
ible or replaceable. This document provides details
about how the auth system can be customized.
:ref:`Authentication backends <authentication-backends>` provide an extensible
...
...
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