From c68e087c823abf0784d4c7de8c031c3555a15e43 Mon Sep 17 00:00:00 2001
From: Lauri Eskola <lauri.eskola@acquia.com>
Date: Tue, 21 May 2019 14:21:59 +0300
Subject: [PATCH] Issue #3053129 by R.shaikh, idebr: Links to
 twig.sensiolabs.org are redirects: replace with its destination URLs 1.x
 version

---
 core/lib/Drupal/Core/Render/theme.api.php                       | 2 +-
 core/modules/book/templates/book-tree.html.twig                 | 2 +-
 core/modules/system/templates/menu.html.twig                    | 2 +-
 core/modules/toolbar/templates/menu--toolbar.html.twig          | 2 +-
 .../umami/templates/components/navigation/menu--main.html.twig  | 2 +-
 .../themes/umami/templates/components/navigation/menu.html.twig | 2 +-
 core/themes/classy/templates/navigation/book-tree.html.twig     | 2 +-
 core/themes/classy/templates/navigation/menu.html.twig          | 2 +-
 core/themes/stable/templates/navigation/book-tree.html.twig     | 2 +-
 core/themes/stable/templates/navigation/menu--toolbar.html.twig | 2 +-
 core/themes/stable/templates/navigation/menu.html.twig          | 2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/core/lib/Drupal/Core/Render/theme.api.php b/core/lib/Drupal/Core/Render/theme.api.php
index d52a7c3da956..18e380f3cc3e 100644
--- a/core/lib/Drupal/Core/Render/theme.api.php
+++ b/core/lib/Drupal/Core/Render/theme.api.php
@@ -34,7 +34,7 @@
  * https://www.drupal.org/docs/8/theming
  *
  * For further Twig documentation see
- * http://twig.sensiolabs.org/doc/templates.html
+ * https://twig.symfony.com/doc/1.x/templates.html
  *
  * @section sec_theme_hooks Theme Hooks
  * The theme system is invoked in \Drupal\Core\Render\Renderer::doRender() by
diff --git a/core/modules/book/templates/book-tree.html.twig b/core/modules/book/templates/book-tree.html.twig
index bf7424f4ef3c..7a818389ef88 100644
--- a/core/modules/book/templates/book-tree.html.twig
+++ b/core/modules/book/templates/book-tree.html.twig
@@ -24,7 +24,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 #}
 {{ book_tree.book_links(items, attributes, 0) }}
 
diff --git a/core/modules/system/templates/menu.html.twig b/core/modules/system/templates/menu.html.twig
index 03704f2ee82b..e7bb57b7e1e4 100644
--- a/core/modules/system/templates/menu.html.twig
+++ b/core/modules/system/templates/menu.html.twig
@@ -24,7 +24,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 #}
 {{ menus.menu_links(items, attributes, 0) }}
 
diff --git a/core/modules/toolbar/templates/menu--toolbar.html.twig b/core/modules/toolbar/templates/menu--toolbar.html.twig
index 659e8f558436..a78829986b6c 100644
--- a/core/modules/toolbar/templates/menu--toolbar.html.twig
+++ b/core/modules/toolbar/templates/menu--toolbar.html.twig
@@ -24,7 +24,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 #}
 {{ menus.menu_links(items, attributes, 0) }}
 
diff --git a/core/profiles/demo_umami/themes/umami/templates/components/navigation/menu--main.html.twig b/core/profiles/demo_umami/themes/umami/templates/components/navigation/menu--main.html.twig
index 0c12b120e6b7..6884d81b8c8c 100644
--- a/core/profiles/demo_umami/themes/umami/templates/components/navigation/menu--main.html.twig
+++ b/core/profiles/demo_umami/themes/umami/templates/components/navigation/menu--main.html.twig
@@ -23,7 +23,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 
   1. We use menu_name (see above) to create a CSS class name from it.
   See https://www.drupal.org/node/2649076
diff --git a/core/profiles/demo_umami/themes/umami/templates/components/navigation/menu.html.twig b/core/profiles/demo_umami/themes/umami/templates/components/navigation/menu.html.twig
index 8202518c4457..0a3742115dd4 100644
--- a/core/profiles/demo_umami/themes/umami/templates/components/navigation/menu.html.twig
+++ b/core/profiles/demo_umami/themes/umami/templates/components/navigation/menu.html.twig
@@ -23,7 +23,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 
   1. We use menu_name (see above) to create a CSS class name from it.
   See https://www.drupal.org/node/2649076
diff --git a/core/themes/classy/templates/navigation/book-tree.html.twig b/core/themes/classy/templates/navigation/book-tree.html.twig
index 186a547e14ec..94fac5598b57 100644
--- a/core/themes/classy/templates/navigation/book-tree.html.twig
+++ b/core/themes/classy/templates/navigation/book-tree.html.twig
@@ -22,7 +22,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 #}
 {{ book_tree.book_links(items, attributes, 0) }}
 
diff --git a/core/themes/classy/templates/navigation/menu.html.twig b/core/themes/classy/templates/navigation/menu.html.twig
index e482ef4aad10..b437f8760e97 100644
--- a/core/themes/classy/templates/navigation/menu.html.twig
+++ b/core/themes/classy/templates/navigation/menu.html.twig
@@ -22,7 +22,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 #}
 {{ menus.menu_links(items, attributes, 0) }}
 
diff --git a/core/themes/stable/templates/navigation/book-tree.html.twig b/core/themes/stable/templates/navigation/book-tree.html.twig
index a01248763765..6f4d3ad0a796 100644
--- a/core/themes/stable/templates/navigation/book-tree.html.twig
+++ b/core/themes/stable/templates/navigation/book-tree.html.twig
@@ -22,7 +22,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 #}
 {{ book_tree.book_links(items, attributes, 0) }}
 
diff --git a/core/themes/stable/templates/navigation/menu--toolbar.html.twig b/core/themes/stable/templates/navigation/menu--toolbar.html.twig
index 55cfc5b8b44a..c9702f5c06e5 100644
--- a/core/themes/stable/templates/navigation/menu--toolbar.html.twig
+++ b/core/themes/stable/templates/navigation/menu--toolbar.html.twig
@@ -22,7 +22,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 #}
 {{ menus.menu_links(items, attributes, 0) }}
 
diff --git a/core/themes/stable/templates/navigation/menu.html.twig b/core/themes/stable/templates/navigation/menu.html.twig
index 33efca8003d3..9ad847475446 100644
--- a/core/themes/stable/templates/navigation/menu.html.twig
+++ b/core/themes/stable/templates/navigation/menu.html.twig
@@ -22,7 +22,7 @@
 
 {#
   We call a macro which calls itself to render the full tree.
-  @see http://twig.sensiolabs.org/doc/tags/macro.html
+  @see https://twig.symfony.com/doc/1.x/tags/macro.html
 #}
 {{ menus.menu_links(items, attributes, 0) }}
 
-- 
GitLab