Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite7580c0

Browse files
committed
minorsymfony#3713 Updated versionadded directives to use "introduced" (WouterJ)
This PR was merged into the 2.3 branch.Discussion----------Updated versionadded directives to use "introduced"I was tired of explaining why we didn't update them on every created PR,so I decided to just update them :P| Q | A| --- | ---| Doc fix? | yes| New docs? | no| Applies to | 2.3+| Fixed tickets | many :)Commits-------2884f18 Fixed syntaxc192278 was added -> was introduced
2 parents06c56c1 +2884f18 commite7580c0

File tree

36 files changed

+56
-57
lines changed

36 files changed

+56
-57
lines changed

‎book/forms.rst‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ other things, determines which HTML form tag(s) is rendered for that field.
130130
Finally, you added a submit button for submitting the form to the server.
131131

132132
..versionadded::2.3
133-
Support for submit buttons wasadded in Symfony 2.3. Before that, you had
133+
Support for submit buttons wasintroduced in Symfony 2.3. Before that, you had
134134
to add buttons to the form's HTML manually.
135135

136136
Symfony2 comes with many built-in types that will be discussed shortly
@@ -278,7 +278,7 @@ Submitting Forms with Multiple Buttons
278278
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
279279

280280
..versionadded::2.3
281-
Support for buttons in forms wasadded in Symfony 2.3.
281+
Support for buttons in forms wasintroduced in Symfony 2.3.
282282

283283
When your form contains more than one submit button, you will want to check
284284
which of the buttons was clicked to adapt the program flow in your controller.
@@ -478,7 +478,7 @@ Disabling Validation
478478
~~~~~~~~~~~~~~~~~~~~
479479

480480
..versionadded::2.3
481-
The ability to set ``validation_groups`` to false wasadded in Symfony 2.3.
481+
The ability to set ``validation_groups`` to false wasintroduced in Symfony 2.3.
482482

483483
Sometimes it is useful to suppress the validation of a form altogether. For
484484
these cases you can set the ``validation_groups`` option to ``false``::
@@ -548,7 +548,7 @@ Groups based on the Clicked Button
548548
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
549549

550550
..versionadded::2.3
551-
Support for buttons in forms wasadded in Symfony 2.3.
551+
Support for buttons in forms wasintroduced in Symfony 2.3.
552552

553553
When your form contains multiple submit buttons, you can change the validation
554554
group depending on which button is used to submit the form. For example,

‎book/routing.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ Adding a Host Requirement
720720
~~~~~~~~~~~~~~~~~~~~~~~~~
721721

722722
..versionadded::2.2
723-
Host matching support wasadded in Symfony 2.2
723+
Host matching support wasintroduced in Symfony 2.2
724724

725725
You can also match on the HTTP *host* of the incoming request. For more
726726
information, see:doc:`/components/routing/hostname_pattern` in the Routing
@@ -1075,7 +1075,7 @@ Adding a Host requirement to Imported Routes
10751075
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10761076

10771077
..versionadded::2.2
1078-
Host matching support wasadded in Symfony 2.2
1078+
Host matching support wasintroduced in Symfony 2.2
10791079

10801080
You can set the host regex on imported routes. For more information, see
10811081
:ref:`component-routing-host-imported`.

‎book/templating.rst‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ Template Naming and Locations
376376
-----------------------------
377377

378378
..versionadded::2.2
379-
Namespaced path support wasadded in 2.2, allowing for template names
379+
Namespaced path support wasintroduced in 2.2, allowing for template names
380380
like ``@AcmeDemo/layout.html.twig``. See:doc:`/cookbook/templating/namespaced_paths`
381381
for more details.
382382

@@ -677,7 +677,7 @@ Asynchronous Content with hinclude.js
677677
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
678678

679679
..versionadded::2.1
680-
hinclude.js support wasadded in Symfony 2.1
680+
hinclude.js support wasintroduced in Symfony 2.1
681681

682682
Controllers can be embedded asynchronously using thehinclude.js_ JavaScript library.
683683
As the embedded content comes from another page (or controller for that matter),
@@ -786,7 +786,7 @@ in your application configuration:
786786
));
787787
788788
..versionadded::2.2
789-
Default templates per render function wasadded in Symfony 2.2
789+
Default templates per render function wasintroduced in Symfony 2.2
790790

791791
You can define default templates per ``render`` function (which will override
792792
any global default template that is defined):

‎components/class_loader/cache_class_loader.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ApcClassLoader
2727
--------------
2828

2929
..versionadded::2.1
30-
The ``ApcClassLoader`` class wasadded in Symfony 2.1.
30+
The ``ApcClassLoader`` class wasintroduced in Symfony 2.1.
3131

3232
``ApcClassLoader`` wraps an existing class loader and caches calls to its
3333
``findFile()`` method using `APC`_::
@@ -50,7 +50,7 @@ XcacheClassLoader
5050
-----------------
5151

5252
..versionadded::2.1
53-
The ``XcacheClassLoader`` class wasadded in Symfony 2.1.
53+
The ``XcacheClassLoader`` class wasintroduced in Symfony 2.1.
5454

5555
``XcacheClassLoader`` uses `XCache`_ to cache a class loader. Registering
5656
it is straightforward::

‎components/class_loader/class_loader.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The PSR-0 Class Loader
55
======================
66

77
..versionadded::2.1
8-
The ``ClassLoader`` class wasadded in Symfony 2.1.
8+
The ``ClassLoader`` class wasintroduced in Symfony 2.1.
99

1010
If your classes and third-party libraries follow the `PSR-0`_ standard, you
1111
can use the:class:`Symfony\\Component\\ClassLoader\\ClassLoader` class to

‎components/class_loader/debug_class_loader.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Debugging a Class Loader
55
========================
66

77
..versionadded::2.1
8-
The ``DebugClassLoader`` class wasadded in Symfony 2.1.
8+
The ``DebugClassLoader`` class wasintroduced in Symfony 2.1.
99

1010
The:class:`Symfony\\Component\\ClassLoader\\DebugClassLoader` attempts to
1111
throw more helpful exceptions when a class isn't found by the registered

‎components/console/helpers/dialoghelper.rst‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Autocompletion
6060
~~~~~~~~~~~~~~
6161

6262
..versionadded::2.2
63-
Autocompletion for questions wasadded in Symfony 2.2.
63+
Autocompletion for questions wasintroduced in Symfony 2.2.
6464

6565
You can also specify an array of potential answers for a given question. These
6666
will be autocompleted as the user types::
@@ -78,7 +78,7 @@ Hiding the User's Response
7878
~~~~~~~~~~~~~~~~~~~~~~~~~~
7979

8080
..versionadded::2.2
81-
The ``askHiddenResponse`` method wasadded in Symfony 2.2.
81+
The ``askHiddenResponse`` method wasintroduced in Symfony 2.2.
8282

8383
You can also ask a question and hide the response. This is particularly
8484
convenient for passwords::
@@ -148,7 +148,7 @@ Validating a Hidden Response
148148
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
149149

150150
..versionadded::2.2
151-
The ``askHiddenResponseAndValidate`` method wasadded in Symfony 2.2.
151+
The ``askHiddenResponseAndValidate`` method wasintroduced in Symfony 2.2.
152152

153153
You can also ask and validate a hidden response::
154154

@@ -176,7 +176,7 @@ Let the user choose from a list of Answers
176176

177177
..versionadded::2.2
178178
The:method:`Symfony\\Component\\Console\\Helper\\DialogHelper::select` method
179-
wasadded in Symfony 2.2.
179+
wasintroduced in Symfony 2.2.
180180

181181
If you have a predefined set of answers the user can choose from, you
182182
could use the ``ask`` method described above or, to make sure the user
@@ -211,7 +211,7 @@ argument). The default value for the attempts is ``false``, which means infinite
211211
attempts. You can define your own error message in the sixth argument.
212212

213213
..versionadded::2.3
214-
Multiselect support wasadded in Symfony 2.3.
214+
Multiselect support wasintroduced in Symfony 2.3.
215215

216216
Multiple Choices
217217
................

‎components/console/helpers/progresshelper.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Progress Helper
55
===============
66

77
..versionadded::2.2
8-
The ``progress`` helper wasadded in Symfony 2.2.
8+
The ``progress`` helper wasintroduced in Symfony 2.2.
99

1010
..versionadded::2.3
11-
The ``setCurrent`` method wasadded in Symfony 2.3.
11+
The ``setCurrent`` method wasintroduced in Symfony 2.3.
1212

1313
When executing longer-running commands, it may be helpful to show progress
1414
information, which updates as your command runs:

‎components/console/helpers/tablehelper.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Table Helper
55
============
66

77
..versionadded::2.3
8-
The ``table`` helper wasadded in Symfony 2.3.
8+
The ``table`` helper wasintroduced in Symfony 2.3.
99

1010
When building a console application it may be useful to display tabular data:
1111

‎components/event_dispatcher/immutable_dispatcher.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Immutable Event Dispatcher
55
==============================
66

77
..versionadded::2.1
8-
This feature wasadded in Symfony 2.1.
8+
This feature wasintroduced in Symfony 2.1.
99

1010
The:class:`Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher` is
1111
a locked or frozen event dispatcher. The dispatcher cannot register new

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp