From e30b430c148fb72071afb84ef9558306e99c9c31 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 29 Jun 2015 21:33:00 +0200 Subject: [PATCH] use HTTPS for links to symfony.com --- CONTRIBUTING.md | 4 +- README.markdown | 6 +-- best_practices/business-logic.rst | 2 +- best_practices/controllers.rst | 2 +- best_practices/introduction.rst | 2 +- book/doctrine.rst | 12 ++--- book/http_cache.rst | 2 +- book/security.rst | 2 +- components/http_kernel/introduction.rst | 6 +-- components/security/authentication.rst | 2 +- contributing/code/bugs.rst | 2 +- contributing/code/security.rst | 62 ++++++++++++------------ contributing/community/releases.rst | 8 +-- contributing/documentation/overview.rst | 2 +- contributing/documentation/standards.rst | 2 +- cookbook/controller/error_pages.rst | 7 ++- cookbook/controller/service.rst | 2 +- cookbook/doctrine/registration_form.rst | 2 +- cookbook/security/entity_provider.rst | 6 +-- cookbook/templating/PHP.rst | 2 +- cookbook/workflow/new_project_git.rst | 2 +- cookbook/workflow/new_project_svn.rst | 2 +- reference/configuration/framework.rst | 2 +- 23 files changed, 70 insertions(+), 71 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 278f7c2c39c..da449d7c265 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,6 +2,6 @@ Contributing ------------ We love contributors! For more information on how you can contribute to the -Symfony documentation, please read [Contributing to the Documentation](http://symfony.com/doc/current/contributing/documentation/overview.html) -and notice the [Pull Request Format](http://symfony.com/doc/current/contributing/documentation/overview.html#pull-request-format) +Symfony documentation, please read [Contributing to the Documentation](https://symfony.com/doc/current/contributing/documentation/overview.html) +and notice the [Pull Request Format](https://symfony.com/doc/current/contributing/documentation/overview.html#pull-request-format) that helps us merge your pull requests faster! diff --git a/README.markdown b/README.markdown index 9e17f5d4b7f..98cc5d386f5 100644 --- a/README.markdown +++ b/README.markdown @@ -1,16 +1,16 @@ Symfony Documentation ===================== -This documentation is rendered online at http://symfony.com/doc/current/ +This documentation is rendered online at https://symfony.com/doc/current/ Contributing ------------ >**Note** ->Unless you're documenting a feature that was introduced *after* Symfony 2.3 +>Unless you're documenting a feature that was introduced *after* Symfony 2.3 >(e.g. in Symfony 2.4), all pull requests must be based off of the **2.3** branch, >**not** the master or older branches. We love contributors! For more information on how you can contribute to the Symfony documentation, please read -[Contributing to the Documentation](http://symfony.com/doc/current/contributing/documentation/overview.html) +[Contributing to the Documentation](https://symfony.com/doc/current/contributing/documentation/overview.html) diff --git a/best_practices/business-logic.rst b/best_practices/business-logic.rst index ecfd9f276c8..394125f6d05 100644 --- a/best_practices/business-logic.rst +++ b/best_practices/business-logic.rst @@ -335,7 +335,7 @@ coding standards of an entire codebase in a matter of seconds. .. _`full definition`: http://en.wikipedia.org/wiki/Business_logic .. _`Doctrine project`: http://www.doctrine-project.org/ -.. _`fixture class`: http://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html#writing-simple-fixtures +.. _`fixture class`: https://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html#writing-simple-fixtures .. _`PSR-1`: http://www.php-fig.org/psr/psr-1/ .. _`PSR-2`: http://www.php-fig.org/psr/psr-2/ .. _`PHP-CS-Fixer`: https://github.com/FriendsOfPHP/PHP-CS-Fixer diff --git a/best_practices/controllers.rst b/best_practices/controllers.rst index 406d1b63c5d..8764de69c43 100644 --- a/best_practices/controllers.rst +++ b/best_practices/controllers.rst @@ -210,4 +210,4 @@ If you need to execute some code before or after the execution of your controlle you can use the EventDispatcher component to :doc:`set up before and after filters `. -.. _`ParamConverter`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html +.. _`ParamConverter`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html diff --git a/best_practices/introduction.rst b/best_practices/introduction.rst index cd7c0a655f4..2c5661c6671 100644 --- a/best_practices/introduction.rst +++ b/best_practices/introduction.rst @@ -103,4 +103,4 @@ practices**. The reasons for not doing it are various: your tests or adding features that provide real value to the end users. .. _`Fabien Potencier`: https://connect.sensiolabs.com/profile/fabpot -.. _`download and install`: http://symfony.com/download +.. _`download and install`: https://symfony.com/download diff --git a/book/doctrine.rst b/book/doctrine.rst index 63c15079822..304edfc43bf 100644 --- a/book/doctrine.rst +++ b/book/doctrine.rst @@ -435,7 +435,7 @@ mapping information) of a bundle or an entire namespace: # generates all entities in the AppBundle $ php app/console doctrine:generate:entities AppBundle - + # generates all entities of bundles in the Acme namespace $ php app/console doctrine:generate:entities Acme @@ -651,7 +651,7 @@ to easily fetch objects based on multiple conditions:: If you click the icon, the profiler will open, showing you the exact queries that were made. - + The icon will turn yellow if there were more than 50 queries on the page. This could indicate that something is not correct. @@ -1428,8 +1428,8 @@ For more information about Doctrine, see the *Doctrine* section of the .. _`Lifecycle Events documentation`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/events.html#lifecycle-events .. _`Reserved SQL keywords documentation`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html#quoting-reserved-words .. _`Persistent classes`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html#persistent-classes -.. _`DoctrineMongoDBBundle`: http://symfony.com/doc/current/bundles/DoctrineMongoDBBundle/index.html -.. _`migrations`: http://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html -.. _`DoctrineFixturesBundle`: http://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html -.. _`FrameworkExtraBundle documentation`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html +.. _`DoctrineMongoDBBundle`: https://symfony.com/doc/current/bundles/DoctrineMongoDBBundle/index.html +.. _`migrations`: https://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html +.. _`DoctrineFixturesBundle`: https://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html +.. _`FrameworkExtraBundle documentation`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html .. _`newer utf8mb4 character set`: https://dev.mysql.com/doc/refman/5.5/en/charset-unicode-utf8mb4.html diff --git a/book/http_cache.rst b/book/http_cache.rst index 8d7332d8d8b..489c88e482a 100644 --- a/book/http_cache.rst +++ b/book/http_cache.rst @@ -1254,6 +1254,6 @@ Learn more from the Cookbook .. _`HTTP Bis`: http://tools.ietf.org/wg/httpbis/ .. _`P4 - Conditional Requests`: http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional .. _`P6 - Caching: Browser and intermediary caches`: http://tools.ietf.org/html/draft-ietf-httpbis-p6-cache -.. _`FrameworkExtraBundle documentation`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/cache.html +.. _`FrameworkExtraBundle documentation`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/cache.html .. _`ESI`: http://www.w3.org/TR/esi-lang .. _`FOSHttpCacheBundle`: http://foshttpcachebundle.readthedocs.org/ diff --git a/book/security.rst b/book/security.rst index 9bfe3c2809a..e99e70b6a6b 100644 --- a/book/security.rst +++ b/book/security.rst @@ -1287,5 +1287,5 @@ Learn More from the Cookbook * :doc:`/cookbook/security/multiple_user_providers` .. _`online tool`: https://www.dailycred.com/blog/12/bcrypt-calculator -.. _`frameworkextrabundle documentation`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html +.. _`frameworkextrabundle documentation`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html .. _`HWIOAuthBundle`: https://github.com/hwi/HWIOAuthBundle diff --git a/components/http_kernel/introduction.rst b/components/http_kernel/introduction.rst index a75ff31aeb6..ae3cf59fcef 100644 --- a/components/http_kernel/introduction.rst +++ b/components/http_kernel/introduction.rst @@ -708,7 +708,7 @@ look like this:: .. _FOSRestBundle: https://github.com/friendsofsymfony/FOSRestBundle .. _`Create your own framework... on top of the Symfony2 Components`: http://fabien.potencier.org/article/50/create-your-own-framework-on-top-of-the-symfony2-components-part-1 .. _`PHP FPM`: http://php.net/manual/en/install.fpm.php -.. _`SensioFrameworkExtraBundle`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html -.. _`@ParamConverter`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html -.. _`@Template`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/view.html +.. _`SensioFrameworkExtraBundle`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html +.. _`@ParamConverter`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html +.. _`@Template`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/view.html .. _`EmailSenderListener`: https://github.com/symfony/SwiftmailerBundle/blob/master/EventListener/EmailSenderListener.php diff --git a/components/security/authentication.rst b/components/security/authentication.rst index f07ed016c13..ddee75e221e 100644 --- a/components/security/authentication.rst +++ b/components/security/authentication.rst @@ -268,5 +268,5 @@ in) is correct, you can use:: $user->getSalt() ); -.. _`CVE-2013-5750`: http://symfony.com/blog/cve-2013-5750-security-issue-in-fosuserbundle-login-form +.. _`CVE-2013-5750`: https://symfony.com/blog/cve-2013-5750-security-issue-in-fosuserbundle-login-form .. _`BasePasswordEncoder::checkPasswordLength`: https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Security/Core/Encoder/BasePasswordEncoder.php diff --git a/contributing/code/bugs.rst b/contributing/code/bugs.rst index d4c26b9bee6..ff7a54bc013 100644 --- a/contributing/code/bugs.rst +++ b/contributing/code/bugs.rst @@ -35,6 +35,6 @@ If your problem definitely looks like a bug, report it using the official bug * *(optional)* Attach a :doc:`patch `. .. _`Stack Overflow`: http://stackoverflow.com/questions/tagged/symfony2 -.. _IRC channel: http://symfony.com/irc +.. _IRC channel: https://symfony.com/irc .. _tracker: https://github.com/symfony/symfony/issues .. _Symfony Standard Edition: https://github.com/symfony/symfony-standard/ diff --git a/contributing/code/security.rst b/contributing/code/security.rst index f523616167c..ab4cc402b1c 100644 --- a/contributing/code/security.rst +++ b/contributing/code/security.rst @@ -96,36 +96,36 @@ Security Advisories This section indexes security vulnerabilities that were fixed in Symfony releases, starting from Symfony 1.0.0: -* May 26, 2015: `CVE-2015-4050: ESI unauthorized access `_ (Symfony 2.3.29, 2.5.12 and 2.6.8) -* April 1, 2015: `CVE-2015-2309: Unsafe methods in the Request class `_ (Symfony 2.3.27, 2.5.11 and 2.6.6) -* April 1, 2015: `CVE-2015-2308: Esi Code Injection `_ (Symfony 2.3.27, 2.5.11 and 2.6.6) -* September 3, 2014: `CVE-2014-6072: CSRF vulnerability in the Web Profiler `_ (Symfony 2.3.19, 2.4.9 and 2.5.4) -* September 3, 2014: `CVE-2014-6061: Security issue when parsing the Authorization header `_ (Symfony 2.3.19, 2.4.9 and 2.5.4) -* September 3, 2014: `CVE-2014-5245: Direct access of ESI URLs behind a trusted proxy `_ (Symfony 2.3.19, 2.4.9 and 2.5.4) -* September 3, 2014: `CVE-2014-5244: Denial of service with a malicious HTTP Host header `_ (Symfony 2.3.19, 2.4.9 and 2.5.4) -* July 15, 2014: `Security releases: Symfony 2.3.18, 2.4.8, and 2.5.2 released `_ (`CVE-2014-4931 `_) -* October 10, 2013: `Security releases: Symfony 2.0.25, 2.1.13, 2.2.9, and 2.3.6 released `_ (`CVE-2013-5958 `_) -* August 7, 2013: `Security releases: Symfony 2.0.24, 2.1.12, 2.2.5, and 2.3.3 released `_ (`CVE-2013-4751 `_ and `CVE-2013-4752 `_) -* January 17, 2013: `Security release: Symfony 2.0.22 and 2.1.7 released `_ (`CVE-2013-1348 `_ and `CVE-2013-1397 `_) -* December 20, 2012: `Security release: Symfony 2.0.20 and 2.1.5 `_ (`CVE-2012-6431 `_ and `CVE-2012-6432 `_) -* November 29, 2012: `Security release: Symfony 2.0.19 and 2.1.4 `_ -* November 25, 2012: `Security release: symfony 1.4.20 released `_ (`CVE-2012-5574 `_) -* August 28, 2012: `Security Release: Symfony 2.0.17 released `_ -* May 30, 2012: `Security Release: symfony 1.4.18 released `_ (`CVE-2012-2667 `_) -* February 24, 2012: `Security Release: Symfony 2.0.11 released `_ -* November 16, 2011: `Security Release: Symfony 2.0.6 `_ -* March 21, 2011: `symfony 1.3.10 and 1.4.10: security releases `_ -* June 29, 2010: `Security Release: symfony 1.3.6 and 1.4.6 `_ -* May 31, 2010: `symfony 1.3.5 and 1.4.5 `_ -* February 25, 2010: `Security Release: 1.2.12, 1.3.3 and 1.4.3 `_ -* February 13, 2010: `symfony 1.3.2 and 1.4.2 `_ -* April 27, 2009: `symfony 1.2.6: Security fix `_ -* October 03, 2008: `symfony 1.1.4 released: Security fix `_ -* May 14, 2008: `symfony 1.0.16 is out `_ -* April 01, 2008: `symfony 1.0.13 is out `_ -* March 21, 2008: `symfony 1.0.12 is (finally) out ! `_ -* June 25, 2007: `symfony 1.0.5 released (security fix) `_ +* May 26, 2015: `CVE-2015-4050: ESI unauthorized access `_ (Symfony 2.3.29, 2.5.12 and 2.6.8) +* April 1, 2015: `CVE-2015-2309: Unsafe methods in the Request class `_ (Symfony 2.3.27, 2.5.11 and 2.6.6) +* April 1, 2015: `CVE-2015-2308: Esi Code Injection `_ (Symfony 2.3.27, 2.5.11 and 2.6.6) +* September 3, 2014: `CVE-2014-6072: CSRF vulnerability in the Web Profiler `_ (Symfony 2.3.19, 2.4.9 and 2.5.4) +* September 3, 2014: `CVE-2014-6061: Security issue when parsing the Authorization header `_ (Symfony 2.3.19, 2.4.9 and 2.5.4) +* September 3, 2014: `CVE-2014-5245: Direct access of ESI URLs behind a trusted proxy `_ (Symfony 2.3.19, 2.4.9 and 2.5.4) +* September 3, 2014: `CVE-2014-5244: Denial of service with a malicious HTTP Host header `_ (Symfony 2.3.19, 2.4.9 and 2.5.4) +* July 15, 2014: `Security releases: Symfony 2.3.18, 2.4.8, and 2.5.2 released `_ (`CVE-2014-4931 `_) +* October 10, 2013: `Security releases: Symfony 2.0.25, 2.1.13, 2.2.9, and 2.3.6 released `_ (`CVE-2013-5958 `_) +* August 7, 2013: `Security releases: Symfony 2.0.24, 2.1.12, 2.2.5, and 2.3.3 released `_ (`CVE-2013-4751 `_ and `CVE-2013-4752 `_) +* January 17, 2013: `Security release: Symfony 2.0.22 and 2.1.7 released `_ (`CVE-2013-1348 `_ and `CVE-2013-1397 `_) +* December 20, 2012: `Security release: Symfony 2.0.20 and 2.1.5 `_ (`CVE-2012-6431 `_ and `CVE-2012-6432 `_) +* November 29, 2012: `Security release: Symfony 2.0.19 and 2.1.4 `_ +* November 25, 2012: `Security release: symfony 1.4.20 released `_ (`CVE-2012-5574 `_) +* August 28, 2012: `Security Release: Symfony 2.0.17 released `_ +* May 30, 2012: `Security Release: symfony 1.4.18 released `_ (`CVE-2012-2667 `_) +* February 24, 2012: `Security Release: Symfony 2.0.11 released `_ +* November 16, 2011: `Security Release: Symfony 2.0.6 `_ +* March 21, 2011: `symfony 1.3.10 and 1.4.10: security releases `_ +* June 29, 2010: `Security Release: symfony 1.3.6 and 1.4.6 `_ +* May 31, 2010: `symfony 1.3.5 and 1.4.5 `_ +* February 25, 2010: `Security Release: 1.2.12, 1.3.3 and 1.4.3 `_ +* February 13, 2010: `symfony 1.3.2 and 1.4.2 `_ +* April 27, 2009: `symfony 1.2.6: Security fix `_ +* October 03, 2008: `symfony 1.1.4 released: Security fix `_ +* May 14, 2008: `symfony 1.0.16 is out `_ +* April 01, 2008: `symfony 1.0.13 is out `_ +* March 21, 2008: `symfony 1.0.12 is (finally) out ! `_ +* June 25, 2007: `symfony 1.0.5 released (security fix) `_ .. _Git repository: https://github.com/symfony/symfony -.. _blog: http://symfony.com/blog/ -.. _Security Advisories: http://symfony.com/blog/category/security-advisories +.. _blog: https://symfony.com/blog/ +.. _Security Advisories: https://symfony.com/blog/category/security-advisories diff --git a/contributing/community/releases.rst b/contributing/community/releases.rst index 9088472abb4..3e46cbcb667 100644 --- a/contributing/community/releases.rst +++ b/contributing/community/releases.rst @@ -114,7 +114,7 @@ Version Feature Freeze Release End of Maintenance End of Life If you want to learn more about the timeline of any given Symfony version, use the online `timeline calculator`_. You can also get all data as a JSON - string via a URL like `http://symfony.com/roadmap.json?version=2.x`. + string via a URL like `https://symfony.com/roadmap.json?version=2.x`. .. tip:: @@ -178,6 +178,6 @@ version is published every two years and there is a year to upgrade. .. _Semantic Versioning: http://semver.org/ .. _Git repository: https://github.com/symfony/symfony .. _SensioLabs: http://sensiolabs.com/ -.. _roadmap notification: http://symfony.com/roadmap -.. _extended to September 2014: http://symfony.com/blog/extended-maintenance-for-symfony-2-4 -.. _timeline calculator: http://symfony.com/roadmap +.. _roadmap notification: https://symfony.com/roadmap +.. _extended to September 2014: https://symfony.com/blog/extended-maintenance-for-symfony-2-4 +.. _timeline calculator: https://symfony.com/roadmap diff --git a/contributing/documentation/overview.rst b/contributing/documentation/overview.rst index f7cd0608926..984275d6c61 100644 --- a/contributing/documentation/overview.rst +++ b/contributing/documentation/overview.rst @@ -320,7 +320,7 @@ definitely don't want you to waste your time! .. _reStructuredText: http://docutils.sourceforge.net/rst.html .. _GitHub: https://github.com/ .. _`fork the repository`: https://help.github.com/articles/fork-a-repo -.. _`Symfony Documentation Contributors`: http://symfony.com/contributors/doc +.. _`Symfony Documentation Contributors`: https://symfony.com/contributors/doc .. _SensioLabsConnect: https://connect.sensiolabs.com/ .. _`Symfony Documentation Badge`: https://connect.sensiolabs.com/badge/36/symfony-documentation-contributor .. _`sync your fork`: https://help.github.com/articles/syncing-a-fork diff --git a/contributing/documentation/standards.rst b/contributing/documentation/standards.rst index 3210ee65927..2079a0d7e8b 100644 --- a/contributing/documentation/standards.rst +++ b/contributing/documentation/standards.rst @@ -44,7 +44,7 @@ Example echo 'You cannot use the :: shortcut here'; - .. _`Symfony Documentation`: http://symfony.com/doc + .. _`Symfony Documentation`: https://symfony.com/doc Code Examples ------------- diff --git a/cookbook/controller/error_pages.rst b/cookbook/controller/error_pages.rst index 20112046b6f..a76fd767d24 100644 --- a/cookbook/controller/error_pages.rst +++ b/cookbook/controller/error_pages.rst @@ -9,9 +9,9 @@ In Symfony applications, all errors are treated as exceptions, no matter if they are just a 404 Not Found error or a fatal error triggered by throwing some exception in your code. -In the `development environment`_, Symfony catches all the exceptions and displays -a special **exception page** with lots of debug information to help you quickly -discover the root problem: +In the :doc:`development environment `, +Symfony catches all the exceptions and displays a special **exception page** +with lots of debug information to help you quickly discover the root problem: .. image:: /images/cookbook/controller/error_pages/exceptions-in-dev-environment.png :alt: A typical exception page in the development environment @@ -259,5 +259,4 @@ time and again, you can have just one (or several) listeners deal with them. and takes measures like redirecting the user to the login page, logging them out and other things. -.. _`development environment`: http://symfony.com/doc/current/cookbook/configuration/environments.html .. _`WebfactoryExceptionsBundle`: https://github.com/webfactory/exceptions-bundle diff --git a/cookbook/controller/service.rst b/cookbook/controller/service.rst index 4fa3af4deb5..00dfb2036c4 100644 --- a/cookbook/controller/service.rst +++ b/cookbook/controller/service.rst @@ -327,4 +327,4 @@ controller: .. _`Controller class source code`: https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php .. _`base Controller class`: https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php -.. _`FrameworkExtraBundle documentation`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/routing.html +.. _`FrameworkExtraBundle documentation`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/routing.html diff --git a/cookbook/doctrine/registration_form.rst b/cookbook/doctrine/registration_form.rst index 0c64e4cf7e3..4cfbd1bc88a 100644 --- a/cookbook/doctrine/registration_form.rst +++ b/cookbook/doctrine/registration_form.rst @@ -364,4 +364,4 @@ object to the database. The extra ``terms`` checkbox on the ``Registration`` model class is used during validation, but not actually used afterwards when saving the User to the database. -.. _`CVE-2013-5750`: http://symfony.com/blog/cve-2013-5750-security-issue-in-fosuserbundle-login-form +.. _`CVE-2013-5750`: https://symfony.com/blog/cve-2013-5750-security-issue-in-fosuserbundle-login-form diff --git a/cookbook/security/entity_provider.rst b/cookbook/security/entity_provider.rst index 90c55eaf5dc..6c760ef7dbf 100644 --- a/cookbook/security/entity_provider.rst +++ b/cookbook/security/entity_provider.rst @@ -240,7 +240,7 @@ the username and then check the password (more on passwords in a moment): - + @@ -474,7 +474,7 @@ For more details on these methods, see :class:`Symfony\\Component\\Security\\Cor .. tip:: - Don't forget to add the repository class to the + Don't forget to add the repository class to the :ref:`mapping definition of your entity `. To finish this, just remove the ``property`` key from the user provider in @@ -566,5 +566,5 @@ or worry about it. In Symfony 2.1, the ``equals`` method was removed from ``UserInterface`` and the ``EquatableInterface`` was introduced in its place. -.. _fixtures: http://symfony.com/doc/master/bundles/DoctrineFixturesBundle/index.html +.. _fixtures: https://symfony.com/doc/master/bundles/DoctrineFixturesBundle/index.html .. _FOSUserBundle: https://github.com/FriendsOfSymfony/FOSUserBundle diff --git a/cookbook/templating/PHP.rst b/cookbook/templating/PHP.rst index 56c47915743..827516031dc 100644 --- a/cookbook/templating/PHP.rst +++ b/cookbook/templating/PHP.rst @@ -353,4 +353,4 @@ instance, to output something in a JavaScript script, use the ``js`` context:: escape($var, 'js') ?> -.. _`@Template`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/view` +.. _`@Template`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/view` diff --git a/cookbook/workflow/new_project_git.rst b/cookbook/workflow/new_project_git.rst index 66a5a251761..56043493b81 100644 --- a/cookbook/workflow/new_project_git.rst +++ b/cookbook/workflow/new_project_git.rst @@ -94,7 +94,7 @@ a `barebones repository`_ and then pushing to it. One library that helps manage this is `Gitolite`_. .. _`Git`: http://git-scm.com/ -.. _`Symfony Standard Edition`: http://symfony.com/download +.. _`Symfony Standard Edition`: https://symfony.com/download .. _`git submodules`: http://git-scm.com/book/en/Git-Tools-Submodules .. _`GitHub`: https://github.com/ .. _`barebones repository`: http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository diff --git a/cookbook/workflow/new_project_svn.rst b/cookbook/workflow/new_project_svn.rst index 934faa4ce2a..8fe7e9eacd9 100644 --- a/cookbook/workflow/new_project_svn.rst +++ b/cookbook/workflow/new_project_svn.rst @@ -135,7 +135,7 @@ central repository to work. You then have several solutions: .. _`Git`: http://git-scm.com/ .. _`SVN`: http://subversion.apache.org/ .. _`Subversion`: http://subversion.apache.org/ -.. _`Symfony Standard Edition`: http://symfony.com/download +.. _`Symfony Standard Edition`: https://symfony.com/download .. _`Version Control with Subversion`: http://svnbook.red-bean.com/ .. _`GitHub`: https://github.com/ .. _`Google code`: http://code.google.com/hosting/ diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index d2fdb146b5a..75af745849a 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -1527,6 +1527,6 @@ Full Default Configuration .. _`protocol-relative`: http://tools.ietf.org/html/rfc3986#section-4.2 .. _`HTTP Host header attacks`: http://www.skeletonscribe.net/2013/05/practical-http-host-header-attacks.html -.. _`Security Advisory Blog post`: http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2-3-3-released#cve-2013-4752-request-gethost-poisoning +.. _`Security Advisory Blog post`: https://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2-3-3-released#cve-2013-4752-request-gethost-poisoning .. _`Doctrine Cache`: http://docs.doctrine-project.org/projects/doctrine-common/en/latest/reference/caching.html .. _`PhpStormProtocol`: https://github.com/aik099/PhpStormProtocol