diff --git a/Documentation/ContentObjects/Files/Index.rst b/Documentation/ContentObjects/Files/Index.rst index 6b7f447b1..4cf1d940e 100644 --- a/Documentation/ContentObjects/Files/Index.rst +++ b/Documentation/ContentObjects/Files/Index.rst @@ -301,7 +301,7 @@ the file itself or from the reference to it (title): page.20 { references { table = pages - uid.data = tsfe:id + uid.data = page:uid fieldName = media } diff --git a/Documentation/DataProcessing/MenuProcessor/Keywords.rst b/Documentation/DataProcessing/MenuProcessor/Keywords.rst index b06ec563a..bba9e5d15 100644 --- a/Documentation/DataProcessing/MenuProcessor/Keywords.rst +++ b/Documentation/DataProcessing/MenuProcessor/Keywords.rst @@ -178,7 +178,7 @@ Example: Find related pages of the current page lib.relatedPagesMenu { special = keywords special { - value.data = TSFE:id + value.data = page:uid entryLevel = 1 mode = manual } diff --git a/Documentation/Functions/Data.rst b/Documentation/Functions/Data.rst index b4e605505..f1d0194d8 100644 --- a/Documentation/Functions/Data.rst +++ b/Documentation/Functions/Data.rst @@ -28,7 +28,7 @@ result in a multidimensional array. This, for example, works with :typoscript:`T .. code-block:: typoscript :caption: EXT:site_package/Configuration/TypoScript/setup.typoscript - lib.foo.data = TSFE : fe_user | user | username + lib.foo.data = request : frontend.user | username Some codes use a different separator, but this is documented in the code. diff --git a/Documentation/Functions/Imagelinkwrap.rst b/Documentation/Functions/Imagelinkwrap.rst index 38bec9505..7361fd46b 100644 --- a/Documentation/Functions/Imagelinkwrap.rst +++ b/Documentation/Functions/Imagelinkwrap.rst @@ -488,7 +488,7 @@ Example: Printlink enable = 1 typolink { target = _blank - parameter.data = page:alias // TSFE:id + parameter.data = page:alias // page:uid additionalParams = &type=98 } } diff --git a/Documentation/Functions/Stdwrap.rst b/Documentation/Functions/Stdwrap.rst index ad77c38d0..6597d7621 100644 --- a/Documentation/Functions/Stdwrap.rst +++ b/Documentation/Functions/Stdwrap.rst @@ -1413,7 +1413,7 @@ Properties for wrapping data .. code-block:: typoscript :caption: EXT:site_package/Configuration/TypoScript/setup.typoscript - page.10.dataWrap =
|
+ page.10.dataWrap =
|
This will produce a :html:`
` tag around the content with an id attribute that contains the id of the current page. diff --git a/Documentation/TopLevelObjects/Page/Index.rst b/Documentation/TopLevelObjects/Page/Index.rst index 186ef9075..3bbecca3f 100644 --- a/Documentation/TopLevelObjects/Page/Index.rst +++ b/Documentation/TopLevelObjects/Page/Index.rst @@ -928,7 +928,7 @@ Demonstrates: page.jsFooterInline { 10 = TEXT - 10.stdWrap.dataWrap = var pageId = {TSFE:id}; + 10.stdWrap.dataWrap = var pageId = {page:uid}; } .. _setup-page-jsinline-example: @@ -947,7 +947,7 @@ Demonstrates: page.jsInline { 10 = TEXT - 10.stdWrap.dataWrap = var pageId = {TSFE:id}; + 10.stdWrap.dataWrap = var pageId = {page:uid}; } .. _setup-page-meta-example: