Skip to content

Commit f2ae887

Browse files
committed
moved XSD to HTTPS
1 parent aebec52 commit f2ae887

27 files changed

+27
-27
lines changed

Tests/Fixtures/controller/import__controller.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<import resource="routing.xml">
88
<default key="_controller">FrameworkBundle:Template:template</default>

Tests/Fixtures/controller/import_controller.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<import resource="routing.xml" controller="FrameworkBundle:Template:template" />
88
</routes>

Tests/Fixtures/controller/import_override_defaults.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<import resource="routing.xml" controller="FrameworkBundle:Template:template">
88
<default key="_controller">AppBundle:Blog:index</default>

Tests/Fixtures/controller/override_defaults.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<route id="app_blog" path="/blog" controller="AppBundle:Homepage:show">
88
<default key="_controller">AppBundle:Blog:index</default>

Tests/Fixtures/controller/routing.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<route id="app_homepage" path="/" controller="AppBundle:Homepage:show" />
88

Tests/Fixtures/glob/bar.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<route id="bar_route" path="/bar" controller="AppBundle:Bar:view" />
88
</routes>

Tests/Fixtures/glob/baz.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<route id="baz_route" path="/baz" controller="AppBundle:Baz:view" />
88
</routes>

Tests/Fixtures/glob/import_multiple.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<import resource="ba?.xml" />
88
</routes>

Tests/Fixtures/glob/import_single.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<import resource="b?r.xml" />
88
</routes>

Tests/Fixtures/list_defaults.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<routes xmlns="http://symfony.com/schema/routing"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://symfony.com/schema/routing
5-
http://symfony.com/schema/routing/routing-1.0.xsd">
5+
https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<route id="blog" path="/blog">
88
<default key="_controller">

0 commit comments

Comments
 (0)