diff --git a/docs/howto/static-files.txt b/docs/howto/static-files.txt
index 5cb36a6..8d27409 100644
a
|
b
|
that can easily be served in production.
|
26 | 26 | ``django.contrib.staticfiles`` will look very familiar. That's because |
27 | 27 | they're essentially the same code: ``django.contrib.staticfiles`` started |
28 | 28 | its life as `django-staticfiles`_ and was merged into Django 1.3. |
29 | | |
| 29 | |
30 | 30 | If you're upgrading from ``django-staticfiles``, please see `Upgrading from |
31 | 31 | django-staticfiles`_, below, for a few minor changes you'll need to make. |
32 | 32 | |
… |
… |
__ http://fabfile.org/
|
252 | 252 | |
253 | 253 | Below, and in the following sections, we'll show off a few example fabfiles |
254 | 254 | (i.e. Fabric scripts) that automate these media deployment options. The syntax |
255 | | of a fabfile is fairly streightforward but won't be covered here; consult |
| 255 | of a fabfile is fairly straightforward but won't be covered here; consult |
256 | 256 | `Fabric's documentation`__, for a complete explanation of the syntax.. |
257 | 257 | |
258 | 258 | __ http://docs.fabfile.org/ |
… |
… |
you'll need to make a few changes:
|
385 | 385 | * The settings ``STATICFILES_PREPEND_LABEL_APPS``, |
386 | 386 | ``STATICFILES_MEDIA_DIRNAMES`` and ``STATICFILES_EXCLUDED_APPS`` were |
387 | 387 | removed. |
388 | | |
| 388 | |
389 | 389 | * The setting ``STATICFILES_RESOLVERS`` was removed, and replaced by the new |
390 | 390 | :setting:`STATICFILES_FINDERS`. |
391 | | |
| 391 | |
392 | 392 | * The default for :setting:`STATICFILES_STORAGE` was renamed from |
393 | 393 | ``staticfiles.storage.StaticFileStorage`` to |
394 | 394 | ``staticfiles.storage.StaticFilesStorage`` |
395 | | |
| 395 | |
396 | 396 | Learn more |
397 | 397 | ========== |
398 | 398 | |