Skip to content

Commit dfc89b2

Browse files
committed
moved XSD to HTTPS
1 parent d64b6b9 commit dfc89b2

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Tests/Fixtures/import_with_name_prefix/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
<import resource="../controller/routing.xml" />
88
<import resource="../controller/routing.xml" prefix="/api" name-prefix="api_" />

Tests/Fixtures/import_with_no_trailing_slash/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
<import resource="../controller/routing.xml" prefix="/slash" name-prefix="a_" />
88
<import resource="../controller/routing.xml" prefix="/no-slash" name-prefix="b_" trailing-slash-on-root="false" />

Tests/Fixtures/localized.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<routes xmlns="http://symfony.com/schema/routing"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
5+
xsi:schemaLocation="http://symfony.com/schema/routing https://symfony.com/schema/routing/routing-1.0.xsd">
66

77
<route id="localized">
88
<default key="_controller">MyBundle:Blog:show</default>

Tests/Fixtures/localized/imported-with-locale-but-not-localized.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
<route id="imported" path="/suffix">
77
<default key="_controller">MyBundle:Blog:show</default>
88
</route>

Tests/Fixtures/localized/imported-with-locale.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
<route id="imported">
77
<default key="_controller">MyBundle:Blog:show</default>
88
<path locale="en">/suffix</path>

Tests/Fixtures/localized/importer-with-locale-imports-non-localized-route.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
<import resource="./imported-with-locale-but-not-localized.xml">
77
<prefix locale="fr">/le-prefix</prefix>
88
<prefix locale="en">/the-prefix</prefix>

Tests/Fixtures/localized/importer-with-locale.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
<import resource="./imported-with-locale.xml">
77
<prefix locale="fr">/le-prefix</prefix>
88
<prefix locale="en">/the-prefix</prefix>

0 commit comments

Comments
 (0)