8000 minor #5553 Fix all broken links/permanent redirects/removed anchors … · symfony/symfony-docs@5fe9ad3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5fe9ad3

Browse files
committed
minor #5553 Fix all broken links/permanent redirects/removed anchors (WouterJ)
This PR was merged into the 2.3 branch. Discussion ---------- Fix all broken links/permanent redirects/removed anchors Today, I discovered that Sphinx has a built-in link checker. I couldn't resist running it and fixing everything it found. It turns out that we had a lot of broken/permanently redirected links. | Q | A | --- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3+ | Fixed tickets | - Commits ------- 185dfbf Remove sf-doc mailing list link 80a560f Inline links to Symfony docs a858888 Fix all invalid API doc links 123d05f Fix all broken links 3c830bc Fix all permanent redirects 09b3b1b Create your own Framework tutorial is moved to the docs
2 parents 8f71ce7 + 185dfbf commit 5fe9ad3

File tree

74 files changed

+143
-155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+143
-155
lines changed

best_practices/business-logic.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ were defined by the PHP community. You can learn more about
333333
use the `PHP-CS-Fixer`_, which is a command-line utility that can fix the
334334
coding standards of an entire codebase in a matter of seconds.
335335

336-
.. _`full definition`: http://en.wikipedia.org/wiki/Business_logic
336+
.. _`full definition`: https://en.wikipedia.org/wiki/Business_logic
337337
.. _`Doctrine project`: http://www.doctrine-project.org/
338338
.. _`fixture class`: https://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html#writing-simple-fixtures
339339
.. _`PSR-1`: http://www.php-fig.org/psr/psr-1/

best_practices/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,5 +180,5 @@ that you store them outside the Symfony project and make them available
180180
through environment variables. Learn how to do it in the following article:
181181
:doc:`/cookbook/configuration/external_parameters`
182182

183-
.. _`feature toggles`: http://en.wikipedia.org/wiki/Feature_toggle
183+
.. _`feature toggles`: https://en.wikipedia.org/wiki/Feature_toggle
184184
.. _`constant() function`: http://twig.sensiolabs.org/doc/functions/constant.html

best_practices/creating-the-project.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,4 @@ the Symfony directory structure.
177177
.. _`Get Started`: https://getcomposer.org/doc/00-intro.md
178178
.. _`Composer download page`: https://getcomposer.org/download/
179179
.. _`public checksums repository`: https://github.com/sensiolabs/checksums
180-
.. _`these steps`: http://fabien.potencier.org/article/73/signing-project-releases
180+
.. _`these steps`: http://fabien.potencier.org/signing-project-releases.html

best_practices/tests.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@ for your test fixtures.
121121
.. _`PhpUnit`: https://phpunit.de/
122122
.. _`PhpSpec`: http://www.phpspec.net/
123123
.. _`Mink`: http://mink.behat.org
124-
.. _`smoke testing`: http://en.wikipedia.org/wiki/Smoke_testing_(software)
124+
.. _`smoke testing`: https://en.wikipedia.org/wiki/Smoke_testing_(software)

book/doctrine.rst

Lines changed: 3 additions & 3 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

@@ -1420,7 +1420,7 @@ For more information about Doctrine, see the *Doctrine* section of the
14201420
* `DoctrineMongoDBBundle`_
14211421

14221422
.. _`Doctrine`: http://www.doctrine-project.org/
1423-
.. _`MongoDB`: http://www.mongodb.org/
1423+
.. _`MongoDB`: https://www.mongodb.org/
14241424
.. _`Basic Mapping Documentation`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html
14251425
.. _`Query Builder`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/query-builder.html
14261426
.. _`Doctrine Query Language`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/dql-doctrine-query-language.html
@@ -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/forms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1963,5 +1963,5 @@ Learn more from the Cookbook
19631963
.. _`DateTime`: http://php.net/manual/en/class.datetime.php
19641964
.. _`Twig Bridge`: https://github.com/symfony/symfony/tree/2.3/src/Symfony/Bridge/Twig
19651965
.. _`form_div_layout.html.twig`: https://github.com/symfony/symfony/blob/2.3/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig
1966-
.. _`Cross-site request forgery`: http://en.wikipedia.org/wiki/Cross-site_request_forgery
1966+
.. _`Cross-site request forgery`: https://en.wikipedia.org/wiki/Cross-site_request_forgery
19671967
.. _`view on GitHub`: https://github.com/symfony/symfony/tree/2.3/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form

book/from_flat_php_to_symfony2.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,8 @@ As it stands now, that code would need to be added to every controller file.
320320
If you forget to include something in one file, hopefully it doesn't relate
321321
to security...
322322

323+
.. _book-from_flat_php-front-controller:
324+
323325
A "Front Controller" to the Rescue
324326
----------------------------------
325327

book/http_cache.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ doing so much work.
627627

628628
Symfony also supports weak ETags by passing ``true`` as the second
629629
argument to the
630-
:method:`Symfony\\Component\\HttpFoundation\\Response::setETag` method.
630+
:method:`Symfony\\Component\\HttpFoundation\\Response::setEtag` method.
631631

632632
.. index::
633633
single: Cache; Last-Modified header
@@ -1244,7 +1244,7 @@ Learn more from the Cookbook
12441244

12451245
* :doc:`/cookbook/cache/varnish`
12461246

1247-
.. _`Things Caches Do`: http://tomayko.com/writings/things-caches-do
1247+
.. _`Things Caches Do`: http://2ndscale.com/writings/things-caches-do
12481248
.. _`Cache Tutorial`: http://www.mnot.net/cache_docs/
12491249
.. _`Varnish`: https://www.varnish-cache.org/
12501250
.. _`Squid in reverse proxy mode`: http://wiki.squid-cache.org/SquidFaq/ReverseProxy

book/http_fundamentals.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -576,8 +576,8 @@ sensible defaults. For more advanced users, the sky is the limit.
576576
.. _`HTTP 1.1 RFC`: http://www.w3.org/Protocols/rfc2616/rfc2616.html
577577
.. _`HTTP Bis`: http://datatracker.ietf.org/wg/httpbis/
578578
.. _`Live HTTP Headers`: https://addons.mozilla.org/en-US/firefox/addon/live-http-headers/
579-
.. _`List of HTTP status codes`: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
580-
.. _`List of HTTP header fields`: http://en.wikipedia.org/wiki/List_of_HTTP_header_fields
581-
.. _`List of common media types`: http://en.wikipedia.org/wiki/Internet_media_type#List_of_common_media_types
579+
.. _`List of HTTP status codes`: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
580+
.. _`List of HTTP header fields`: https://en.wikipedia.org/wiki/List_of_HTTP_header_fields
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/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ need in your new application.
394394
Be sure to also check out the :doc:`Cookbook </cookbook/index>`, which contains
395395
a wide variety of articles about solving specific problems with Symfony.
396396

397-
.. _`explained in this post`: http://fabien.potencier.org/article/73/signing-project-releases
397+
.. _`explained in this post`: http://fabien.potencier.org/signing-project-releases.html
398398
.. _`Composer`: https://getcomposer.org/
399399
.. _`Composer download page`: https://getcomposer.org/download/
400400
.. _`Apache`: http://httpd.apache.org/docs/current/mod/core.html#documentroot

book/performance.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ file since there will be fewer files to monitor for changes. Of course if this
139139
feature is disabled in the byte code cache (e.g. ``apc.stat=0`` in APC), there
140140
is no longer a reason to use a bootstrap file.
141141

142-
.. _`byte code caches`: http://en.wikipedia.org/wiki/List_of_PHP_accelerators
142+
.. _`byte code caches`: https://en.wikipedia.org/wiki/List_of_PHP_accelerators
143143
.. _`OPcache`: http://php.net/manual/en/book.opcache.php
144144
.. _`APC`: http://php.net/manual/en/book.apc.php
145145
.. _`autoload.php`: https://github.com/symfony/symfony-standard/blob/master/app/autoload.php
146-
.. _`bootstrap file`: https://github.com/sensio/SensioDistributionBundle/blob/master/Composer/ScriptHandler.php
146+
.. _`bootstrap file`: https://github.com/sensiolabs/SensioDistributionBundle/blob/master/Composer/ScriptHandler.php

book/service_container.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1020,4 +1020,4 @@ Learn more
10201020
* :doc:`/cookbook/service_container/compiler_passes`
10211021
* :doc:`/components/dependency_injection/advanced`
10221022

1023-
.. _`service-oriented architecture`: http://wikipedia.org/wiki/Service-oriented_architecture
1023+
.. _`service-oriented architecture`: https://en.wikipedia.org/wiki/Service-oriented_architecture

book/templating.rst

Lines changed: 4 additions & 4 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.
@@ -1640,12 +1640,12 @@ Learn more from the Cookbook
16401640

16411641
.. _`Twig`: http://twig.sensiolabs.org
16421642
.. _`KnpBundles.com`: http://knpbundles.com
1643-
.. _`Cross Site Scripting`: http://en.wikipedia.org/wiki/Cross-site_scripting
1643+
.. _`Cross Site Scripting`: https://en.wikipedia.org/wiki/Cross-site_scripting
16441644
.. _`Output Escaping`: http://twig.sensiolabs.org/doc/api.html#escaper-extension
16451645
.. _`tags`: http://twig.sensiolabs.org/doc/tags/index.html
16461646
.. _`filters`: http://twig.sensiolabs.org/doc/filters/index.html
16471647
.. _`add your own extensions`: http://twig.sensiolabs.org/doc/advanced.html#creating-an-extension
1648-
.. _`hinclude.js`: http://mnot.github.com/hinclude/
1648+
.. _`hinclude.js`: http://mnot.github.io/hinclude/
16491649
.. _`with_context`: http://twig.sensiolabs.org/doc/functions/include.html
16501650
.. _`include() function`: http://twig.sensiolabs.org/doc/functions/include.html
16511651
.. _`{% include %} tag`: http://twig.sensiolabs.org/doc/tags/include.html

book/testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -866,4 +866,4 @@ Learn more
866866
* :doc:`/cookbook/testing/bootstrap`
867867

868868
.. _`$_SERVER`: http://php.net/manual/en/reserved.variables.server.php
869-
.. _`documentation`: http://phpunit.de/manual/current/en/
869+
.. _`documentation`: https://phpunit.de/manual/current/en/

book/translation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -714,8 +714,8 @@ steps:
714714
* Manage the user's locale, which is stored on the request, but can also
715715
be set on the user's session.
716716

717-
.. _`i18n`: http://en.wikipedia.org/wiki/Internationalization_and_localization
718-
.. _`ISO 3166-1 alpha-2`: http://en.wikipedia.org/wiki/ISO_3166-1#Current_codes
719-
.. _`ISO 639-1`: http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
717+
.. _`i18n`: https://en.wikipedia.org/wiki/Internationalization_and_localization
718+
.. _`ISO 3166-1 alpha-2`: https://en.wikipedia.org/wiki/ISO_3166-1#Current_codes
719+
.. _`ISO 639-1`: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
720720
.. _`Translatable Extension`: https://github.com/l3pp4rd/DoctrineExtensions
721721
.. _`Translatable Behavior`: https://github.com/KnpLabs/DoctrineBehaviors

components/config/definition.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ Numeric Node Constraints
119119
The numeric (float and integer) nodes were introduced in Symfony 2.2.
120120

121121
Numeric nodes (float and integer) provide two extra constraints -
122-
:method:`Symfony\\Component\\Config\\Definition\\Builder::min` and
123-
:method:`Symfony\\Component\\Config\\Definition\\Builder::max` -
124-
allowing to validate the value::
122+
:method:`Symfony\\Component\\Config\\Definition\\Builder\\IntegerNodeDefinition::min`
123+
and :method:`Symfony\\Component\\Config\\Definition\\Builder\\IntegerNodeDefinition::max`
124+
- allowing to validate the value::
125125

126126
$rootNode
127127
->children()

components/dependency_injection/lazy_services.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,5 +115,5 @@ in the `documentation of ProxyManager`_.
115115

116116

117117
.. _`ProxyManager bridge`: https://github.com/symfony/symfony/tree/master/src/Symfony/Bridge/ProxyManager
118-
.. _`proxy`: http://en.wikipedia.org/wiki/Proxy_pattern
118+
.. _`proxy`: https://en.wikipedia.org/wiki/Proxy_pattern
119119
.. _`documentation of ProxyManager`: https://github.com/Ocramius/ProxyManager/blob/master/docs/lazy-loading-value-holder.md

components/dom_crawler.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ The crawler supports multiple ways of adding the content::
188188
.. note::
189189

190190
When dealing with character sets other than ISO-8859-1, always add HTML
191-
content using the :method:`Symfony\\Component\\DomCrawler\\Crawler::addHTMLContent`
191+
content using the :method:`Symfony\\Component\\DomCrawler\\Crawler::addHtmlContent`
192192
method where you can specify the second parameter to be your target character
193193
set.
194194

@@ -385,5 +385,5 @@ directly::
385385
// submit that form
386386
$crawler = $client->submit($form);
387387

388-
.. _`Goutte`: https://github.com/fabpot/goutte
388+
.. _`Goutte`: https://github.com/FriendsOfPHP/Goutte
389389
.. _Packagist: https://packagist.org/packages/symfony/dom-crawler

components/event_dispatcher/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ with 2 other dispatchers:
652652
* :doc:`/components/event_dispatcher/container_aware_dispatcher`
653653
* :doc:`/components/event_dispatcher/immutable_dispatcher`
654654

655-
.. _Mediator: http://en.wikipedia.org/wiki/Mediator_pattern
655+
.. _Mediator: https://en.wikipedia.org/wiki/Mediator_pattern
656656
.. _Closures: http://php.net/manual/en/functions.anonymous.php
657657
.. _PHP callable: http://www.php.net/manual/en/language.pseudo-types.php#language.types.callback
658658
.. _Packagist: https://packagist.org/packages/symfony/event-dispatcher

components/form/introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ factory.
6363

6464
.. tip::
6565

66-
For a working example, see https://github.com/bschussek/standalone-forms
66+
For a working example, see https://github.com/webmozart/standalone-forms
6767

6868
Request Handling
6969
~~~~~~~~~~~~~~~~
@@ -692,5 +692,5 @@ object::
692692
an error was originally attached to.
693693

694694
.. _Packagist: https://packagist.org/packages/symfony/form
695-
.. _Twig: http://twig.sensiolabs.org
695+
.. _Twig: http://twig.sensiolabs.org
696696
.. _`Twig Configuration`: http://twig.sensiolabs.org/doc/intro.html

components/http_foundation/session_testing.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ The mock storage drivers do not read or write the system globals
2121
``session_id()`` or ``session_name()``. Methods are provided to simulate this if
2222
required:
2323

24-
* :method:`Symfony\\Component\\HttpFoundation\\Session\\SessionStorageInterface::getId`: Gets the
24+
* :method:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\SessionStorageInterface::getId`: Gets the
2525
session ID.
2626

27-
* :method:`Symfony\\Component\\HttpFoundation\\Session\\SessionStorageInterface::setId`: Sets the
27+
* :method:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\SessionStorageInterface::setId`: Sets the
2828
session ID.
2929

30-
* :method:`Symfony\\Component\\HttpFoundation\\Session\\SessionStorageInterface::getName`: Gets the
30+
* :method:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\SessionStorageInterface::getName`: Gets the
3131
session name.
3232

33-
* :method:`Symfony\\Component\\HttpFoundation\\Session\\SessionStorageInterface::setName`: Sets the
33+
* :method:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\SessionStorageInterface::setName`: Sets the
3434
session name.
3535

3636
Unit Testing

components/http_foundation/sessions.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,6 @@ has a simple API
226226
:method:`Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBagInterface::has`
227227
Returns true if the attribute exists.
228228

229-
:method:`Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBagInterface::keys`
230-
Returns an array of stored attribute keys.
231-
232229
:method:`Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBagInterface::replace`
233230
Sets multiple attributes at once: takes a keyed array and sets each key => value pair.
234231

components/http_kernel/introduction.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ See ":ref:`http-kernel-working-example`" for a more concrete implementation.
118118
For general information on adding listeners to the events below, see
119119
:ref:`http-kernel-creating-listener`.
120120

121-
.. tip::
121+
.. seealso::
122122

123-
Fabien Potencier also wrote a wonderful series on using the HttpKernel
124-
component and other Symfony components to create your own framework. See
125-
`Create your own framework... on top of the Symfony2 Components`_.
123+
There is a wonderful tutorial series on using the HttpKernel component and
124+
other Symfony components to create your own framework. See
125+
:doc:`/create_framework/introduction`.
126126

127127
.. _component-http-kernel-kernel-request:
128128

components/process.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ To make your code work better on all platforms, you might want to use the
158158
method was introduced in Symfony 2.3.
159159

160160
In case you are building a binary driver, you can use the
161-
:method:`Symfony\\Component\\Process\\Process::setPrefix` method to prefix all
161+
:method:`Symfony\\Component\\Process\\ProcessBuilder::setPrefix` method to prefix all
162162
the generated process commands.
163163

164164
The following example will generate two process commands for a tar binary
@@ -194,7 +194,7 @@ timeout (in seconds)::
194194
$process->run();
195195

196196
If the timeout is reached, a
197-
:class:`Symfony\\Process\\Exception\\RuntimeException` is thrown.
197+
:class:`Symfony\\Component\\Process\\Exception\\RuntimeException` is thrown.
198198

199199
For long running commands, it is your responsibility to perform the timeout
200200
check regularly::
@@ -265,7 +265,7 @@ You can access the `pid`_ of a running process with the
265265

266266
.. _`Symfony Issue#5759`: https://github.com/symfony/symfony/issues/5759
267267
.. _`PHP Bug#39992`: https://bugs.php.net/bug.php?id=39992
268-
.. _`exec`: http://en.wikipedia.org/wiki/Exec_(operating_system)
269-
.. _`pid`: http://en.wikipedia.org/wiki/Process_identifier
268+
.. _`exec`: https://en.wikipedia.org/wiki/Exec_(operating_system)
269+
.. _`pid`: https://en.wikipedia.org/wiki/Process_identifier
270270
.. _`PHP Documentation`: http://php.net/manual/en/pcntl.constants.php
271271
.. _Packagist: https://packagist.org/packages/symfony/process

components/security/authentication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Each provider (since it implements
101101
has a method :method:`Symfony\\Component\\Security\\Core\\Authentication\\Provider\\AuthenticationProviderInterface::supports`
102102
by which the ``AuthenticationProviderManager``
103103
can determine if it supports the given token. If this is the case, the
104-
manager then calls the provider's method :class:`Symfony\\Component\\Security\\Core\\Authentication\\Provider\\AuthenticationProviderInterface::authenticate`.
104+
manager then calls the provider's method :method:`Symfony\\Component\\Security\\Core\\Authentication\\Provider\\AuthenticationProviderInterface::authenticate`.
105105
This method should return an authenticated token or throw an
106106
:class:`Symfony\\Component\\Security\\Core\\Exception\\AuthenticationException`
107107
(or any other exception extending it).

components/security/authorization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Roles
177177

178178
Roles are objects that give expression to a certain right the user has.
179179
The only requirement is that they implement :class:`Symfony\\Component\\Security\\Core\\Role\\RoleInterface`,
180-
which means they should also have a :method:`Symfony\\Component\\Security\\Core\\Role\\Role\\RoleInterface::getRole`
180+
which means they should also have a :method:`Symfony\\Component\\Security\\Core\\Role\\RoleInterface::getRole`
181181
method that returns a string representation of the role itself. The default
182182
:class:`Symfony\\Component\\Security\\Core\\Role\\Role` simply returns its
183183
first constructor argument::

components/security/secure_tools.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ to work correctly. Just pass a file name to enable it::
6767
solution is to hash the value returned by ``nextBytes()`` (to do that, you
6868
can use a simple ``md5()`` PHP function).
6969

70-
.. _`Timing attack`: http://en.wikipedia.org/wiki/Timing_attack
70+
.. _`Timing attack`: https://en.wikipedia.org/wiki/Timing_attack

components/translation/introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,5 +215,5 @@ Usage
215215
Read how to use the Translation component in :doc:`/components/translation/usage`.
216216

217217
.. _Packagist: https://packagist.org/packages/symfony/translation
218-
.. _`ISO 3166-1 alpha-2`: http://en.wikipedia.org/wiki/ISO_3166-1#Current_codes
219-
.. _`ISO 639-1`: http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
218+
.. _`ISO 3166-1 alpha-2`: https://en.wikipedia.org/wiki/ISO_3166-1#Current_codes
219+
.. _`ISO 639-1`: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes

components/translation/usage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,5 +369,5 @@ use for translation::
369369
'fr_FR'
370370
);
371371

372-
.. _`L10n`: http://en.wikipedia.org/wiki/Internationalization_and_localization
373-
.. _`ISO 31-11`: http://en.wikipedia.org/wiki/Interval_(mathematics)#Notations_for_intervals
372+
.. _`L10n`: https://en.wikipedia.org/wiki/Internationalization_and_localization
373+
.. _`ISO 31-11`: https://en.wikipedia.org/wiki/Interval_(mathematics)#Notations_for_intervals

0 commit comments

Comments
 (0)
0