Skip to content

Commit 1c982fb

Browse files
authored
Content fixes followup (#2560)
* Fixed SortClause filtering remark * Fixed links to Symfony doc
1 parent 79752f1 commit 1c982fb

File tree

18 files changed

+27
-27
lines changed

18 files changed

+27
-27
lines changed

docs/administration/configuration/repository_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ ibexa:
8080
prefix: Ibexa\Bundle\Core\Entity
8181
```
8282

83-
For more information, see [DoctrineBundle documentation](https://symfony.com/doc/3.4/reference/configuration/doctrine.html).
83+
For more information, see [DoctrineBundle documentation]([[= symfony_doc =]]/reference/configuration/doctrine.html).
8484

8585
!!! note
8686

docs/api/rest_api/rest_api_usage/rest_requests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ When searching for content items (or locations), the query grammar is also parti
157157

158158
### Creating content with binary attachments
159159

160-
The example below is a command-line script to upload images. It's based on the [Symfony HttpClient](https://symfony.com/doc/5.4/http_client.html).
160+
The example below is a command-line script to upload images. It's based on the [Symfony HttpClient]([[= symfony_doc =]]/http_client.html).
161161

162162
This script:
163163

docs/api/rest_api/rest_api_usage/testing_rest_api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ For examples of using `curl`, refer to:
2424

2525
## PHP
2626

27-
You can use [Symfony HttpClient](https://symfony.com/doc/5.4/http_client.html) to test REST API.
27+
You can use [Symfony HttpClient]([[= symfony_doc =]]/http_client.html) to test REST API.
2828
Open a PHP shell in a terminal with <nobr>`php -a`</nobr> and copy-paste this code into it:
2929

3030
``` php

docs/commerce/storefront/extend_storefront.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ It takes the following parameters:
8989
## Generate custom product preview path
9090

9191
By default, the `ProductRenderController` controller passes only the product object for rendering.
92-
You can modify the controller file to make it pass parameters to the [`path`](https://symfony.com/doc/current/reference/twig_reference.html#path) Twig helper function, which is used by the `product_card.html.twig` and `product_card.html.twig` [templates](customize_storefront_layout.md) to generate the user path.
92+
You can modify the controller file to make it pass parameters to the [`path`]([[= symfony_doc =]]/reference/twig_reference.html#path) Twig helper function, which is used by the `product_card.html.twig` and `product_card.html.twig` [templates](customize_storefront_layout.md) to generate the user path.
9393
After you modify the controller, it can also pass the following parameters:
9494

9595
- `route` - the route, under which product preview is available.
@@ -109,4 +109,4 @@ Refer to the code snippet below and create your own file, for example, `CustomPr
109109
'is_relative' => true,
110110
]);
111111
}
112-
```
112+
```

docs/content_management/field_types/field_type_reference/addressfield.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ ibexa.address.field.tax_number.billing_address.DE
104104
105105
#### Example event listener
106106
107-
An event listener can also provide validation by using either one of [constraints provided by Symfony](https://symfony.com/doc/current/validation.html#supported-constraints),
107+
An event listener can also provide validation by using either one of [constraints provided by Symfony]([[= symfony_doc =]]/validation.html#supported-constraints),
108108
or a custom constraint.
109109
110110
```php

docs/infrastructure_and_maintenance/cache/http_cache/http_cache_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ For example, to disable cache for the block, use `$event->getResponse()->setPriv
7777

7878
## When to use ESI
7979

80-
[Edge Side Includes](https://symfony.com/doc/current/http_cache/esi.html) (ESI) can be used to split out the different parts of a web page into separate fragments that can be freely reused as pieces by reverse proxy.
80+
[Edge Side Includes]([[= symfony_doc =]]/http_cache/esi.html) (ESI) can be used to split out the different parts of a web page into separate fragments that can be freely reused as pieces by reverse proxy.
8181

8282
In practice, with ESI, every sub-request is regenerated from application perspective.
8383
And while you can tune your system to reduce this, it always causes additional overhead in the following situations:

docs/infrastructure_and_maintenance/cache/http_cache/reverse_proxy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Failing to configure reverse proxies correctly may introduce several problems, i
7373

7474
### Configure Symfony front controller
7575

76-
You need to consider your `TrustedProxy` configuration when you use Symfony [behind a load balancer or a reverse proxy](https://symfony.com/doc/5.1/deployment/proxies.html).
76+
You need to consider your `TrustedProxy` configuration when you use Symfony [behind a load balancer or a reverse proxy]([[= symfony_doc =]]/deployment/proxies.html).
7777

7878
To configure trusted proxies, use [Symfony semantic configuration]([[= symfony_doc =]]/deployment/proxies.html#solution-settrustedproxies) under the `framework.trusted_proxies` [configuration key](configuration.md#configuration-files), for example:
7979

@@ -84,7 +84,7 @@ framework:
8484
8585
!!! caution "Careful when trusting dynamic IP that uses `REMOTE_ADDR` value or similar"
8686

87-
On Platform.sh, Varnish doesn't have a static IP, like with [AWS LB](https://symfony.com/doc/5.1/deployment/proxies.html#but-what-if-the-ip-of-my-reverse-proxy-changes-constantly).
87+
On Platform.sh, Varnish doesn't have a static IP, like with [AWS LB]([[= symfony_doc =]]/deployment/proxies.html#but-what-if-the-ip-of-my-reverse-proxy-changes-constantly).
8888
For this reason, the `TRUSTED_PROXIES` env variable supports being set to value `REMOTE_ADDR`, which is equal to:
8989

9090
```php

docs/infrastructure_and_maintenance/devops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ While all relevant cache is cleared for you on repository changes when using the
3737

3838
## Web Debug Toolbar
3939

40-
As of [[= product_name =]] v4.5, the [Symfony Web Debug Toolbar](https://symfony.com/doc/current/profiler.html) is no longer installed by default.
40+
As of [[= product_name =]] v4.5, the [Symfony Web Debug Toolbar]([[= symfony_doc =]]/profiler.html) is no longer installed by default.
4141
To install it, run the following command:
4242

4343
```

docs/infrastructure_and_maintenance/request_lifecycle.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ For an overview of what happens on a reverse proxy like Varnish or Fastly, see [
1414
When arriving at a web server, the request is filtered by Apache virtual host, Nginx Server Blocks, or equivalent.
1515
There, requests of static resources are separated from requests to PHP interpreter.
1616

17-
As [[= product_name =]] is a Symfony application, the handling of requests starts like in Symfony (see [Symfony and HTTP Fundamentals](https://symfony.com/doc/current/introduction/http_fundamentals.html)).
17+
As [[= product_name =]] is a Symfony application, the handling of requests starts like in Symfony (see [Symfony and HTTP Fundamentals]([[= symfony_doc =]]/introduction/http_fundamentals.html)).
1818

19-
If the HTTP request is to be treated by [[= product_name =]], it goes to the `public/index.php` of the [Symfony Front Controller](https://symfony.com/doc/current/configuration/front_controllers_and_kernel.html#the-front-controller).
19+
If the HTTP request is to be treated by [[= product_name =]], it goes to the `public/index.php` of the [Symfony Front Controller]([[= symfony_doc =]]/configuration/front_controllers_and_kernel.html#the-front-controller).
2020

21-
The front controller transforms the HTTP request into a PHP [`Request` object](https://symfony.com/doc/current/introduction/http_fundamentals.html#symfony-request-object) and passes it to Symfony's Kernel to get a [`Response` object](https://symfony.com/doc/current/introduction/http_fundamentals.html#symfony-response-object) that is transformed and sent back as an HTTP response.
21+
The front controller transforms the HTTP request into a PHP [`Request` object]([[= symfony_doc =]]/introduction/http_fundamentals.html#symfony-request-object) and passes it to Symfony's Kernel to get a [`Response` object]([[= symfony_doc =]]/introduction/http_fundamentals.html#symfony-response-object) that is transformed and sent back as an HTTP response.
2222

2323
The schemas start with a regular `Request` object from a browser that enters Symfony and [[= product_name =]].
2424
There is no ESI, no REST, and no GraphQL request performed.
@@ -63,7 +63,7 @@ This schema is described below event by event.
6363

6464
## Kernel's request event
6565

66-
When the request enters the Symfony's kernel (and goes underneath the [`HttpKernel`](https://symfony.com/doc/current/components/http_kernel.html), `http_kernel`), a `kernel.request` event (`KernelEvents::REQUEST`) is dispatched.
66+
When the request enters the Symfony's kernel (and goes underneath the [`HttpKernel`]([[= symfony_doc =]]/components/http_kernel.html), `http_kernel`), a `kernel.request` event (`KernelEvents::REQUEST`) is dispatched.
6767
Several listeners are called in decreasing priority.
6868

6969
### SiteAccess matching
@@ -97,7 +97,7 @@ The `DefaultRouter` is always added to the collection with top priority (priorit
9797
#### `DefaultRouter`
9898

9999
`DefaultRouter` (`router.default`):
100-
The `DefaultRouter` tries to match the `semanticPathinfo` against routes, close to [the way pure Symfony does](https://symfony.com/doc/current/routing.html), by extending and using `Symfony\Component\Routing\Router`.
100+
The `DefaultRouter` tries to match the `semanticPathinfo` against routes, close to [the way pure Symfony does]([[= symfony_doc =]]/routing.html), by extending and using `Symfony\Component\Routing\Router`.
101101
If a route matches, the controller associated with it is responsible for building a `View` or `Response` object.
102102

103103
### `UrlWildcardRouter`
@@ -154,7 +154,7 @@ The `HttpKernel` then dispatches a `kernel.controller_arguments` (`KernelEvents:
154154
## Controller execution
155155

156156
The `HttpKernel` extracts from the request the controller and the arguments to pass to the controller.
157-
[Argument resolvers](https://symfony.com/doc/5.4/controller/argument_value_resolver.html) work in a way similar to autowiring.
157+
[Argument resolvers]([[= symfony_doc =]]/controller/argument_value_resolver.html) work in a way similar to autowiring.
158158
The `HttpKernel` executes the controller with those arguments.
159159

160160
As a reminder, the controller and its argument can be:

docs/personalization/enable_personalization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ For example, to retrieve the `rss` variation of the image, use:
516516

517517
#### Logging
518518

519-
Most operations are logged by using the `ibexa-personalization` [Monolog channel](https://symfony.com/doc/5.4/logging/channels_handlers.html).
519+
Most operations are logged by using the `ibexa-personalization` [Monolog channel]([[= symfony_doc =]]/logging/channels_handlers.html).
520520
To log everything about Personalization to `dev.recommendation.log`, add the following configuration:
521521

522522
``` yaml

0 commit comments

Comments
 (0)