Skip to content

Commit d16cc07

Browse files
committed
Merge branch '4.2'
* 4.2: moved XSD to HTTPS - Part 2
2 parents bcd6a48 + 395adb4 commit d16cc07

File tree

10 files changed

+15
-23
lines changed

10 files changed

+15
-23
lines changed

bundles/configuration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ can place it anywhere you like. You should return this path as the base path::
409409
}
410410

411411
Assuming the XSD file is called ``hello-1.0.xsd``, the schema location will be
412-
``http://acme_company.com/schema/dic/hello/hello-1.0.xsd``:
412+
``https://acme_company.com/schema/dic/hello/hello-1.0.xsd``:
413413

414414
.. code-block:: xml
415415
@@ -419,7 +419,7 @@ Assuming the XSD file is called ``hello-1.0.xsd``, the schema location will be
419419
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
420420
xmlns:acme-hello="http://acme_company.com/schema/dic/hello"
421421
xsi:schemaLocation="http://acme_company.com/schema/dic/hello
422-
http://acme_company.com/schema/dic/hello/hello-1.0.xsd">
422+
https://acme_company.com/schema/dic/hello/hello-1.0.xsd">
423423
424424
<acme-hello:config>
425425
<!-- ... -->

components/dependency_injection/compilation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ The XML version of the config would then look like this:
201201
<container xmlns="http://symfony.com/schema/dic/services"
202202
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
203203
xmlns:acme_demo="http://www.example.com/symfony/schema/"
204-
xsi:schemaLocation="http://www.example.com/symfony/schema/ http://www.example.com/symfony/schema/hello-1.0.xsd">
204+
xsi:schemaLocation="http://www.example.com/symfony/schema/ https://www.example.com/symfony/schema/hello-1.0.xsd">
205205
206206
<acme_demo:config>
207207
<acme_demo:foo>fooValue</acme_demo:foo>

components/phpunit_bridge.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ to register a new `test listener`_ called ``SymfonyTestsListener``:
4949
5050
<!-- http://phpunit.de/manual/6.0/en/appendixes.configuration.html -->
5151
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
52-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.0/phpunit.xsd"
52+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.0/phpunit.xsd"
5353
>
5454
5555
<!-- ... -->
@@ -173,7 +173,7 @@ message, enclosed with ``/``. For example, with:
173173
174174
<!-- http://phpunit.de/manual/6.0/en/appendixes.configuration.html -->
175175
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
176-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.0/phpunit.xsd"
176+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.0/phpunit.xsd"
177177
>
178178
179179
<!-- ... -->
@@ -525,7 +525,7 @@ namespaces in the ``phpunit.xml`` file, as done for example in the
525525
526526
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
527527
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
528-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
528+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.1/phpunit.xsd"
529529
>
530530
531531
<!-- ... -->
@@ -670,7 +670,7 @@ Add the following configuration to the ``phpunit.xml.dist`` file:
670670
671671
<!-- http://phpunit.de/manual/6.0/en/appendixes.configuration.html -->
672672
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
673-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.0/phpunit.xsd"
673+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.0/phpunit.xsd"
674674
>
675675
676676
<!-- ... -->

create_framework/unit_testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ using `PHPUnit`_. Create a PHPUnit configuration file in
1616
<?xml version="1.0" encoding="UTF-8"?>
1717
<phpunit
1818
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.1/phpunit.xsd"
19+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.1/phpunit.xsd"
2020
backupGlobals="false"
2121
colors="true"
2222
bootstrap="vendor/autoload.php"

doctrine/associations.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ the ``Product`` entity (and getter & setter methods):
188188
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
189189
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
190190
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping
191-
http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
191+
https://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
192192
193193
<entity name="App\Entity\Product">
194194
<!-- ... -->
@@ -264,7 +264,7 @@ class that will hold these objects:
264264
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
265265
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
266266
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping
267-
http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
267+
https://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
268268
269269
<entity name="App\Entity\Category">
270270
<!-- ... -->

doctrine/lifecycle_callbacks.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ the current date, only when the entity is first persisted (i.e. inserted):
6262
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
6363
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6464
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping
65-
http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
65+
https://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
6666
6767
<entity name="App\Entity\Product">
6868
<!-- ... -->

form/form_collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ you will learn about next!).
490490
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
491491
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
492492
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping
493-
http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
493+
https://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
494494
495495
<entity name="App\Entity\Task">
496496
<!-- ... -->

frontend/assetic/index.rst

Lines changed: 0 additions & 8 deletions
This file was deleted.

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ doubling them to prevent Symfony from interpreting them as container parameters)
312312
xmlns:framework="http://symfony.com/schema/dic/symfony"
313313
xsi:schemaLocation="http://symfony.com/schema/dic/services
314314
https://symfony.com/schema/dic/services/services-1.0.xsd
315-
https://symfony.com/schema/dic/symfony https://symfony.com/schema/dic/symfony/symfony-1.0.xsd">
315+
http://symfony.com/schema/dic/symfony https://symfony.com/schema/dic/symfony/symfony-1.0.xsd">
316316
317317
<framework:config ide="myide://open?url=file://%%f&line=%%l"/>
318318
</container>

reference/configuration/security.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ encoding algorithm. Also, each algorithm defines different config options:
158158
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
159159
xmlns:srv="http://symfony.com/schema/dic/services"
160160
xsi:schemaLocation="http://symfony.com/schema/dic/services
161-
http://symfony.com/schema/dic/services/services-1.0.xsd">
161+
https://symfony.com/schema/dic/services/services-1.0.xsd">
162162
163163
<config>
164164
<!-- ... -->
@@ -328,7 +328,7 @@ application:
328328
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
329329
xmlns:srv="http://symfony.com/schema/dic/services"
330330
xsi:schemaLocation="http://symfony.com/schema/dic/services
331-
http://symfony.com/schema/dic/services/services-1.0.xsd">
331+
https://symfony.com/schema/dic/services/services-1.0.xsd">
332332
333333
<config>
334334
<!-- ... -->

0 commit comments

Comments
 (0)