Skip to content

Commit 507f29e

Browse files
committed
Use HTTPS to link to symfony.com when possible
1 parent 0607517 commit 507f29e

File tree

12 files changed

+20
-20
lines changed

12 files changed

+20
-20
lines changed

_build/_theme/_templates/layout.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{% extends '!layout.html' %}
22

3-
{% set css_files = ['http://symfony.com/css/compiled/v5/all.css?v=4'] %}
3+
{% set css_files = ['https://symfony.com/css/compiled/v5/all.css?v=4'] %}
44
{# make sure the Sphinx stylesheet isn't loaded #}
55
{% set style = '' %}
66
{% set isIndex = pagename is index %}
77

88
{% block extrahead %}
99
{# add JS to support tabs #}
10-
<script src="http://symfony.com/js/v5/all.js?v=4"></script>
10+
<script src="https://symfony.com/js/v5/all.js?v=4"></script>
1111

1212
{# pygment's styles are still loaded, undo some unwanted styles #}
1313
<style>
@@ -48,7 +48,7 @@ <h4>Pull request build</h4>
4848
<p>Each pull request of the Symfony Documentation is automatically deployed and hosted on <a href="https://platform.sh">Platform.sh</a>.<br>
4949
View this page on <a href="https://symfony.com/doc/current/{{ pagename }}">symfony.com</a>.</p>
5050
</div>
51-
51+
5252
{%- include "globaltoc.html" %}
5353

5454
{% if not isIndex %}
@@ -81,7 +81,7 @@ <h1 class="content_title">{{ title }}</h1>
8181
<a href="{{ next.link|e }}">{{ next.title|striptags|e }} »</a>
8282
</div>
8383
{% endif %}
84-
84+
8585
<div id="license">
8686
<p>This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">License</a>.</p>
8787
</div>

best_practices/security.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,6 @@ If your company uses a user login method not supported by Symfony, you can
369369
develop :doc:`your own user provider </security/custom_provider>` and
370370
:doc:`your own authentication provider </security/custom_authentication_provider>`.
371371

372-
.. _`ParamConverter`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
373-
.. _`@Security annotation`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/security.html
372+
.. _`ParamConverter`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
373+
.. _`@Security annotation`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/security.html
374374
.. _`FOSUserBundle`: https://github.com/FriendsOfSymfony/FOSUserBundle

components/options_resolver.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ the ``Mailer`` class makes a mistake?
9898
.. code-block:: php
9999
100100
$mailer = new Mailer(array(
101-
'usernme' => 'johndoe', // usernAme misspelled
101+
'usernme' => 'johndoe', // usernAme misspelled
102102
));
103103
104104
No error will be shown. In the best case, the bug will appear during testing,
@@ -403,7 +403,7 @@ is thrown::
403403
For options with more complicated validation schemes, pass a closure which
404404
returns ``true`` for acceptable values and ``false`` for invalid values::
405405

406-
406+
407407
// ...
408408
$resolver->setAllowedValues('transport', function ($value) {
409409
// return true or false
@@ -732,4 +732,4 @@ options in your code.
732732

733733
.. _Packagist: https://packagist.org/packages/symfony/options-resolver
734734
.. _CHANGELOG: https://github.com/symfony/symfony/blob/master/src/Symfony/Component/OptionsResolver/CHANGELOG.md#260
735-
.. _`read the Symfony 2.5 documentation`: http://symfony.com/doc/2.5/components/options_resolver.html
735+
.. _`read the Symfony 2.5 documentation`: https://symfony.com/doc/2.5/components/options_resolver.html

contributing/code/security.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Security Advisories
103103
This section indexes security vulnerabilities that were fixed in Symfony
104104
releases, starting from Symfony 1.0.0:
105105

106-
* May 9, 2016: `CVE-2016-2403: Unauthorized access on a misconfigured Ldap server when using an empty password <http://symfony.com/blog/cve-2016-2403-unauthorized-access-on-a-misconfigured-ldap-server-when-using-an-empty-password>`_ (2.8.0-2.8.5, 3.0.0-3.0.5)
106+
* May 9, 2016: `CVE-2016-2403: Unauthorized access on a misconfigured Ldap server when using an empty password <https://symfony.com/blog/cve-2016-2403-unauthorized-access-on-a-misconfigured-ldap-server-when-using-an-empty-password>`_ (2.8.0-2.8.5, 3.0.0-3.0.5)
107107
* May 9, 2016: `CVE-2016-4423: Large username storage in session <https://symfony.com/blog/cve-2016-4423-large-username-storage-in-session>`_ (2.3.0-2.3.40, 2.7.0-2.7.12, 2.8.0-2.8.5, 3.0.0-3.0.5)
108108
* January 18, 2016: `CVE-2016-1902: SecureRandom's fallback not secure when OpenSSL fails <https://symfony.com/blog/cve-2016-1902-securerandom-s-fallback-not-secure-when-openssl-fails>`_ (2.3.0-2.3.36, 2.6.0-2.6.12, 2.7.0-2.7.8)
109109
* November 23, 2015: `CVE-2015-8125: Potential Remote Timing Attack Vulnerability in Security Remember-Me Service <https://symfony.com/blog/cve-2015-8125-potential-remote-timing-attack-vulnerability-in-security-remember-me-service>`_ (2.3.35, 2.6.12 and 2.7.7)

contributing/community/reviews.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Pick a pull request from the `PRs in need of review`_ and follow these steps:
210210
.. _bug reports in need of review: https://github.com/symfony/symfony/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+label%3A%22Bug%22+label%3A%22Status%3A+Needs+Review%22+
211211
.. _PRs in need of review: https://github.com/symfony/symfony/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Apr+label%3A%22Status%3A+Needs+Review%22+
212212
.. _Contribution Guidelines: https://github.com/symfony/symfony/blob/master/CONTRIBUTING.md
213-
.. _Symfony's Release Schedule: http://symfony.com/doc/current/contributing/community/releases.html#schedule
213+
.. _Symfony's Release Schedule: https://symfony.com/doc/current/contributing/community/releases.html#schedule
214214
.. _Symfony Roadmap: https://symfony.com/roadmap
215215
.. _Carson Bot: https://github.com/carsonbot/carsonbot
216216
.. _`Needs Review`: https://github.com/symfony/symfony/labels/Status%3A%20Needs%20Review

contributing/documentation/translations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Translations
44
The Symfony documentation is not officially translated, though some community
55
groups still maintain some translations. For more information, see `this blog post`_.
66

7-
.. _`this blog post`: http://symfony.com/blog/discontinuing-the-symfony-community-translations
7+
.. _`this blog post`: https://symfony.com/blog/discontinuing-the-symfony-community-translations

create_framework/http_foundation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,8 +299,8 @@ applications using it (like `Symfony`_, `Drupal 8`_, `phpBB 4`_, `ezPublish
299299

300300
.. _`Twig`: http://twig.sensiolabs.org/
301301
.. _`HTTP specification`: http://tools.ietf.org/wg/httpbis/
302-
.. _`audited`: http://symfony.com/blog/symfony2-security-audit
303-
.. _`Symfony`: http://symfony.com/
302+
.. _`audited`: https://symfony.com/blog/symfony2-security-audit
303+
.. _`Symfony`: https://symfony.com/
304304
.. _`Drupal 8`: https://drupal.org/
305305
.. _`phpBB 4`: https://www.phpbb.com/
306306
.. _`ezPublish 5`: http://ez.no/
@@ -310,4 +310,4 @@ applications using it (like `Symfony`_, `Drupal 8`_, `phpBB 4`_, `ezPublish
310310
.. _`Zikula`: http://zikula.org/
311311
.. _`autoloaded`: http://php.net/autoload
312312
.. _`PSR-4`: http://www.php-fig.org/psr/psr-4/
313-
.. _`more`: http://symfony.com/components/HttpFoundation
313+
.. _`more`: https://symfony.com/components/HttpFoundation

create_framework/http_kernel_controller_resolver.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,4 @@ Think about it once more: our framework is more robust and more flexible than
195195
ever and it still has less than 40 lines of code.
196196

197197
.. _`reflection`: http://php.net/reflection
198-
.. _`FrameworkExtraBundle`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
198+
.. _`FrameworkExtraBundle`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html

create_framework/http_kernel_httpkernelinterface.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,6 @@ With the addition of a single interface, our framework can now benefit from
203203
the many features built into the HttpKernel component; HTTP caching being just
204204
one of them but an important one as it can make your applications fly!
205205

206-
.. _`HTTP caching`: http://symfony.com/doc/current/http_cache.html
206+
.. _`HTTP caching`: https://symfony.com/doc/current/http_cache.html
207207
.. _`ESI`: https://en.wikipedia.org/wiki/Edge_Side_Includes
208208
.. _`Varnish`: https://www.varnish-cache.org/

create_framework/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,6 @@ Otherwise, you can always use your own server (Apache, Nginx, etc.).
120120
In the :doc:`next chapter </create_framework/http_foundation>`, we are going to
121121
introduce the HttpFoundation Component and see what it brings us.
122122

123-
.. _`Symfony`: http://symfony.com/
123+
.. _`Symfony`: https://symfony.com/
124124
.. _`Silex`: http://silex.sensiolabs.org/
125125
.. _`Composer`: http://packagist.org/about-composer

doctrine/common_extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To do this, you have two options:
2323
with Symfony: `Install Gedmo Doctrine2 extensions in Symfony2`_
2424

2525
.. _`DoctrineExtensions`: https://github.com/Atlantic18/DoctrineExtensions
26-
.. _`StofDoctrineExtensionsBundle`: http://symfony.com/doc/master/bundles/StofDoctrineExtensionsBundle/index.html
26+
.. _`StofDoctrineExtensionsBundle`: https://symfony.com/doc/master/bundles/StofDoctrineExtensionsBundle/index.html
2727
.. _`Sluggable`: https://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/sluggable.md
2828
.. _`Translatable`: https://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/translatable.md
2929
.. _`Timestampable`: https://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/timestampable.md

routing/routing_from_database.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ loader, e.g. for another database type or a REST API or anything else.
3838
The DynamicRouter is explained in the `Symfony CMF documentation`_.
3939

4040
.. _FrameworkExtraBundle: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
41-
.. _`Symfony CMF documentation`: http://symfony.com/doc/master/cmf/book/routing.html
41+
.. _`Symfony CMF documentation`: https://symfony.com/doc/master/cmf/book/routing.html

0 commit comments

Comments
 (0)