mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Refs #32394 -- Changed STATIC_URL/MEDIA_URL to relative paths in tests and docs where appropriate.
This commit is contained in:
parent
9d05add447
commit
50a5f8840f
11 changed files with 20 additions and 20 deletions
|
@ -16,7 +16,7 @@ Configuring static files
|
|||
|
||||
#. In your settings file, define :setting:`STATIC_URL`, for example::
|
||||
|
||||
STATIC_URL = '/static/'
|
||||
STATIC_URL = 'static/'
|
||||
|
||||
#. In your templates, use the :ttag:`static` template tag to build the URL for
|
||||
the given relative path using the configured :setting:`STATICFILES_STORAGE`.
|
||||
|
@ -88,8 +88,8 @@ to ``True``. If you don't have ``django.contrib.staticfiles`` in
|
|||
This is not suitable for production use! For some common deployment
|
||||
strategies, see :doc:`/howto/static-files/deployment`.
|
||||
|
||||
For example, if your :setting:`STATIC_URL` is defined as ``/static/``, you can do
|
||||
this by adding the following snippet to your urls.py::
|
||||
For example, if your :setting:`STATIC_URL` is defined as ``static/``, you can
|
||||
do this by adding the following snippet to your urls.py::
|
||||
|
||||
from django.conf import settings
|
||||
from django.conf.urls.static import static
|
||||
|
@ -101,7 +101,7 @@ this by adding the following snippet to your urls.py::
|
|||
.. note::
|
||||
|
||||
This helper function works only in debug mode and only if
|
||||
the given prefix is local (e.g. ``/static/``) and not a URL (e.g.
|
||||
the given prefix is local (e.g. ``static/``) and not a URL (e.g.
|
||||
``http://static.example.com/``).
|
||||
|
||||
Also this helper function only serves the actual :setting:`STATIC_ROOT`
|
||||
|
@ -119,7 +119,7 @@ During development, you can serve user-uploaded media files from
|
|||
This is not suitable for production use! For some common deployment
|
||||
strategies, see :doc:`/howto/static-files/deployment`.
|
||||
|
||||
For example, if your :setting:`MEDIA_URL` is defined as ``/media/``, you can do
|
||||
For example, if your :setting:`MEDIA_URL` is defined as ``media/``, you can do
|
||||
this by adding the following snippet to your :setting:`ROOT_URLCONF`::
|
||||
|
||||
from django.conf import settings
|
||||
|
@ -132,7 +132,7 @@ this by adding the following snippet to your :setting:`ROOT_URLCONF`::
|
|||
.. note::
|
||||
|
||||
This helper function works only in debug mode and only if
|
||||
the given prefix is local (e.g. ``/media/``) and not a URL (e.g.
|
||||
the given prefix is local (e.g. ``media/``) and not a URL (e.g.
|
||||
``http://media.example.com/``).
|
||||
|
||||
.. _staticfiles-testing-support:
|
||||
|
|
|
@ -3343,7 +3343,7 @@ Default: ``None``
|
|||
|
||||
URL to use when referring to static files located in :setting:`STATIC_ROOT`.
|
||||
|
||||
Example: ``"/static/"`` or ``"http://static.example.com/"``
|
||||
Example: ``"static/"`` or ``"http://static.example.com/"``
|
||||
|
||||
If not ``None``, this will be used as the base path for
|
||||
:ref:`asset definitions<form-asset-paths>` (the ``Media`` class) and the
|
||||
|
@ -3400,7 +3400,7 @@ tuples, e.g.::
|
|||
("downloads", "/opt/webfiles/stats"),
|
||||
]
|
||||
|
||||
For example, assuming you have :setting:`STATIC_URL` set to ``'/static/'``, the
|
||||
For example, assuming you have :setting:`STATIC_URL` set to ``'static/'``, the
|
||||
:djadmin:`collectstatic` management command would collect the "stats" files
|
||||
in a ``'downloads'`` subdirectory of :setting:`STATIC_ROOT`.
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ built-in handling for user-uploaded files, but you can have Django serve your
|
|||
]
|
||||
|
||||
Note, the snippet assumes your :setting:`MEDIA_URL` has a value of
|
||||
``'/media/'``. This will call the :func:`~django.views.static.serve` view,
|
||||
``'media/'``. This will call the :func:`~django.views.static.serve` view,
|
||||
passing in the path from the URLconf and the (required) ``document_root``
|
||||
parameter.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue