Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[2.2] Updating some URLs from 2.1/master to 2.2 #2283

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 15, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions book/forms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1603,7 +1603,7 @@ Learn more from the Cookbook

.. _`Symfony2 Form Component`: https://github.com/symfony/Form
.. _`DateTime`: http://php.net/manual/en/class.datetime.php
.. _`Twig Bridge`: https://github.com/symfony/symfony/tree/master/src/Symfony/Bridge/Twig
.. _`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
.. _`Twig Bridge`: https://github.com/symfony/symfony/tree/2.2/src/Symfony/Bridge/Twig
.. _`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
.. _`Cross-site request forgery`: http://en.wikipedia.org/wiki/Cross-site_request_forgery
.. _`view on GitHub`: https://github.com/symfony/symfony/tree/master/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form
.. _`view on GitHub`: https://github.com/symfony/symfony/tree/2.2/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form
2 changes: 1 addition & 1 deletion book/from_flat_php_to_symfony2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ content:

{
"require": {
"symfony/symfony": "2.1.*"
"symfony/symfony": "2.2.*"
},
"autoload": {
"files": ["model.php","controllers.php"]
Expand Down
10 changes: 5 additions & 5 deletions book/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ Distribution:

.. code-block:: bash

php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony dev-master
php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony 2.2.0

.. tip::

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

.. tip::

Expand Down Expand Up @@ -110,10 +110,10 @@ one of the following commands (replacing ``###`` with your actual filename):
.. code-block:: bash

# for .tgz file
$ tar zxvf Symfony_Standard_Vendors_2.1.###.tgz
$ tar zxvf Symfony_Standard_Vendors_2.2.###.tgz

# for a .zip file
$ unzip Symfony_Standard_Vendors_2.1.###.zip
$ unzip Symfony_Standard_Vendors_2.2.###.zip

If you've downloaded "without vendors", you'll definitely need to read the
next section.
Expand Down
10 changes: 5 additions & 5 deletions components/using_components.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Using the Finder Component

{
"require": {
"symfony/finder": "2.1.*"
"symfony/finder": "2.2.*"
}
}

Expand Down Expand Up @@ -69,9 +69,9 @@ immediately::

{
"require": {
"symfony/finder": "2.1.*",
"symfony/dom-crawler": "2.1.*",
"symfony/css-selector": "2.1.*"
"symfony/finder": "2.2.*",
"symfony/dom-crawler": "2.2.*",
"symfony/css-selector": "2.2.*"
}
}

Expand All @@ -81,7 +81,7 @@ immediately::

{
"require": {
"symfony/symfony": "2.1.*"
"symfony/symfony": "2.2.*"
}
}

Expand Down
2 changes: 1 addition & 1 deletion cookbook/form/form_customization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -965,4 +965,4 @@ customizations directly. Look at the following example:
The array passed as the second argument contains form "variables". For
more details about this concept in Twig, see :ref:`twig-reference-form-variables`.

.. _`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
.. _`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
4 changes: 2 additions & 2 deletions quick_tour/the_big_picture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ have a ``Symfony/`` directory that looks like this:

.. code-block:: bash

$ composer.phar create-project symfony/framework-standard-edition path/to/install dev-master
$ composer.phar create-project symfony/framework-standard-edition path/to/install 2.2.0

# remove the Git history
$ rm -rf .git

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

.. tip::
Expand Down
2 changes: 1 addition & 1 deletion reference/dic_tags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,6 @@ For an example, see the ``EntityInitializer`` class inside the Doctrine Bridge.

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