Skip to content

Commit 123d05f

Browse files
committed
Fix all broken links
1 parent 3c830bc commit 123d05f

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

book/doctrine.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ see the :ref:`book-doctrine-field-types` section.
362362
`Reserved SQL keywords documentation`_ on how to properly escape these
363363
names. Alternatively, if you're free to choose your database schema,
364364
simply map to a different table name or column name. See Doctrine's
365-
`Persistent classes`_ and `Property Mapping`_ documentation.
365+
`Creating Classes for the Database`_ and `Property Mapping`_ documentation.
366366

367367
.. note::
368368

@@ -1429,7 +1429,7 @@ For more information about Doctrine, see the *Doctrine* section of the
14291429
.. _`Property Mapping`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html#property-mapping
14301430
.. _`Lifecycle Events documentation`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/events.html#lifecycle-events
14311431
.. _`Reserved SQL keywords documentation`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html#quoting-reserved-words
1432-
.. _`Persistent classes`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html#persistent-classes
1432+
.. _`Creating Classes for the Database`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html#creating-classes-for-the-database
14331433
.. _`DoctrineMongoDBBundle`: https://symfony.com/doc/current/bundles/DoctrineMongoDBBundle/index.html
14341434
.. _`migrations`: https://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html
14351435
.. _`DoctrineFixturesBundle`: https://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html

book/http_fundamentals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,6 +578,6 @@ sensible defaults. For more advanced users, the sky is the limit.
578578
.. _`Live HTTP Headers`: https://addons.mozilla.org/en-US/firefox/addon/live-http-headers/
579579
.. _`List of HTTP status codes`: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
580580
.. _`List of HTTP header fields`: https://en.wikipedia.org/wiki/List_of_HTTP_header_fields
581-
.. _`List of common media types`: https://en.wikipedia.org/wiki/Internet_media_type#List_of_common_media_types
581+
.. _`List of common media types`: https://www.iana.org/assignments/media-types/media-types.xhtml
582582
.. _`Validator`: https://github.com/symfony/Validator
583583
.. _`Swift Mailer`: http://swiftmailer.org/

book/templating.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,9 +1025,9 @@ but Symfony provides a more dynamic option via the ``asset`` Twig function:
10251025
<link href="<?php echo $view['assets']->getUrl('css/blog.css') ?>" rel="stylesheet" />
10261026

10271027
The ``asset`` function's main purpose is to make your application more portable.
1028-
If your application lives at the root of your host (e.g. http://example.com),
1028+
If your application lives at the root of your host (e.g. ``http://example.com``),
10291029
then the rendered paths should be ``/images/logo.png``. But if your application
1030-
lives in a subdirectory (e.g. http://example.com/my_app), each asset path
1030+
lives in a subdirectory (e.g. ``http://example.com/my_app``), each asset path
10311031
should render with the subdirectory (e.g. ``/my_app/images/logo.png``). The
10321032
``asset`` function takes care of this by determining how your application is
10331033
being used and generating the correct paths accordingly.

cookbook/deployment/heroku.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ This is also very useful to build assets on the production system, e.g. with Ass
326326

327327
.. _`the original article`: https://devcenter.heroku.com/articles/getting-started-with-symfony2
328328
.. _`sign up with Heroku`: https://signup.heroku.com/signup/dc
329-
.. _`Heroku Toolbelt`: https://devcenter.heroku.com/articles/getting-started-with-php#local-workstation-setup
329+
.. _`Heroku Toolbelt`: https://devcenter.heroku.com/articles/getting-started-with-php#set-up
330330
.. _`getting Started with PHP on Heroku`: https://devcenter.heroku.com/articles/getting-started-with-php
331331
.. _`ephemeral file system`: https://devcenter.heroku.com/articles/dynos#ephemeral-filesystem
332332
.. _`Logplex`: https://devcenter.heroku.com/articles/logplex

cookbook/form/data_transformers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Suppose you have a Task form with a description ``textarea`` type::
4848
But, there are two complications:
4949

5050
#. Your users are allowed to use *some* HTML tags, but not others: you need a way
51-
to call :phpfunction:`striptags` after the form is submitted;
51+
to call :phpfunction:`strip_tags` after the form is submitted;
5252

5353
#. To be friendly, you want to convert ``<br/>`` tags into line breaks (``\n``) before
5454
rendering the field so the text is easier to edit.

cookbook/form/unit_testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,4 +263,4 @@ easily testing against multiple sets of data.
263263
You can also pass another argument, such as a boolean if the form has to
264264
be synchronized with the given set of data or not etc.
265265

266-
.. _`data providers`: http://www.phpunit.de/manual/current/en/writing-tests-for-phpunit.html#writing-tests-for-phpunit.data-providers
266+
.. _`data providers`: https://phpunit.de/manual/current/en/writing-tests-for-phpunit.html#writing-tests-for-phpunit.data-providers

cookbook/templating/PHP.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,4 +353,4 @@ instance, to output something in a JavaScript script, use the ``js`` context::
353353

354354
<?php echo $view->escape($var, 'js') ?>
355355

356-
.. _`@Template`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/view`
356+
.. _`@Template`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/view

cookbook/web_server/built_in.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ you have to pass the correct location using the ``--docroot`` option:
7474
$ php app/console server:run --docroot=public_html
7575
7676
.. _`built-in web server`: http://www.php.net/manual/en/features.commandline.webserver.php
77-
.. _`php.net`: http://php.net/manual/en/features.commandline.webserver.php#example-401
77+
.. _`php.net`: http://php.net/manual/en/features.commandline.webserver.php#example-411

create_framework/dependency-injection.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,5 @@ micro-framework, and especially its `Application`_ class.
239239
Have fun!
240240

241241
.. _`Pimple`: https://github.com/fabpot/Pimple
242-
.. _`Silex`: https://silex.sensiolabs.org/
242+
.. _`Silex`: http://silex.sensiolabs.org/
243243
.. _`Application`: https://github.com/fabpot/Silex/blob/master/src/Silex/Application.php

create_framework/http-foundation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ component is the start of better interoperability between all frameworks and
301301
applications using it (like `Symfony`_, `Drupal 8`_, `phpBB 4`_, `ezPublish
302302
5`_, `Laravel`_, `Silex`_, and `more`_).
303303

304-
.. _`Twig`: http://twig.sensiolabs.com/
304+
.. _`Twig`: http://twig.sensiolabs.org/
305305
.. _`Symfony versus Flat PHP`: http://symfony.com/doc/current/book/from_flat_php_to_symfony2.html
306306
.. _`HTTP specification`: http://tools.ietf.org/wg/httpbis/
307307
.. _`audited`: http://symfony.com/blog/symfony2-security-audit

0 commit comments

Comments
 (0)