Skip to content

Commit 21a984f

Browse files
committed
Fix all permanent redirects
1 parent 80186c3 commit 21a984f

Some content is hidden

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

53 files changed

+90
-91
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ For more information about Doctrine, see the *Doctrine* section of the
14181418
* `DoctrineMongoDBBundle`_
14191419

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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://en.wikipedia.org/wiki/Internet_media_type#List_of_common_media_types
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
@@ -403,7 +403,7 @@ a wide variety of articles about solving specific problems with Symfony.
403403
If you want to remove the sample code from your distribution, take a look
404404
at this cookbook article: ":doc:`/cookbook/bundles/remove`"
405405

406-
.. _`explained in this post`: http://fabien.potencier.org/article/73/signing-project-releases
406+
.. _`explained in this post`: http://fabien.potencier.org/signing-project-releases.html
407407
.. _`Composer`: https://getcomposer.org/
408408
.. _`Composer download page`: https://getcomposer.org/download/
409409
.. _`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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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
@@ -865,4 +865,4 @@ Learn more
865865
* :doc:`/cookbook/testing/bootstrap`
866866

867867
.. _`$_SERVER`: http://php.net/manual/en/reserved.variables.server.php
868-
.. _`documentation`: http://phpunit.de/manual/current/en/
868+
.. _`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/dependency_injection/lazy_services.rst

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

115115

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

components/dom_crawler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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
@@ -648,7 +648,7 @@ other dispatchers:
648648
* :doc:`/components/event_dispatcher/container_aware_dispatcher`
649649
* :doc:`/components/event_dispatcher/immutable_dispatcher`
650650

651-
.. _Mediator: http://en.wikipedia.org/wiki/Mediator_pattern
651+
.. _Mediator: https://en.wikipedia.org/wiki/Mediator_pattern
652652
.. _Closures: http://php.net/manual/en/functions.anonymous.php
653653
.. _PHP callable: http://www.php.net/manual/en/language.pseudo-types.php#language.types.callback
654654
.. _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/process.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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/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

contributing/code/license.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3636
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3737
THE SOFTWARE.
3838

39-
.. _Wikipedia: http://en.wikipedia.org/wiki/MIT_License
39+
.. _Wikipedia: https://en.wikipedia.org/wiki/MIT_License

contributing/code/patches.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -383,16 +383,16 @@ convert many commits to one commit. This is no longer necessary today, because
383383
Symfony project uses a proprietary tool which automatically squashes all commits
384384
before merging.
385385

386-
.. _ProGit: http://git-scm.com/book
387-
.. _GitHub: https://github.com/signup/free
388-
.. _`GitHub's Documentation`: https://help.github.com/articles/ignoring-files
389-
.. _Symfony repository: https://github.com/symfony/symfony
390-
.. _dev mailing-list: http://groups.google.com/group/symfony-devs
391-
.. _travis-ci.org: https://travis-ci.org/
392-
.. _`travis-ci.org status icon`: http://about.travis-ci.org/docs/user/status-images/
386+
.. _ProGit: http://git-scm.com/book
387+
.. _GitHub: https://github.com/join
388+
.. _`GitHub's Documentation`: https://help.github.com/articles/ignoring-files
389+
.. _Symfony repository: https://github.com/symfony/symfony
390+
.. _dev mailing-list: http://groups.google.com/group/symfony-devs
391+
.. _travis-ci.org: https://travis-ci.org/
392+
.. _`travis-ci.org status icon`: http://about.travis-ci.org/docs/user/status-images/
393393
.. _`travis-ci.org Getting Started Guide`: http://about.travis-ci.org/docs/user/getting-started/
394-
.. _`documentation repository`: https://github.com/symfony/symfony-docs
395-
.. _`fabbot`: http://fabbot.io
396-
.. _`PSR-1`: http://www.php-fig.org/psr/psr-1/
397-
.. _`PSR-2`: http://www.php-fig.org/psr/psr-2/
398-
.. _PHPUnit: https://phpunit.de/manual/current/en/installation.html
394+
.. _`documentation repository`: https://github.com/symfony/symfony-docs
395+
.. _`fabbot`: http://fabbot.io
396+
.. _`PSR-1`: http://www.php-fig.org/psr/psr-1/
397+
.. _`PSR-2`: http://www.php-fig.org/psr/psr-2/
398+
.. _PHPUnit: https://phpunit.de/manual/current/en/installation.html

contributing/code/standards.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,5 +192,5 @@ License
192192
.. _`PSR-1`: http://www.php-fig.org/psr/psr-1/
193193
.. _`PSR-2`: http://www.php-fig.org/psr/psr-2/
194194
.. _`PSR-4`: http://www.php-fig.org/psr/psr-4/
195-
.. _`identical comparison`: https://php.net/manual/en/language.operators.comparison.php
195+
.. _`identical comparison`: http://php.net/manual/en/language.operators.comparison.php
196196
.. _`Yoda conditions`: https://en.wikipedia.org/wiki/Yoda_conditions

contributing/documentation/standards.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ In addition, documentation follows these rules:
174174

175175
.. _`the Sphinx documentation`: http://sphinx-doc.org/rest.html#source-code
176176
.. _`Twig Coding Standards`: http://twig.sensiolabs.org/doc/coding_standards.html
177-
.. _`American English`: http://en.wikipedia.org/wiki/American_English
177+
.. _`American English`: https://en.wikipedia.org/wiki/American_English
178178
.. _`American English Oxford Dictionary`: http://www.oxforddictionaries.com/definition/american_english/
179-
.. _`headings and titles`: http://en.wikipedia.org/wiki/Letter_case#Headings_and_publication_titles
180-
.. _`Serial (Oxford) Commas`: http://en.wikipedia.org/wiki/Serial_comma
181-
.. _`nosism`: http://en.wikipedia.org/wiki/Nosism
179+
.. _`headings and titles`: https://en.wikipedia.org/wiki/Letter_case#Headings_and_publication_titles
180+
.. _`Serial (Oxford) Commas`: https://en.wikipedia.org/wiki/Serial_comma
181+
.. _`nosism`: https://en.wikipedia.org/wiki/Nosism

contributing/documentation/translations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ repository and apply changes to the translated documents as soon as possible.
8989
repositories as obsolete documentation is dangerous.
9090

9191
.. _`an ongoing discussion`: https://github.com/symfony/symfony-docs/issues/4078
92-
.. _Symfony docs mailing-list: http://groups.google.com/group/symfony-docs
92+
.. _Symfony docs mailing-list: https://groups.google.com/forum/#!forum/symfony-docs

cookbook/assetic/uglifyjs.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,6 @@ not in debug mode.
297297

298298
.. _`UglifyJS`: https://github.com/mishoo/UglifyJS
299299
.. _`UglifyCSS`: https://github.com/fmarcia/UglifyCSS
300-
.. _`Node.js`: http://nodejs.org/
301-
.. _`install Node.js`: http://nodejs.org/
302-
.. _`package.json`: http://package.json.nodejitsu.com/
300+
.. _`Node.js`: https://nodejs.org/
301+
.. _`install Node.js`: https://nodejs.org/
302+
.. _`package.json`: http://browsenpm.org/package.json

cookbook/assetic/yuicompressor.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,6 @@ apply this filter when debug mode is off.
163163
common config file. For details on applying filters by file extension,
164164
see :ref:`cookbook-assetic-apply-to`.
165165

166-
.. _`YUI Compressor`: http://developer.yahoo.com/yui/compressor/
166+
.. _`YUI Compressor`: http://yui.github.io/yuicompressor/
167167
.. _`Download the JAR`: https://github.com/yui/yuicompressor/releases
168-
.. _`no longer maintained by Yahoo`: http://www.yuiblog.com/blog/2013/01/24/yui-compressor-has-a-new-owner/
168+
.. _`no longer maintained by Yahoo`: http://yuiblog.com/blog/2013/01/24/yui-compressor-has-a-new-owner/

cookbook/bundles/configuration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,5 +396,5 @@ Assume the XSD file is called ``hello-1.0.xsd``, the schema location will be
396396
397397
.. _`FrameworkBundle Configuration`: https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php
398398
.. _`TwigBundle Configuration`: https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/TwigBundle/DependencyInjection/Configuration.php
399-
.. _`XML namespace`: http://en.wikipedia.org/wiki/XML_namespace
400-
.. _`XML schema`: http://en.wikipedia.org/wiki/XML_schema
399+
.. _`XML namespace`: https://en.wikipedia.org/wiki/XML_namespace
400+
.. _`XML schema`: https://en.wikipedia.org/wiki/XML_schema

cookbook/configuration/front_controllers_and_kernel.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,12 @@ loading the ``app/config/config_*environment*.yml`` file. You are, of course,
158158
free to implement this method differently if you need a more sophisticated
159159
way of loading your configuration.
160160

161-
.. _front controller: http://en.wikipedia.org/wiki/Front_Controller_pattern
161+
.. _front controller: https://en.wikipedia.org/wiki/Front_Controller_pattern
162162
.. _Symfony Standard Edition: https://github.com/symfony/symfony-standard
163163
.. _app.php: https://github.com/symfony/symfony-standard/blob/master/web/app.php
164164
.. _app_dev.php: https://github.com/symfony/symfony-standard/blob/master/web/app_dev.php
165165
.. _app/console: https://github.com/symfony/symfony-standard/blob/master/app/console
166166
.. _AppKernel: https://github.com/symfony/symfony-standard/blob/master/app/AppKernel.php
167-
.. _decorate: http://en.wikipedia.org/wiki/Decorator_pattern
167+
.. _decorate: https://en.wikipedia.org/wiki/Decorator_pattern
168168
.. _RewriteRule shipped with the Symfony Standard Edition: https://github.com/symfony/symfony-standard/blob/master/web/.htaccess
169-
.. _template methods: http://en.wikipedia.org/wiki/Template_method_pattern
169+
.. _template methods: https://en.wikipedia.org/wiki/Template_method_pattern

cookbook/configuration/web_server_configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,6 @@ The **minimum configuration** to get your application running under Nginx is:
307307
For advanced Nginx configuration options, read the official `Nginx documentation`_.
308308

309309
.. _`Apache documentation`: http://httpd.apache.org/docs/
310-
.. _`does not support Unix sockets`: https://issues.apache.org/bugzilla/show_bug.cgi?id=54101
310+
.. _`does not support Unix sockets`: https://bz.apache.org/bugzilla/show_bug.cgi?id=54101
311311
.. _`FastCgiExternalServer`: http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html#FastCgiExternalServer
312312
.. _`Nginx documentation`: http://wiki.nginx.org/Symfony

cookbook/deployment/heroku.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ This is also very useful to build assets on the production system, e.g. with Ass
336336
.. _`custom compile steps`: https://devcenter.heroku.com/articles/php-support#custom-compile-step
337337
.. _`custom Composer command`: https://getcomposer.org/doc/articles/scripts.md#writing-custom-commands
338338
.. _`Heroku buildpacks`: https://devcenter.heroku.com/articles/buildpacks
339-
.. _`multiple buildpack`: https://github.com/ddollar/heroku-buildpack-multi.git
339+
.. _`multiple buildpack`: https://github.com/ddollar/heroku-buildpack-multi
340340
.. _`Grunt`: http://gruntjs.com
341341
.. _`gulp`: http://gulpjs.com
342342
.. _`Heroku documentation`: https://devcenter.heroku.com/articles/custom-php-settings#nginx

cookbook/security/csrf_in_login_form.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,5 +180,5 @@ After this, you have protected your login form against CSRF attacks.
180180
),
181181
));
182182
183-
.. _`Cross-site request forgery`: http://en.wikipedia.org/wiki/Cross-site_request_forgery
184-
.. _`Forging Login Requests`: http://en.wikipedia.org/wiki/Cross-site_request_forgery#Forging_login_requests
183+
.. _`Cross-site request forgery`: https://en.wikipedia.org/wiki/Cross-site_request_forgery
184+
.. _`Forging Login Requests`: https://en.wikipedia.org/wiki/Cross-site_request_forgery#Forging_login_requests

0 commit comments

Comments
 (0)