You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/commerce/shopping_list/shopping_list_guide.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,10 +64,10 @@ In the out-of-the-box [storefront](storefront.md), a shopping list user can:
64
64
- products are kept in shopping list while added to the cart
65
65
- products out-of-stock aren't copied and the user is warned
66
66
- product quantities are incremented by 1, the user can adjust quantities in the cart
67
-

67
+

68
68
- Move a product from cart to “My Wishlist” (product is removed from cart and added to the default shopping list)
69
69
- Move the whole cart to “My Wishlist” (products are removed from cart and added to the default shopping list)
70
-

70
+

Copy file name to clipboardExpand all lines: docs/content_management/data_migration/importing_data.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -465,7 +465,7 @@ The following example creates an image [content item](#content-items) from a loc
465
465
```
466
466
467
467
This migration uses a [reference](managing_migrations.md#references) to store the created image content ID, and then uses it while creating the asset.
468
-
It uses an [expression syntax](#expression-syntax) to [concat (`~`)]([[= symfony_doc =]]/reference/formats/expression_language.html#string-operators)
468
+
It uses an [expression syntax](#expression-syntax) to [concatenate (`~`)]([[= symfony_doc =]]/reference/formats/expression_language.html#string-operators)
469
469
the mandatory scheme `ezcontent://` and the image content ID through the [`reference` function](#built-in-functions) used on the reference's name.
|`timestamp`|`integer`| Time information in [unix format timestamp](https://en.wikipedia.org/wiki/Unix_time). |`1400856992`|
61
+
|`timestamp`|`integer`| Time information in [Unix format timestamp](https://en.wikipedia.org/wiki/Unix_time). |`1400856992`|
62
62
|`rfc850`|`string`| Time information as a string in [RFC 850 date format](https://datatracker.ietf.org/doc/html/rfc850). As input, this has higher precedence over the timestamp value. |`"Friday, 23-May-14 14:56:14 GMT+0000"`|
Copy file name to clipboardExpand all lines: docs/content_management/images/configure_image_editor.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Configure image editor to crop, flip, and modify images.
4
4
5
5
# Configure Image Editor
6
6
7
-
When a content item contains fields of the [ibexa_image](imageassetfield.md) type, users can perform basic image editing functions with the Image Editor.
7
+
When a content item contains fields of the [`ibexa_image`](imageassetfield.md) type, users can perform basic image editing functions with the Image Editor.
8
8
9
9
For more information, see [User Documentation]([[= user_doc =]]/image_management/edit_images/).
Copy file name to clipboardExpand all lines: docs/discounts/extend_discounts.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -219,7 +219,7 @@ To do it, create a class implementing the [`DiscountValueFormatterInterface`](/a
219
219
You can change the [the default discount priority](discounts_guide.md#discounts-priority) by creating a class implementing the [`DiscountPrioritizationStrategyInterface`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Discounts-DiscountPrioritizationStrategyInterface.html) and aliasing to it the default implementation.
220
220
221
221
The example below decorates the default implementation to prioritize recently updated discounts above all the others.
222
-
It uses one of the existing [discount search criterions](discounts_criteria.md).
222
+
It uses one of the existing [discount search criteria](discounts_criteria.md).
Copy file name to clipboardExpand all lines: docs/infrastructure_and_maintenance/cache/http_cache/content_aware_cache.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,17 +67,17 @@ You can solve this issue in one of the following ways:
67
67
68
68
Varnish configuration:
69
69
70
-
-[http_resp_hdr_len](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-resp-hdr-len) (default 8k, change to for example, 32k)
71
-
-[http_max_hdr](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-max-hdr) (default 64, change to for example, 128)
72
-
-[http_resp_size](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-resp-size) (default 23k, change to for example, 96k)
73
-
-[workspace_backend](https://varnish-cache.org/docs/6.0/reference/varnishd.html#workspace-backend) (default 64k, change to for example, 128k)
70
+
-[`http_resp_hdr_len`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-resp-hdr-len) (default 8k, change to for example, 32k)
71
+
-[`http_max_hdr`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-max-hdr) (default 64, change to for example, 128)
72
+
-[`http_resp_size`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-resp-size) (default 23k, change to for example, 96k)
73
+
-[`workspace_backend`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#workspace-backend) (default 64k, change to for example, 128k)
74
74
75
-
If you need to see these long headers in `varnishlog`, adapt the [vsl_reclen](https://varnish-cache.org/docs/6.0/reference/varnishd.html#vsl-reclen) setting.
75
+
If you need to see these long headers in `varnishlog`, adapt the [`vsl_reclen`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#vsl-reclen) setting.
76
76
77
77
Nginx has a default limit of 4k/8k when buffering responses:
78
78
79
-
- For [PHP-FPM](https://www.php.net/manual/en/install.fpm.php) setup using proxy module, configure [proxy_buffer_size](https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffer_size)
80
-
- For FastCGI setup using fastcgi module, configure [fastcgi_buffer_size](https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffer_size)
79
+
- For [PHP-FPM](https://www.php.net/manual/en/install.fpm.php) setup using proxy module, configure [`proxy_buffer_size`](https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffer_size)
80
+
- For FastCGI setup using fastcgi module, configure [`fastcgi_buffer_size`](https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffer_size)
81
81
82
82
Fastly has a `Surrogate-Key` header limit of 16 kB, and this cannot be changed.
Copy file name to clipboardExpand all lines: docs/infrastructure_and_maintenance/cache/persistence_cache.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,7 @@ parameters:
124
124
### Redis/Valkey
125
125
126
126
[Redis](https://redis.io/), an in-memory data structure store, is one of the supported cache solutions for clustering.
127
-
Redis is used via [Redis pecl extension](https://pecl.php.net/package/redis).
127
+
Redis is used via [Redis PECL extension](https://pecl.php.net/package/redis).
128
128
129
129
See [Redis Cache Adapter in Symfony documentation]([[= symfony_doc =]]/components/cache/adapters/redis_adapter.html#configure-the-connection for information on how to connect to Redis.
0 commit comments