Skip to content

Commit c210d5f

Browse files
committed
Moved new cookbook articles to the topics
1 parent b33e777 commit c210d5f

25 files changed

+38
-19
lines changed

assetic.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Assetic
22
=======
33

4-
.. include:: /cookbook/assetic/_standard_edition_warning.inc
4+
.. include:: /assetic/_standard_edition_warning.rst.inc
55

66
.. toctree::
77
:maxdepth: 1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. caution::
22

33
Starting from Symfony 2.8, Assetic is no longer included by default in the
4-
Symfony Standard Edition. Refer to :doc:`this article </cookbook/assetic/asset_management>`
4+
Symfony Standard Edition. Refer to :doc:`this article </assetic/asset_management>`
55
to learn how to install and enable Assetic in your Symfony application.

assetic/apply_to_option.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
How to Apply an Assetic Filter to a specific File Extension
55
===========================================================
66

7-
.. include:: /cookbook/assetic/_standard_edition_warning.inc
7+
.. include:: /assetic/_standard_edition_warning.rst.inc
88

99
Assetic filters can be applied to individual files, groups of files or even,
1010
as you'll see here, files that have a specific extension. To show you how

assetic/jpeg_optimize.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
How to Use Assetic for Image Optimization with Twig Functions
55
=============================================================
66

7-
.. include:: /cookbook/assetic/_standard_edition_warning.inc
7+
.. include:: /assetic/_standard_edition_warning.rst.inc
88

99
Among its many filters, Assetic has four filters which can be used for on-the-fly
1010
image optimization. This allows you to get the benefits of smaller file sizes

assetic/php.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Combining, Compiling and Minimizing Web Assets with PHP Libraries
55
=================================================================
66

7-
.. include:: /cookbook/assetic/_standard_edition_warning.inc
7+
.. include:: /assetic/_standard_edition_warning.rst.inc
88

99
The official Symfony Best Practices recommend to use Assetic to
1010
:doc:`manage web assets </best_practices/web-assets>`, unless you are

assetic/uglifyjs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
How to Minify CSS/JS Files (Using UglifyJS and UglifyCSS)
55
=========================================================
66

7-
.. include:: /cookbook/assetic/_standard_edition_warning.inc
7+
.. include:: /assetic/_standard_edition_warning.rst.inc
88

99
`UglifyJS`_ is a JavaScript parser/compressor/beautifier toolkit. It can be used
1010
to combine and minify JavaScript assets so that they require less HTTP requests

assetic/yuicompressor.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ How to Minify JavaScripts and Stylesheets with YUI Compressor
1010
**strongly advised to avoid using YUI utilities** unless strictly necessary.
1111
Read :doc:`/assetic/uglifyjs` for a modern and up-to-date alternative.
1212

13-
.. include:: /cookbook/assetic/_standard_edition_warning.inc
13+
.. include:: /assetic/_standard_edition_warning.rst.inc
1414

1515
Yahoo! provides an excellent utility for minifying JavaScripts and stylesheets
1616
so they travel over the wire faster, the `YUI Compressor`_. Thanks to Assetic,

best_practices/web-assets.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ much more concise:
3535
Using Assetic
3636
-------------
3737

38-
.. include:: /cookbook/assetic/_standard_edition_warning.inc
38+
.. include:: /assetic/_standard_edition_warning.rst.inc
3939

4040
These days, you probably can't simply create static CSS and JavaScript files
4141
and include them in your template. Instead, you'll probably want to combine

bundles/override.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ and registering it as a service, and tagging it with ``form.type`` (you *could*
114114
do this in earlier version).
115115

116116
Instead, you should use a "form type extension" to modify the existing form type.
117-
For more information, see :doc:`/cookbook/form/create_form_type_extension`.
117+
For more information, see :doc:`/form/create_form_type_extension`.
118118

119119
.. _override-validation:
120120

components/index.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The Components
2+
==============
3+
4+
.. toctree::
5+
:maxdepth: 1
6+
:glob:
7+
8+
using_components
9+
*

0 commit comments

Comments
 (0)