Skip to content

Commit b2d1acf

Browse files
authored
Fix links 3.3 (#2667)
1 parent f592e49 commit b2d1acf

File tree

17 files changed

+23
-23
lines changed

17 files changed

+23
-23
lines changed

docs/api/rest_api_extension_media_type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You need the following elements:
1616

1717
!!! note
1818

19-
You can change the vendor name (from default `vnd.ez.api` to new `app.api` like in this example), or you can create a new media type in the default vendor (like `vnd.ez.api.Greeting` in the [Creating a new REST resource](#creating-a-new-rest-resource) example).
19+
You can change the vendor name (from default `vnd.ez.api` to new `app.api` like in this example), or you can create a new media type in the default vendor (like `vnd.ez.api.Greeting` in the [Creating a new REST resource](rest_api_extension_resource.md) example).
2020
To do so, tag your new ValueObjectVisitor with `ezpublish_rest.output.value_object_visitor` to add it to the existing `ValueObjectVisitorDispatcher`, and a new one will not be needed.
2121
This way, the `media-type` attribute is also easier to create, because the default `Output\Generator` uses this default vendor.
2222
This example presents creating a new vendor as a good practice, to highlight that this is custom extensions that isn't available in a regular Ibexa DXP installation.

docs/guide/admin_panel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Content Types are organized into groups.
132132

133133
You can add your own groups here to keep your Content Types in better order.
134134

135-
For a full tutorial, see [Create a Content Type](first_steps.md#create-a-content-type) or follow [user documentation]([[= user_doc =]]/site_organization/organizing_the_site/#content-types).
135+
For a full tutorial, see [Create a Content Type](first_steps.md#add-a-content-type) or follow [user documentation]([[= user_doc =]]/site_organization/organizing_the_site/#content-types).
136136
For a detailed overview of the content model, see [Content model overview](content_model.md).
137137

138138
## Object States

docs/guide/architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ The architecture of [[= product_name =]] is layered and uses clearly defined API
3131
| [Solr Storage Engine](search/solr.md) | Transparent drop-in replacement for the SQL-based Legacy search engine. |
3232
| [IO](file_management/file_management.md#native-io-handler) | The IO API is organized around two types of handlers, both used by the IOService. |
3333
| [IO Handler](clustering.md#dfs-io-handler) | The IO Handler manipulates metadata, making up for the potential inconsistency of network-based filesystems. |
34-
| [Recommendation](personalization/recommendation_client.md#enabling-recommendations) | Recommendation API. |
35-
| [Recommendation Engine](personalization/recommendation_client.md#enabling-recommendations) | Recommendation Engine allows displaying recommendations on your website. |
34+
| [Recommendation](personalization/recommendation_client.md) | Recommendation API. |
35+
| [Recommendation Engine](personalization/recommendation_client.md) | Recommendation Engine allows displaying recommendations on your website. |

docs/guide/clustering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ On [[= product_name_cloud =]] (and Platform.sh) Redis is preferred and supported
5656

5757
### Shared binary files
5858

59-
[[= product_name =]] supports multi-server setups by means of [custom IO handlers](file_management/file_management.md#the-dfs-cluster-handler).
59+
[[= product_name =]] supports multi-server setups by means of [custom IO handlers](file_management.md#dfs-cluster-handler).
6060
They make sure that files are correctly synchronized among the multiple clients using the data.
6161

6262
## DFS IO handler

docs/guide/content_rendering/queries_and_controllers/content_queries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ With content queries you can find and render specific content according to crite
88

99
You can use queries to list or embed Content items, such as:
1010

11-
- [children in a folder](../embed_and_list_content/list_content.md#children-query-type)
11+
- [children in a folder](../embed_and_list_content/list_content.md#list-children-with-query-type)
1212
- related articles
1313
- [most recent blog posts](custom_query_type.md)
1414
- recommended products
@@ -154,4 +154,4 @@ The identifier of the Content query Field must be matched by
154154
using the `'@EzSystems\EzPlatformQueryFieldType\eZ\ContentView\FieldDefinitionIdentifierMatcher'` matcher.
155155

156156
Query results are provided to the template in the `items` variable.
157-
See [List content](../embed_and_list_content/list_content.md#content-query-field) for an example of using the Content query Field.
157+
See [List content](../embed_and_list_content/list_content.md#list-children-in-content-query-field) for an example of using the Content query Field.

docs/guide/content_rendering/queries_and_controllers/controllers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You indicate which controller to use in the [content view configuration](../temp
1616
[[= include_file('code_samples/front/embed_content/src/Controller/RelationController.php', 2, 9) =]]
1717
```
1818

19-
For a full example of using a custom controller, see [Embed content](../embed_and_list_content/embed_content.md#custom-controller).
19+
For a full example of using a custom controller, see [Embed content](embed_content.md#embed-relations-with-a-custom-controller).
2020

2121
If you do not want to use the default view controller and only use a custom one,
2222
use the same configuration, but do not provide the `template` key.

docs/guide/devops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ include Symfony cache use, and a [persistence cache](persistence_cache.md#persis
5858

5959
!!! tip
6060

61-
For long-running scripts, see [Executing long-running console commands](performance.md#executing-long-running-console-commands).
61+
For long-running scripts, see [Long-running console commands](performance.md#long-running-console-commands).
6262

6363
If you are running out of memory and don't need to keep track of cache hits and misses, you can disable persistence cache logging, represented by the setting `parameters.ezpublish.spi.persistence.cache.persistenceLogger.enableCallLogging`. In `config_dev.yaml`:
6464

docs/guide/file_management/binary_media_download.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ It accepts optional query parameters:
1717
- `version`: The content version number that the file is downloaded for. Requires the `content / read` permission for a published version and additionally `content / versionread` permission for an unpublished version. If not specified, uses the published version.
1818
- `inLanguage`: The language the file should be downloaded in. If not specified, the most prioritized language for the SiteAccess is used.
1919

20-
The [`ibexa_render_field`](../content_rendering/twig_function_reference/field_twig_functions.md#ibexa_render_field) Twig helper by default generates a working link.
20+
The [`ez_render_field`](field_twig_functions.md#ez_render_field) Twig helper by default generates a working link.
2121

2222
## Download link generation
2323

2424
To generate a direct download link for the `File` Field Type you have to create
25-
a [RouteReference](../content_rendering/urls_and_routes.md#routereference) with the `ibexa_route` helper, passing `content` and `File` Field identifier as parameters.
25+
a [RouteReference](../content_rendering/urls_and_routes.md#routereference) with the `ez_route` helper, passing `content` and `File` Field identifier as parameters.
2626
Optional parameter `inLanguage` may be used to specify File content translation.
2727

2828
```html+twig
29-
{% set routeReference = ibexa_route( 'ibexa.content.download', {'content': content, 'fieldIdentifier': 'file', 'inLanguage': content.prioritizedFieldLanguageCode } ) %}
30-
<a href="{{ ibexa_path( routeReference ) }}">Download</a>
29+
{% set routeReference = ez_route( 'ez_content_download', {'content': content, 'fieldIdentifier': 'file', 'inLanguage': content.prioritizedFieldLanguageCode } ) %}
30+
<a href="{{ ez_path( routeReference ) }}">Download</a>
3131
```
3232

3333
## REST API: `uri` property

docs/guide/limitations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ Beyond that the following Limitations are available:
126126
`content/versionread`:
127127

128128
- [Owner](limitation_reference.md#owner-limitation)
129-
- [Status](limitation_reference.md#status-limitation)
129+
- Status
130130
- [Location](limitation_reference.md#location-limitation)
131131
- [Subtree of Location](limitation_reference.md#subtree-of-location-limitation)
132132
- [State](limitation_reference.md#state-limitation)
133133

134134
`content/versionremove`:
135135

136136
- [Owner](limitation_reference.md#owner-limitation)
137-
- [Status](limitation_reference.md#status-limitation)
137+
- Status
138138
- [Location](limitation_reference.md#location-limitation)
139139
- [Subtree of Location](limitation_reference.md#subtree-of-location-limitation)
140140
- [State](limitation_reference.md#state-limitation)

docs/guide/multisite/siteaccess_matching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The matching configuration is passed to `setMatchingConfiguration()`.
6060
- [`Map\Host`](#maphost)
6161
- [`Map\URI`](#mapuri)
6262
- [`Map\Port`](#mapport)
63-
- [`EzSystems\EzPlatformSiteFactory\SiteAccessMatcher`](#siteaccessmatcher)
63+
- [`EzSystems\EzPlatformSiteFactory\SiteAccessMatcher`](#ezsystemsezplatformsitefactorysiteaccessmatcher)
6464

6565
### `URIElement`
6666

0 commit comments

Comments
 (0)