Skip to content

Commit d424961

Browse files
committed
move cautions to make them visible
If the reader follows a direct link to the option's description, they would very likely not see the caution as it was rendered outside the viewport.
1 parent 9f82c6f commit d424961

File tree

4 files changed

+20
-16
lines changed

4 files changed

+20
-16
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
.. index::
22
single: ClassLoader; DebugClassLoader
3-
3+
44
Debugging a Class Loader
55
========================
66

7-
Since Symfony 2.4, the ``DebugClassLoader`` of the Class Loader component is
8-
deprecated. Use the
9-
:doc:`DebugClassLoader provided by the Debug component </components/debug/class_loader>`.
7+
.. caution::
8+
9+
The ``DebugClassLoader`` from the ClassLoader component was depracted
10+
in Symfony 2.5 and will be removed in Symfony 3.0. Use the
11+
:doc:`DebugClassLoader provided by the Debug component </components/debug/class_loader>`.

components/console/introduction.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,8 @@ tools capable of helping you with different tasks:
409409

410410
* :doc:`/components/console/helpers/questionhelper`: interactively ask the user for information
411411
* :doc:`/components/console/helpers/formatterhelper`: customize the output colorization
412-
* :doc:`/components/console/helpers/progresshelper`: shows a progress bar
413-
* :doc:`/components/console/helpers/tablehelper`: displays tabular data as a table
412+
* :doc:`/components/console/helpers/progresshelper`: (deprecated) shows a progress bar
413+
* :doc:`/components/console/helpers/tablehelper`: (deprecated) displays tabular data as a table
414414
* :doc:`/components/console/helpers/dialoghelper`: (deprecated) interactively ask the user for information
415415

416416
.. _component-console-testing-commands:

reference/forms/types/options/max_length.rst.inc

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
.. caution::
2-
3-
The ``max_length`` option has been deprecated and will be removed in 3.0.
4-
Instead, use the ``attr`` option by setting it to an array with a ``maxlength`` key.
5-
61
max_length
72
~~~~~~~~~~
83

4+
.. caution::
5+
6+
The ``max_length`` option was deprecated in Symfony 2.5 and will be removed
7+
in Symfony 3.0. Use the ``attr`` option instead by setting it to an array
8+
with a ``maxlength`` key.
9+
910
**type**: ``integer`` **default**: ``null``
1011

1112
If this option is not null, an attribute ``maxlength`` is added, which

reference/forms/types/options/pattern.rst.inc

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
.. caution::
2-
3-
The ``pattern`` option has been deprecated and will be removed in 3.0.
4-
Instead, use the ``attr`` option by setting it to an array with a ``pattern`` key.
5-
61
pattern
72
~~~~~~~
83

4+
.. caution::
5+
6+
The ``pattern`` option was deprecated in Symfony 2.5 and will be removed
7+
in Symfony 3.0. Use the ``attr`` option instead by setting it to an array
8+
with a ``pattern`` key.
9+
910
**type**: ``string`` **default**: ``null``
1011

1112
This adds an HTML5 ``pattern`` attribute to restrict the field input by a

0 commit comments

Comments
 (0)