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
ee26797c
Kaydet (Commit)
ee26797c
authored
Ock 29, 2013
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed typos in docs and comments
üst
b99a4e10
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
20 additions
and
17 deletions
+20
-17
geometries.py
django/contrib/gis/gdal/geometries.py
+1
-1
geom.py
django/contrib/gis/geos/prototypes/geom.py
+1
-1
srs.py
django/contrib/gis/utils/srs.py
+1
-1
views.py
django/contrib/staticfiles/views.py
+1
-1
query.py
django/db/models/query.py
+1
-1
csrf.py
django/middleware/csrf.py
+2
-2
committing-code.txt
docs/internals/contributing/committing-code.txt
+1
-1
working-with-git.txt
.../internals/contributing/writing-code/working-with-git.txt
+2
-2
overview.txt
docs/intro/overview.txt
+3
-1
api-stability.txt
docs/misc/api-stability.txt
+2
-1
index.txt
docs/ref/contrib/admin/index.txt
+1
-1
index.txt
docs/ref/contrib/gis/install/index.txt
+1
-1
default.txt
docs/topics/auth/default.txt
+1
-1
tests.py
tests/regressiontests/admin_views/tests.py
+1
-1
tests.py
tests/regressiontests/builtin_server/tests.py
+1
-1
No files found.
django/contrib/gis/gdal/geometries.py
Dosyayı görüntüle @
ee26797c
...
...
@@ -76,7 +76,7 @@ class OGRGeometry(GDALBase):
str_instance
=
isinstance
(
geom_input
,
six
.
string_types
)
# If HEX, unpack input to
to
a binary buffer.
# If HEX, unpack input to a binary buffer.
if
str_instance
and
hex_regex
.
match
(
geom_input
):
geom_input
=
memoryview
(
a2b_hex
(
geom_input
.
upper
()
.
encode
()))
str_instance
=
False
...
...
django/contrib/gis/geos/prototypes/geom.py
Dosyayı görüntüle @
ee26797c
...
...
@@ -27,7 +27,7 @@ def bin_constructor(func):
# HEX & WKB output
def
bin_output
(
func
):
"Generates a prototype for the routines that return a
a
sized string."
"Generates a prototype for the routines that return a sized string."
func
.
argtypes
=
[
GEOM_PTR
,
POINTER
(
c_size_t
)]
func
.
errcheck
=
check_sized_string
func
.
restype
=
c_uchar_p
...
...
django/contrib/gis/utils/srs.py
Dosyayı görüntüle @
ee26797c
...
...
@@ -24,7 +24,7 @@ def add_srs_entry(srs, auth_name='EPSG', auth_srid=None, ref_sys_name=None,
Defaults to the SRID determined by GDAL.
ref_sys_name:
For SpatiaLite users only, sets the value of the
the
`ref_sys_name` field.
For SpatiaLite users only, sets the value of the `ref_sys_name` field.
Defaults to the name determined by GDAL.
database:
...
...
django/contrib/staticfiles/views.py
Dosyayı görüntüle @
ee26797c
...
...
@@ -32,7 +32,7 @@ def serve(request, path, document_root=None, insecure=False, **kwargs):
"""
if
not
settings
.
DEBUG
and
not
insecure
:
raise
ImproperlyConfigured
(
"The staticfiles view can only be used in "
"debug mode or if the
the
--insecure "
"debug mode or if the --insecure "
"option of 'runserver' is used"
)
normalized_path
=
posixpath
.
normpath
(
unquote
(
path
))
.
lstrip
(
'/'
)
absolute_path
=
finders
.
find
(
normalized_path
)
...
...
django/db/models/query.py
Dosyayı görüntüle @
ee26797c
...
...
@@ -1587,7 +1587,7 @@ def prefetch_related_objects(result_cache, related_lookups):
continue
done_lookups
.
add
(
lookup
)
# Top level, the list of objects to decorate is the
the
result cache
# Top level, the list of objects to decorate is the result cache
# from the primary QuerySet. It won't be for deeper levels.
obj_list
=
result_cache
...
...
django/middleware/csrf.py
Dosyayı görüntüle @
ee26797c
...
...
@@ -41,10 +41,10 @@ def _get_new_csrf_key():
def
get_token
(
request
):
"""
Returns the
the
CSRF token required for a POST form. The token is an
Returns the CSRF token required for a POST form. The token is an
alphanumeric value.
A side effect of calling this function is to make the
the
csrf_protect
A side effect of calling this function is to make the csrf_protect
decorator and the CsrfViewMiddleware add a CSRF cookie and a 'Vary: Cookie'
header to the outgoing response. For this reason, you may need to use this
function lazily, as is done by the csrf context processor.
...
...
docs/internals/contributing/committing-code.txt
Dosyayı görüntüle @
ee26797c
...
...
@@ -116,7 +116,7 @@ Practicality beats purity, so it is up to each committer to decide how much
history mangling to do for a pull request. The main points are engaging the
community, getting work done, and having a usable commit history.
.. _committing-guidlines:
.. _committing-guid
e
lines:
Committing guidelines
---------------------
...
...
docs/internals/contributing/writing-code/working-with-git.txt
Dosyayı görüntüle @
ee26797c
...
...
@@ -81,7 +81,7 @@ commit them::
git commit
When writing the commit message, follow the :ref:`commit message
guidelines <committing-guidlines>` to ease the work of the committer. If
guidelines <committing-guid
e
lines>` to ease the work of the committer. If
you're uncomfortable with English, try at least to describe precisely what the
commit does.
...
...
@@ -121,7 +121,7 @@ a pull request at GitHub. A good pull request means:
* well-formed messages for each commit: a summary line and then paragraphs
wrapped at 72 characters thereafter -- see the :ref:`committing guidelines
<committing-guidlines>` for more details,
<committing-guid
e
lines>` for more details,
* documentation and tests, if needed -- actually tests are always needed,
except for documentation changes.
...
...
docs/intro/overview.txt
Dosyayı görüntüle @
ee26797c
...
...
@@ -56,7 +56,9 @@ Enjoy the free API
==================
With that, you've got a free, and rich, :doc:`Python API </topics/db/queries>` to
access your data. The API is created on the fly, no code generation necessary::
access your data. The API is created on the fly, no code generation necessary:
.. code-block:: python
# Import the models we created from our "news" app
>>> from news.models import Reporter, Article
...
...
docs/misc/api-stability.txt
Dosyayı görüntüle @
ee26797c
...
...
@@ -118,7 +118,8 @@ Security fixes
If we become aware of a security problem -- hopefully by someone following our
:ref:`security reporting policy <reporting-security-issues>` -- we'll do
everything necessary to fix it. This might mean breaking backwards compatibility; security trumps the compatibility guarantee.
everything necessary to fix it. This might mean breaking backwards
compatibility; security trumps the compatibility guarantee.
Contributed applications (``django.contrib``)
---------------------------------------------
...
...
docs/ref/contrib/admin/index.txt
Dosyayı görüntüle @
ee26797c
...
...
@@ -824,7 +824,7 @@ subclass::
added last after all editable fields.
A read-only field can not only display data from a model's field, it can
also display the output of a
a
model's method or a method of the
also display the output of a model's method or a method of the
``ModelAdmin`` class itself. This is very similar to the way
:attr:`ModelAdmin.list_display` behaves. This provides an easy way to use
the admin interface to provide feedback on the status of the objects being
...
...
docs/ref/contrib/gis/install/index.txt
Dosyayı görüntüle @
ee26797c
...
...
@@ -330,7 +330,7 @@ described above, ``psycopg2`` may be installed using the following command::
.. note::
If you don't have ``pip``, follow the
the
:ref:`installation instructions
If you don't have ``pip``, follow the :ref:`installation instructions
<installing-official-release>` to install it.
.. _fink:
...
...
docs/topics/auth/default.txt
Dosyayı görüntüle @
ee26797c
...
...
@@ -82,7 +82,7 @@ Changing passwords
Django does not store raw (clear text) passwords on the user model, but only
a hash (see :doc:`documentation of how passwords are managed
</topics/auth/passwords>` for full details). Because of this, do not attempt to
manipulate the password attribute of the user directly. This is why a
a
helper
manipulate the password attribute of the user directly. This is why a helper
function is used when creating a user.
To change a user's password, you have several options:
...
...
tests/regressiontests/admin_views/tests.py
Dosyayı görüntüle @
ee26797c
...
...
@@ -2454,7 +2454,7 @@ class TestCustomChangeList(TestCase):
self
.
assertEqual
(
response
.
status_code
,
302
)
# redirect somewhere
# Hit the page once to get messages out of the queue message list
response
=
self
.
client
.
get
(
'/test_admin/
%
s/admin_views/gadget/'
%
self
.
urlbit
)
# Ensure that
that
data is still not visible on the page
# Ensure that data is still not visible on the page
response
=
self
.
client
.
get
(
'/test_admin/
%
s/admin_views/gadget/'
%
self
.
urlbit
)
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertNotContains
(
response
,
'First Gadget'
)
...
...
tests/regressiontests/builtin_server/tests.py
Dosyayı görüntüle @
ee26797c
...
...
@@ -7,7 +7,7 @@ from django.utils.unittest import TestCase
#
# Tests for #9659: wsgi.file_wrapper in the builtin server.
# We need to mock a couple of
of
handlers and keep track of what
# We need to mock a couple of handlers and keep track of what
# gets called when using a couple kinds of WSGI apps.
#
...
...
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