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
cb506aed
Kaydet (Commit)
cb506aed
authored
Mar 22, 2015
tarafından
Fabio Natali
Kaydeden (comit)
Tim Graham
Mar 25, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23814 -- Documented apps refactored out of Django.
üst
8f305563
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
51 additions
and
115 deletions
+51
-115
index.txt
docs/index.txt
+0
-1
index.txt
docs/ref/contrib/formtools/index.txt
+0
-43
index.txt
docs/ref/contrib/index.txt
+0
-1
fields.txt
docs/ref/models/fields.txt
+5
-3
settings.txt
docs/ref/settings.txt
+0
-4
1.5.txt
docs/releases/1.5.txt
+5
-6
1.8.txt
docs/releases/1.8.txt
+2
-3
external-packages.txt
docs/topics/external-packages.txt
+38
-0
index.txt
docs/topics/index.txt
+1
-1
localflavor.txt
docs/topics/localflavor.txt
+0
-53
No files found.
docs/index.txt
Dosyayı görüntüle @
cb506aed
...
...
@@ -243,7 +243,6 @@ regions:
:doc:`Internationalization <topics/i18n/translation>` |
:ref:`Localization <how-to-create-language-files>` |
:doc:`Localized Web UI formatting and form input <topics/i18n/formatting>`
* :doc:`"Local flavor" <topics/localflavor>`
* :doc:`Time zones </topics/i18n/timezones>`
Performance and optimization
...
...
docs/ref/contrib/formtools/index.txt
deleted
100644 → 0
Dosyayı görüntüle @
8f305563
django.contrib.formtools
========================
A set of high-level abstractions for Django forms (:mod:`django.forms`).
Historically, Django shipped with ``django.contrib.formtools`` -- a collection
of assorted utilities that are useful for specific form use cases. This code is
now distributed separately from Django, for easier maintenance and to trim the
size of Django's codebase. In Django 1.8, importing from
``django.contrib.formtools`` will no longer work.
The new formtools package is named ``django-formtools``, with a main module
called ``formtools``. Version 1.0 includes the same two primary features that
the code included when it shipped with Django: a helper for form previews and a
form wizard view.
See the `official documentation`_ for more information.
.. _official documentation: http://django-formtools.readthedocs.org/
.. _formtools-how-to-migrate:
How to migrate
--------------
If you've used the old ``django.contrib.formtools`` package follow these
two easy steps to update your code:
1. Install version 1.0 of the third-party ``django-formtools`` package.
2. Change your app's import statements to reference the new packages.
For example, change::
from django.contrib.formtools.wizard.views import WizardView
to::
from formtools.wizard.views import WizardView
The code in version 1.0 of the new package is the same (it was copied directly
from Django), so you don't have to worry about backwards compatibility in terms
of functionality. Only the imports have changed.
docs/ref/contrib/index.txt
Dosyayı görüntüle @
cb506aed
...
...
@@ -26,7 +26,6 @@ those packages have.
auth
contenttypes
flatpages
formtools/index
gis/index
humanize
messages
...
...
docs/ref/models/fields.txt
Dosyayı görüntüle @
cb506aed
...
...
@@ -13,9 +13,11 @@ This document contains all the API references of :class:`Field` including the
.. seealso::
If the built-in fields don't do the trick, you can try `django-localflavor
<https://django-localflavor.readthedocs.org/>`_, which contains assorted
pieces of code that are useful for particular countries or cultures. Also,
you can easily :doc:`write your own custom model fields
<https://github.com/django/django-localflavor>`_ (`documentation
<https://django-localflavor.readthedocs.org/>`_), which contains assorted
pieces of code that are useful for particular countries and cultures.
Also, you can easily :doc:`write your own custom model fields
</howto/custom-model-fields>`.
.. note::
...
...
docs/ref/settings.txt
Dosyayı görüntüle @
cb506aed
...
...
@@ -1885,11 +1885,7 @@ The secret key is used for:
* All :doc:`messages </ref/contrib/messages>` if you are using
:class:`~django.contrib.messages.storage.cookie.CookieStorage` or
:class:`~django.contrib.messages.storage.fallback.FallbackStorage`.
* :mod:`Form wizard <formtools.wizard.views>` progress when using
cookie storage with
:class:`formtools.wizard.views.CookieWizardView`.
* All :func:`~django.contrib.auth.views.password_reset` tokens.
* All in progress :mod:`form previews <formtools.preview>`.
* Any usage of :doc:`cryptographic signing </topics/signing>`, unless a
different key is provided.
...
...
docs/releases/1.5.txt
Dosyayı görüntüle @
cb506aed
...
...
@@ -723,13 +723,12 @@ Features deprecated in 1.5
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The localflavor contrib app has been split into separate packages.
``django.contrib.localflavor`` itself will be removed in Django 1.6, after an
:ref:`accelerated deprecation <localflavor-deprecation-policy>`. The docs
provide :ref:`migration instructions <localflavor-how-to-migrate>`.
``django.contrib.localflavor`` itself will be removed in Django 1.6,
after an accelerated deprecation.
The new packages are available
:ref:`on Github <localflavor-packages>`. The
core team cannot efficiently maintain these packages in the long term — it
spans just a
dozen countries at this time; similar to translations, maintenance
The new packages are available
on Github. The core team cannot
efficiently maintain these packages in the long term — it spans just a
dozen countries at this time; similar to translations, maintenance
will be handed over to interested members of the community.
``django.contrib.markup``
...
...
docs/releases/1.8.txt
Dosyayı görüntüle @
cb506aed
...
...
@@ -908,9 +908,8 @@ class decorators. As a consequence, when overriding ``setUpClass()`` or
Removal of ``django.contrib.formtools``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The formtools contrib app has been moved into a separate package.
``django.contrib.formtools`` itself has been removed. The docs provide
:ref:`migration instructions <formtools-how-to-migrate>`.
The formtools contrib app has been moved to a separate package and the
relevant documentation pages have been updated or removed.
The new package is available `on Github`_ and on PyPI.
...
...
docs/topics/external-packages.txt
0 → 100644
Dosyayı görüntüle @
cb506aed
=================
External packages
=================
Django ships with a variety of extra, optional tools that solve common
problems (``contrib.*``). For easier maintenance and to trim the size of the
codebase, a few of those applications have been moved out to separate projects.
Localflavor
~~~~~~~~~~~
``django-localflavor`` is a collection of utilities for particular countries
and cultures.
* `GitHub <https://github.com/django/django-localflavor>`__
* `Documentation <https://django-localflavor.readthedocs.org/>`__
* `PyPI <https://pypi.python.org/pypi/django-localflavor>`__
Comments
~~~~~~~~
``django-contrib-comments`` can be used to attach comments to any model, so you
can use it for comments on blog entries, photos, book chapters, or anything
else. Most users will be better served with a custom solution, or a hosted
product like Disqus.
* `GitHub <https://github.com/django/django-contrib-comments>`__
* `Documentation <http://django-contrib-comments.readthedocs.org/>`__
* `PyPI <https://pypi.python.org/pypi/django-contrib-comments>`__
Formtools
~~~~~~~~~
``django-formtools`` is a collection of assorted utilities to work with forms.
* `GitHub <https://github.com/django/django-formtools>`__
* `Documentation <http://django-formtools.readthedocs.org/>`__
* `PyPI <https://pypi.python.org/pypi/django-formtools>`__
docs/topics/index.txt
Dosyayı görüntüle @
cb506aed
...
...
@@ -21,7 +21,6 @@ Introductions to all the key parts of Django you'll need to know:
signing
email
i18n/index
localflavor
logging
pagination
python3
...
...
@@ -31,3 +30,4 @@ Introductions to all the key parts of Django you'll need to know:
settings
signals
checks
external-packages
docs/topics/localflavor.txt
deleted
100644 → 0
Dosyayı görüntüle @
8f305563
==========================
The "local flavor" add-ons
==========================
Historically, Django has shipped with ``django.contrib.localflavor`` --
assorted pieces of code that are useful for particular countries or cultures.
This code is now distributed separately from Django, for easier maintenance
and to trim the size of Django's codebase.
See the official documentation for more information:
https://django-localflavor.readthedocs.org/
.. _localflavor-packages:
Code is hosted on github at https://github.com/django/django-localflavor.
.. _localflavor-how-to-migrate:
How to migrate
==============
If you've used the old ``django.contrib.localflavor`` package or one of the
temporary ``django-localflavor-*`` releases, follow these two easy steps to
update your code:
1. Install the third-party ``django-localflavor`` package from PyPI.
2. Change your app's import statements to reference the new package.
For example, change this::
from django.contrib.localflavor.fr.forms import FRPhoneNumberField
...to this::
from localflavor.fr.forms import FRPhoneNumberField
The code in the new package is the same (it was copied directly from Django),
so you don't have to worry about backwards compatibility in terms of
functionality. Only the imports have changed.
.. _localflavor-deprecation-policy:
Deprecation policy
==================
In Django 1.5, importing from ``django.contrib.localflavor`` will result in a
``DeprecationWarning``. This means your code will still work, but you should
change it as soon as possible.
In Django 1.6, importing from ``django.contrib.localflavor`` will no longer
work.
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