Skip to content

Commit 5dc2b8b

Browse files
committedMar 8, 2013
[2.2] Updating some URLs from 2.1/master to 2.2
1 parent 53c4d8e commit 5dc2b8b

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed
 

‎book/forms.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1603,7 +1603,7 @@ Learn more from the Cookbook
16031603

16041604
.. _`Symfony2 Form Component`: https://github.com/symfony/Form
16051605
.. _`DateTime`: http://php.net/manual/en/class.datetime.php
1606-
.. _`Twig Bridge`: https://github.com/symfony/symfony/tree/master/src/Symfony/Bridge/Twig
1607-
.. _`form_div_layout.html.twig`: https://github.com/symfony/symfony/blob/2.1/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig
1606+
.. _`Twig Bridge`: https://github.com/symfony/symfony/tree/2.2/src/Symfony/Bridge/Twig
1607+
.. _`form_div_layout.html.twig`: https://github.com/symfony/symfony/blob/2.2/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig
16081608
.. _`Cross-site request forgery`: http://en.wikipedia.org/wiki/Cross-site_request_forgery
1609-
.. _`view on GitHub`: https://github.com/symfony/symfony/tree/master/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form
1609+
.. _`view on GitHub`: https://github.com/symfony/symfony/tree/2.2/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form

‎book/from_flat_php_to_symfony2.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ content:
433433
434434
{
435435
"require": {
436-
"symfony/symfony": "2.1.*"
436+
"symfony/symfony": "2.2.*"
437437
},
438438
"autoload": {
439439
"files": ["model.php","controllers.php"]

‎book/installation.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ Distribution:
5757

5858
.. code-block:: bash
5959
60-
php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony dev-master
60+
php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony 2.2.0
6161
6262
.. tip::
6363

64-
For an exact version, replace `dev-master` with the latest Symfony version
65-
(e.g. 2.1.1). For details, see the `Symfony Installation Page`_
64+
For an exact version, replace `2.2.0` with the latest Symfony version
65+
(e.g. 2.2.1). For details, see the `Symfony Installation Page`_
6666

6767
.. tip::
6868

@@ -110,10 +110,10 @@ one of the following commands (replacing ``###`` with your actual filename):
110110
.. code-block:: bash
111111
112112
# for .tgz file
113-
$ tar zxvf Symfony_Standard_Vendors_2.1.###.tgz
113+
$ tar zxvf Symfony_Standard_Vendors_2.2.###.tgz
114114
115115
# for a .zip file
116-
$ unzip Symfony_Standard_Vendors_2.1.###.zip
116+
$ unzip Symfony_Standard_Vendors_2.2.###.zip
117117
118118
If you've downloaded "without vendors", you'll definitely need to read the
119119
next section.

‎components/using_components.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Using the Finder Component
2424
2525
{
2626
"require": {
27-
"symfony/finder": "2.1.*"
27+
"symfony/finder": "2.2.*"
2828
}
2929
}
3030
@@ -69,9 +69,9 @@ immediately::
6969
7070
{
7171
"require": {
72-
"symfony/finder": "2.1.*",
73-
"symfony/dom-crawler": "2.1.*",
74-
"symfony/css-selector": "2.1.*"
72+
"symfony/finder": "2.2.*",
73+
"symfony/dom-crawler": "2.2.*",
74+
"symfony/css-selector": "2.2.*"
7575
}
7676
}
7777
@@ -81,7 +81,7 @@ immediately::
8181
8282
{
8383
"require": {
84-
"symfony/symfony": "2.1.*"
84+
"symfony/symfony": "2.2.*"
8585
}
8686
}
8787

‎cookbook/form/form_customization.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -965,4 +965,4 @@ customizations directly. Look at the following example:
965965
The array passed as the second argument contains form "variables". For
966966
more details about this concept in Twig, see :ref:`twig-reference-form-variables`.
967967

968-
.. _`form_div_layout.html.twig`: https://github.com/symfony/symfony/blob/2.1/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig
968+
.. _`form_div_layout.html.twig`: https://github.com/symfony/symfony/blob/2.2/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig

‎quick_tour/the_big_picture.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ have a ``Symfony/`` directory that looks like this:
7676

7777
.. code-block:: bash
7878
79-
$ composer.phar create-project symfony/framework-standard-edition path/to/install dev-master
79+
$ composer.phar create-project symfony/framework-standard-edition path/to/install 2.2.0
8080
8181
# remove the Git history
8282
$ rm -rf .git
8383
84-
For an exact version, replace `dev-master` with the latest Symfony version
84+
For an exact version, replace `2.2.0` with the latest Symfony version
8585
(e.g. 2.1.1). For details, see the `Symfony Installation Page`_
8686

8787
.. tip::

‎reference/dic_tags.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,6 @@ For an example, see the ``EntityInitializer`` class inside the Doctrine Bridge.
808808

809809
.. _`Twig's documentation`: http://twig.sensiolabs.org/doc/advanced.html#creating-an-extension
810810
.. _`Twig official extension repository`: https://github.com/fabpot/Twig-extensions
811-
.. _`KernelEvents`: https://github.com/symfony/symfony/blob/2.1/src/Symfony/Component/HttpKernel/KernelEvents.php
811+
.. _`KernelEvents`: https://github.com/symfony/symfony/blob/2.2/src/Symfony/Component/HttpKernel/KernelEvents.php
812812
.. _`SwiftMailer's Plugin Documentation`: http://swiftmailer.org/docs/plugins.html
813813
.. _`Twig Loader`: http://twig.sensiolabs.org/doc/api.html#loaders

0 commit comments

Comments
 (0)