Skip to content

Commit 1a45417

Browse files
committed
Fixing various broken or redirecting (because of permanent moves) links throughout the docs
1 parent fe6632b commit 1a45417

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

book/http_fundamentals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ sensible defaults. For more advanced users, the sky is the limit.
538538
.. _`xkcd`: http://xkcd.com/
539539
.. _`HTTP 1.1 RFC`: http://www.w3.org/Protocols/rfc2616/rfc2616.html
540540
.. _`HTTP Bis`: http://datatracker.ietf.org/wg/httpbis/
541-
.. _`Live HTTP Headers`: https://addons.mozilla.org/en-US/firefox/addon/3829/
541+
.. _`Live HTTP Headers`: https://addons.mozilla.org/en-US/firefox/addon/live-http-headers/
542542
.. _`List of HTTP status codes`: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
543543
.. _`List of HTTP header fields`: http://en.wikipedia.org/wiki/List_of_HTTP_header_fields
544544
.. _`List of common media types`: http://en.wikipedia.org/wiki/Internet_media_type#List_of_common_media_types

book/templating.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,4 +1347,4 @@ Learn more from the Cookbook
13471347
.. _`Output Escaping`: http://twig.sensiolabs.org/doc/api.html#escaper-extension
13481348
.. _`tags`: http://twig.sensiolabs.org/doc/tags/index.html
13491349
.. _`filters`: http://twig.sensiolabs.org/doc/filters/index.html
1350-
.. _`add your own extensions`: http://twig.sensiolabs.org/doc/extensions.html
1350+
.. _`add your own extensions`: http://twig.sensiolabs.org/doc/advanced.html#creating-an-extension

components/http_foundation/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ Downloading Files
366366
When uploading a file, you must add a ``Content-Disposition`` header to your
367367
response. While creating this header for basic file downloads is easy, using
368368
non-ASCII filenames is more involving. The
369-
:method:`:Symfony\\Component\\HttpFoundation\\Response:makeDisposition`
369+
:method:`Symfony\\Component\\HttpFoundation\\Response::makeDisposition`
370370
abstracts the hard work behind a simple API::
371371

372372
use Symfony\Component\HttpFoundation\ResponseHeaderBag;

components/templating.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Usage
2626

2727
The :class:`Symfony\\Component\\Templating\\PhpEngine` class is the entry point
2828
of the component. It needs a template name parser
29-
(:class:`Symfony\\Component\\templating\\TemplateNameParserInterface`) to
29+
(:class:`Symfony\\Component\\Templating\\TemplateNameParserInterface`) to
3030
convert a template name to a template reference and template loader
31-
(:class:`Symfony\\Component\\templating\\Loader\\LoaderInterface`) to find the
31+
(:class:`Symfony\\Component\\Templating\\Loader\\LoaderInterface`) to find the
3232
template associated to a reference.
3333

3434
use Symfony\Component\Templating\PhpEngine;
@@ -66,7 +66,7 @@ The template inheritance is designed to share layouts with many templates.
6666
</body>
6767
</html>
6868
69-
The :method:`Symfony\\Templating\\PhpEngine::extend` method is called in the
69+
The :method:`Symfony\\Component\\Templating\\PhpEngine::extend` method is called in the
7070
sub-template to set its parent template.
7171

7272
.. code-block:: php
@@ -83,7 +83,7 @@ sub-template to set its parent template.
8383
<?php echo $page->body ?>
8484
</p>
8585
86-
To use template inheritance, the :class:`Symfony\\Templating\\Helper\\SlotsHelper`
86+
To use template inheritance, the :class:`Symfony\\Component\\Templating\\Helper\\SlotsHelper`
8787
helper must be registered.
8888

8989
use Symfony\Templating\Helper\SlotsHelper;

cookbook/email/email.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,4 @@ of `Creating Messages`_ in great detail in its documentation.
130130
* :doc:`spool`
131131

132132
.. _`Swiftmailer`: http://www.swiftmailer.org/
133-
.. _`Creating Messages`: http://swiftmailer.org/docs/messages
133+
.. _`Creating Messages`: http://swiftmailer.org/docs/messages.html

reference/constraints/UniqueEntity.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using an email address that already exists in the system.
1414
+----------------+-------------------------------------------------------------------------------------+
1515
| Class | :class:`Symfony\\Bridge\\Doctrine\\Validator\\Constraints\\UniqueEntity` |
1616
+----------------+-------------------------------------------------------------------------------------+
17-
| Validator | :class:`Symfony\\Bridge\\Doctrine\\Validator\\Constraints\\UniqueEntity\\Validator` |
17+
| Validator | :class:`Symfony\\Bridge\\Doctrine\\Validator\\Constraints\\UniqueEntityValidator` |
1818
+----------------+-------------------------------------------------------------------------------------+
1919

2020
Basic Usage

reference/dic_tags.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ A form type extension can modify any part of any field in your form. To create
7777
a form type extension, first create a class that implements the
7878
:class:`Symfony\\Component\\Form\\FormTypeExtensionInterface` interface.
7979
For simplicity, you'll often extend an
80-
:class:`Symfony\\Component\\Form\\AbstractTypeExtension`` class instead of
80+
:class:`Symfony\\Component\\Form\\AbstractTypeExtension` class instead of
8181
the interface directly::
8282

8383
// src/Acme/MainBundle/Form/Type/MyFormTypeExtension.php
@@ -667,7 +667,7 @@ Then, tag it with the ``validator.initializer`` tag (it has no options).
667667

668668
For an example, see the ``EntityInitializer`` class inside the Doctrine Bridge.
669669

670-
.. _`Twig's documentation`: http://twig.sensiolabs.org/doc/extensions.html
670+
.. _`Twig's documentation`: http://twig.sensiolabs.org/doc/advanced.html#creating-an-extension
671671
.. _`Twig official extension repository`: http://github.com/fabpot/Twig-extensions
672672
.. _`KernelEvents`: https://github.com/symfony/symfony/blob/2.0/src/Symfony/Component/HttpKernel/KernelEvents.php
673673
.. _`SwiftMailer's Plugin Documentation`: http://swiftmailer.org/docs/plugins.html

0 commit comments

Comments
 (0)