Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Documentation/ContentObjects/Files/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down
2 changes: 1 addition & 1 deletion Documentation/DataProcessing/MenuProcessor/Keywords.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Functions/Data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Functions/Imagelinkwrap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Functions/Stdwrap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1413,7 +1413,7 @@ Properties for wrapping data
.. code-block:: typoscript
:caption: EXT:site_package/Configuration/TypoScript/setup.typoscript

page.10.dataWrap = <div id="{tsfe : id}"> | </div>
page.10.dataWrap = <div id="{page : uid}"> | </div>

This will produce a :html:`<div>` tag around the content with an id attribute
that contains the id of the current page.
Expand Down
4 changes: 2 additions & 2 deletions Documentation/TopLevelObjects/Page/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down