From 16e48397fe0d16386480b391b5eea4f074b79ea7 Mon Sep 17 00:00:00 2001 From: "lina.wolf" Date: Mon, 18 Nov 2024 14:13:34 +0100 Subject: [PATCH] [FEATURE] Use :ref: Textrole to link to confvals and viewhelpers --- .../resources/config/typo3-docs-theme.php | 3 + .../CollectPrefixLinkTargetsTransformer.php | 154 ++++++++++++++++++ .../src/Twig/TwigExtension.php | 16 +- .../confval/confval-basic/expected/index.html | 4 +- .../confval/confval-basic/input/index.rst | 2 +- .../expected/anotherDomain.html | 2 +- .../expected/index.html | 2 +- .../expected/anotherDomain.html | 2 +- .../confval-duplicate/expected/index.html | 2 +- .../expected/index.html | 8 +- .../expected/index.html | 14 +- .../confval-menu-tree/expected/index.html | 18 +- .../expected/anotherDomain.html | 2 +- .../site-set-category/expected/index.html | 54 +++--- .../site-set-ext-syntax/expected/index.html | 50 +++--- .../expected/index.html | 52 +++--- .../tests/site-set-labels/expected/index.html | 52 +++--- .../tests/site-set/expected/index.html | 52 +++--- .../tests/viewhelper/expected/index.html | 8 +- .../viewhelper/expected/objects.inv.json | 51 +++++- 20 files changed, 379 insertions(+), 169 deletions(-) create mode 100644 packages/typo3-docs-theme/src/Compiler/NodeTransformers/CollectPrefixLinkTargetsTransformer.php diff --git a/packages/typo3-docs-theme/resources/config/typo3-docs-theme.php b/packages/typo3-docs-theme/resources/config/typo3-docs-theme.php index 1cdbf6fa9..d476f217b 100644 --- a/packages/typo3-docs-theme/resources/config/typo3-docs-theme.php +++ b/packages/typo3-docs-theme/resources/config/typo3-docs-theme.php @@ -18,6 +18,7 @@ use phpDocumentor\Guides\RestructuredText\Parser\Productions\DocumentRule; use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; use T3Docs\Typo3DocsTheme\Api\Typo3ApiService; +use T3Docs\Typo3DocsTheme\Compiler\NodeTransformers\CollectPrefixLinkTargetsTransformer; use T3Docs\Typo3DocsTheme\Compiler\NodeTransformers\ConfvalMenuNodeTransformer; use T3Docs\Typo3DocsTheme\Compiler\NodeTransformers\RemoveInterlinkSelfReferencesFromCrossReferenceNodeTransformer; use T3Docs\Typo3DocsTheme\Directives\ConfvalMenuDirective; @@ -82,6 +83,8 @@ ->bind('$startingRule', service(DirectiveContentRule::class)) ->instanceof(BaseDirective::class) ->tag('phpdoc.guides.directive') + ->set(CollectPrefixLinkTargetsTransformer::class) + ->tag('phpdoc.guides.compiler.nodeTransformers') ->set(ConfvalMenuNodeTransformer::class) ->tag('phpdoc.guides.compiler.nodeTransformers') ->set(RemoveInterlinkSelfReferencesFromCrossReferenceNodeTransformer::class) diff --git a/packages/typo3-docs-theme/src/Compiler/NodeTransformers/CollectPrefixLinkTargetsTransformer.php b/packages/typo3-docs-theme/src/Compiler/NodeTransformers/CollectPrefixLinkTargetsTransformer.php new file mode 100644 index 000000000..61fa4d65d --- /dev/null +++ b/packages/typo3-docs-theme/src/Compiler/NodeTransformers/CollectPrefixLinkTargetsTransformer.php @@ -0,0 +1,154 @@ + */ +final class CollectPrefixLinkTargetsTransformer implements NodeTransformer +{ + /** @var SplStack */ + private readonly SplStack $documentStack; + + public function __construct( + private readonly AnchorNormalizer $anchorReducer, + private LoggerInterface|null $logger = null, + ) { + /* + * TODO: remove stack here, as we should not have sub documents in this way, sub documents are + * now produced by the {@see \phpDocumentor\Guides\RestructuredText\MarkupLanguageParser::getSubParser} + * as this works right now in isolation includes do not work as they should. + */ + $this->documentStack = new SplStack(); + } + + public function enterNode(Node $node, CompilerContextInterface $compilerContext): Node + { + if ($node instanceof DocumentNode) { + $this->documentStack->push($node); + return $node; + } + if ($node instanceof SectionNode) { + return $node; + } + + if ($node instanceof LinkTargetNode) { + if ($node instanceof OptionalLinkTargetsNode && $node->isNoindex()) { + return $node; + } + if ($node->getLinkText() === SectionNode::STD_LABEL) { + return $node; + } + + $currentDocument = $this->documentStack->top(); + Assert::notNull($currentDocument); + $anchor = $this->anchorReducer->reduceAnchor($node->getId()); + $prefix = ''; + if ($node instanceof PrefixedLinkTargetNode) { + $prefix = $node->getPrefix(); + } + + $this->addLinkTargetToProject( + $compilerContext, + new InternalTarget( + $currentDocument->getFilePath(), + $prefix . $anchor, + $node->getLinkText(), + SectionNode::STD_LABEL, + ), + ); + if ($node instanceof MultipleLinkTargetsNode) { + foreach ($node->getAdditionalIds() as $id) { + $anchor = $this->anchorReducer->reduceAnchor($id); + $this->addLinkTargetToProject( + $compilerContext, + new InternalTarget( + $currentDocument->getFilePath(), + $prefix . $anchor, + $node->getLinkText(), + SectionNode::STD_LABEL, + ), + ); + } + } + } + + return $node; + } + + public function leaveNode(Node $node, CompilerContextInterface $compilerContext): Node|null + { + if ($node instanceof DocumentNode) { + $this->documentStack->pop(); + } + + return $node; + } + + public function supports(Node $node): bool + { + return $node instanceof DocumentNode || $node instanceof LinkTargetNode; + } + + public function getPriority(): int + { + // After CollectLinkTargetsTransformer + return 4000; + } + + private function addLinkTargetToProject(CompilerContextInterface $compilerContext, InternalTarget $internalTarget): void + { + if ($compilerContext->getProjectNode()->hasInternalTarget($internalTarget->getAnchor(), $internalTarget->getLinkType())) { + $otherLink = $compilerContext->getProjectNode()->getInternalTarget($internalTarget->getAnchor(), $internalTarget->getLinkType()); + $this->logger?->warning( + sprintf( + 'Duplicate anchor "%s" for link type "%s" in document "%s". The anchor is already used at "%s"', + $internalTarget->getAnchor(), + $internalTarget->getLinkType(), + $compilerContext->getDocumentNode()->getFilePath(), + $otherLink?->getDocumentPath(), + ), + $compilerContext->getLoggerInformation(), + ); + + return; + } + + try { + $compilerContext->getProjectNode()->addLinkTarget( + $internalTarget->getAnchor(), + $internalTarget, + ); + } catch (DuplicateLinkAnchorException $exception) { + $this->logger?->warning($exception->getMessage(), $compilerContext->getLoggerInformation()); + } + } +} diff --git a/packages/typo3-docs-theme/src/Twig/TwigExtension.php b/packages/typo3-docs-theme/src/Twig/TwigExtension.php index 0a1eb3b2d..976448308 100644 --- a/packages/typo3-docs-theme/src/Twig/TwigExtension.php +++ b/packages/typo3-docs-theme/src/Twig/TwigExtension.php @@ -12,6 +12,7 @@ use phpDocumentor\Guides\Nodes\Metadata\NoSearchNode; use phpDocumentor\Guides\Nodes\Metadata\OrphanNode; use phpDocumentor\Guides\Nodes\Node; +use phpDocumentor\Guides\Nodes\PrefixedLinkTargetNode; use phpDocumentor\Guides\Nodes\SectionNode; use phpDocumentor\Guides\ReferenceResolvers\DocumentNameResolverInterface; use phpDocumentor\Guides\RenderContext; @@ -201,27 +202,30 @@ public function isNoSearch(array $context): bool public function getRstCodeForLink(array $context, LinkTargetNode $linkTargetNode): string { $interlink = $this->themeSettings->getSettings('interlink_shortcode') !== '' ? $this->themeSettings->getSettings('interlink_shortcode') : 'somemanual'; - if ($linkTargetNode->getLinkType() === ConfvalNode::LINK_TYPE) { + if ($linkTargetNode instanceof PrefixedLinkTargetNode && $linkTargetNode->getLinkType() === ConfvalNode::LINK_TYPE) { return sprintf( - ':confval:`%s <%s:%s>`', + ':ref:`%s <%s:%s%s>`', $linkTargetNode->getLinkText(), $interlink, + $linkTargetNode->getPrefix(), $linkTargetNode->getId() ); } - if ($linkTargetNode->getLinkType() === ViewHelperNode::LINK_TYPE) { + if ($linkTargetNode instanceof PrefixedLinkTargetNode && $linkTargetNode->getLinkType() === ViewHelperNode::LINK_TYPE) { return sprintf( - ':typo3:viewhelper:`%s <%s:%s>`', + ':ref:`%s <%s:%s%s>`', $linkTargetNode->getLinkText(), $interlink, + $linkTargetNode->getPrefix(), $linkTargetNode->getId() ); } - if ($linkTargetNode->getLinkType() === ViewHelperArgumentNode::LINK_TYPE) { + if ($linkTargetNode instanceof PrefixedLinkTargetNode && $linkTargetNode->getLinkType() === ViewHelperArgumentNode::LINK_TYPE) { return sprintf( - ':typo3:viewhelper-argument:`%s <%s:%s>`', + ':ref:`%s <%s:%s%s>`', $linkTargetNode->getLinkText(), $interlink, + $linkTargetNode->getPrefix(), $linkTargetNode->getId() ); } diff --git a/tests/Integration/tests/confval/confval-basic/expected/index.html b/tests/Integration/tests/confval/confval-basic/expected/index.html index 075b7f768..a8faab2a8 100644 --- a/tests/Integration/tests/confval/confval-basic/expected/index.html +++ b/tests/Integration/tests/confval/confval-basic/expected/index.html @@ -16,7 +16,7 @@

demo

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo" - data-rstCode=":confval:`demo <somemanual:demo>`" + data-rstCode=":ref:`demo <somemanual:confval-demo>`" title="Reference this configuration value"> @@ -41,7 +41,7 @@

demo

-

See also demo.

+

See also demo or demo.

diff --git a/tests/Integration/tests/confval/confval-basic/input/index.rst b/tests/Integration/tests/confval/confval-basic/input/index.rst index 7a182d0d4..a88389333 100644 --- a/tests/Integration/tests/confval/confval-basic/input/index.rst +++ b/tests/Integration/tests/confval/confval-basic/input/index.rst @@ -9,4 +9,4 @@ Confval Some Text -See also :confval:`demo`. +See also :confval:`demo` or :ref:`demo `. diff --git a/tests/Integration/tests/confval/confval-duplicate-with-name/expected/anotherDomain.html b/tests/Integration/tests/confval/confval-duplicate-with-name/expected/anotherDomain.html index 75f94c9d1..ba4da6d01 100644 --- a/tests/Integration/tests/confval/confval-duplicate-with-name/expected/anotherDomain.html +++ b/tests/Integration/tests/confval/confval-duplicate-with-name/expected/anotherDomain.html @@ -16,7 +16,7 @@

demo

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-another-demo" - data-rstCode=":confval:`demo <somemanual:another-demo>`" + data-rstCode=":ref:`demo <somemanual:confval-another-demo>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/confval/confval-duplicate-with-name/expected/index.html b/tests/Integration/tests/confval/confval-duplicate-with-name/expected/index.html index 926346aff..30aaf929c 100644 --- a/tests/Integration/tests/confval/confval-duplicate-with-name/expected/index.html +++ b/tests/Integration/tests/confval/confval-duplicate-with-name/expected/index.html @@ -16,7 +16,7 @@

demo

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo" - data-rstCode=":confval:`demo <somemanual:demo>`" + data-rstCode=":ref:`demo <somemanual:confval-demo>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/confval/confval-duplicate/expected/anotherDomain.html b/tests/Integration/tests/confval/confval-duplicate/expected/anotherDomain.html index fe0182775..50e6beb30 100644 --- a/tests/Integration/tests/confval/confval-duplicate/expected/anotherDomain.html +++ b/tests/Integration/tests/confval/confval-duplicate/expected/anotherDomain.html @@ -16,7 +16,7 @@

demo

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo" - data-rstCode=":confval:`demo <somemanual:demo>`" + data-rstCode=":ref:`demo <somemanual:confval-demo>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/confval/confval-duplicate/expected/index.html b/tests/Integration/tests/confval/confval-duplicate/expected/index.html index e165a21b7..16653d474 100644 --- a/tests/Integration/tests/confval/confval-duplicate/expected/index.html +++ b/tests/Integration/tests/confval/confval-duplicate/expected/index.html @@ -16,7 +16,7 @@

demo

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo" - data-rstCode=":confval:`demo <somemanual:demo>`" + data-rstCode=":ref:`demo <somemanual:confval-demo>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/confval/confval-menu-tree-anchor/expected/index.html b/tests/Integration/tests/confval/confval-menu-tree-anchor/expected/index.html index 0665b9274..7d6fac81b 100644 --- a/tests/Integration/tests/confval/confval-menu-tree-anchor/expected/index.html +++ b/tests/Integration/tests/confval/confval-menu-tree-anchor/expected/index.html @@ -60,7 +60,7 @@

array of cObjects

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-case-array" - data-rstCode=":confval:`array of cObjects <somemanual:case-array>`" + data-rstCode=":ref:`array of cObjects <somemanual:confval-case-array>`" title="Reference this configuration value"> @@ -100,7 +100,7 @@

cache

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-case-cache" - data-rstCode=":confval:`cache <somemanual:case-cache>`" + data-rstCode=":ref:`cache <somemanual:confval-case-cache>`" title="Reference this configuration value"> @@ -137,7 +137,7 @@

default

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-case-default" - data-rstCode=":confval:`default <somemanual:case-default>`" + data-rstCode=":ref:`default <somemanual:confval-case-default>`" title="Reference this configuration value"> @@ -178,7 +178,7 @@

if

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-case-if" - data-rstCode=":confval:`if <somemanual:case-if>`" + data-rstCode=":ref:`if <somemanual:confval-case-if>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/confval/confval-menu-tree-multiple/expected/index.html b/tests/Integration/tests/confval/confval-menu-tree-multiple/expected/index.html index 7dd6c8a47..1a04584ad 100644 --- a/tests/Integration/tests/confval/confval-menu-tree-multiple/expected/index.html +++ b/tests/Integration/tests/confval/confval-menu-tree-multiple/expected/index.html @@ -64,7 +64,7 @@

array of cObjects

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-case-array" - data-rstCode=":confval:`array of cObjects <somemanual:case-array>`" + data-rstCode=":ref:`array of cObjects <somemanual:confval-case-array>`" title="Reference this configuration value"> @@ -103,7 +103,7 @@

cache

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-case-cache" - data-rstCode=":confval:`cache <somemanual:case-cache>`" + data-rstCode=":ref:`cache <somemanual:confval-case-cache>`" title="Reference this configuration value"> @@ -139,7 +139,7 @@

default

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-case-default" - data-rstCode=":confval:`default <somemanual:case-default>`" + data-rstCode=":ref:`default <somemanual:confval-case-default>`" title="Reference this configuration value"> @@ -178,7 +178,7 @@

if

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-case-if" - data-rstCode=":confval:`if <somemanual:case-if>`" + data-rstCode=":ref:`if <somemanual:confval-case-if>`" title="Reference this configuration value"> @@ -254,7 +254,7 @@

1,2,3,4...

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-coa-array" - data-rstCode=":confval:`1,2,3,4... <somemanual:coa-array>`" + data-rstCode=":ref:`1,2,3,4... <somemanual:confval-coa-array>`" title="Reference this configuration value"> @@ -291,7 +291,7 @@

cache

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-coa-cache" - data-rstCode=":confval:`cache <somemanual:coa-cache>`" + data-rstCode=":ref:`cache <somemanual:confval-coa-cache>`" title="Reference this configuration value"> @@ -327,7 +327,7 @@

if

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-coa-if" - data-rstCode=":confval:`if <somemanual:coa-if>`" + data-rstCode=":ref:`if <somemanual:confval-coa-if>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/confval/confval-menu-tree/expected/index.html b/tests/Integration/tests/confval/confval-menu-tree/expected/index.html index 0c8d620b8..b11bb6760 100644 --- a/tests/Integration/tests/confval/confval-menu-tree/expected/index.html +++ b/tests/Integration/tests/confval/confval-menu-tree/expected/index.html @@ -667,7 +667,7 @@

demo 1

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo-1" - data-rstCode=":confval:`demo 1 <somemanual:demo-1>`" + data-rstCode=":ref:`demo 1 <somemanual:confval-demo-1>`" title="Reference this configuration value"> @@ -709,7 +709,7 @@

demo 2

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo-2" - data-rstCode=":confval:`demo 2 <somemanual:demo-2>`" + data-rstCode=":ref:`demo 2 <somemanual:confval-demo-2>`" title="Reference this configuration value"> @@ -746,7 +746,7 @@

demo 2.1

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo-2-1" - data-rstCode=":confval:`demo 2.1 <somemanual:demo-2-1>`" + data-rstCode=":ref:`demo 2.1 <somemanual:confval-demo-2-1>`" title="Reference this configuration value"> @@ -783,7 +783,7 @@

demo 2.1.1

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo-2-1-1" - data-rstCode=":confval:`demo 2.1.1 <somemanual:demo-2-1-1>`" + data-rstCode=":ref:`demo 2.1.1 <somemanual:confval-demo-2-1-1>`" title="Reference this configuration value"> @@ -824,7 +824,7 @@

demo 2.1.2

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo-2-1-2" - data-rstCode=":confval:`demo 2.1.2 <somemanual:demo-2-1-2>`" + data-rstCode=":ref:`demo 2.1.2 <somemanual:confval-demo-2-1-2>`" title="Reference this configuration value"> @@ -869,7 +869,7 @@

demo 2.2

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo-2-2" - data-rstCode=":confval:`demo 2.2 <somemanual:demo-2-2>`" + data-rstCode=":ref:`demo 2.2 <somemanual:confval-demo-2-2>`" title="Reference this configuration value"> @@ -915,7 +915,7 @@

demo 3

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo-3" - data-rstCode=":confval:`demo 3 <somemanual:demo-3>`" + data-rstCode=":ref:`demo 3 <somemanual:confval-demo-3>`" title="Reference this configuration value"> @@ -957,7 +957,7 @@

demo 4

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo-4" - data-rstCode=":confval:`demo 4 <somemanual:demo-4>`" + data-rstCode=":ref:`demo 4 <somemanual:confval-demo-4>`" title="Reference this configuration value"> @@ -999,7 +999,7 @@

exclude in table

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-exclude-in-table" - data-rstCode=":confval:`exclude in table <somemanual:exclude-in-table>`" + data-rstCode=":ref:`exclude in table <somemanual:confval-exclude-in-table>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/confval/confval-noindex/expected/anotherDomain.html b/tests/Integration/tests/confval/confval-noindex/expected/anotherDomain.html index fe0182775..50e6beb30 100644 --- a/tests/Integration/tests/confval/confval-noindex/expected/anotherDomain.html +++ b/tests/Integration/tests/confval/confval-noindex/expected/anotherDomain.html @@ -16,7 +16,7 @@

demo

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-demo" - data-rstCode=":confval:`demo <somemanual:demo>`" + data-rstCode=":ref:`demo <somemanual:confval-demo>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/site-set-category/expected/index.html b/tests/Integration/tests/site-set-category/expected/index.html index f2d18e48c..da47c3c90 100644 --- a/tests/Integration/tests/site-set-category/expected/index.html +++ b/tests/Integration/tests/site-set-category/expected/index.html @@ -399,7 +399,7 @@

fsc

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-category-fsc" - data-rstCode=":confval:`fsc <somemanual:felogin-category-fsc>`" + data-rstCode=":ref:`fsc <somemanual:confval-felogin-category-fsc>`" title="Reference this configuration value"> @@ -428,7 +428,7 @@

fsc.templates

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-category-fsc-templates" - data-rstCode=":confval:`fsc.templates <somemanual:felogin-category-fsc-templates>`" + data-rstCode=":ref:`fsc.templates <somemanual:confval-felogin-category-fsc-templates>`" title="Reference this configuration value"> @@ -457,7 +457,7 @@

styles.templates.templateRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-templates-templaterootpath" - data-rstCode=":confval:`styles.templates.templateRootPath <somemanual:felogin-styles-templates-templaterootpath>`" + data-rstCode=":ref:`styles.templates.templateRootPath <somemanual:confval-felogin-styles-templates-templaterootpath>`" title="Reference this configuration value"> @@ -500,7 +500,7 @@

styles.templates.partialRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-templates-partialrootpath" - data-rstCode=":confval:`styles.templates.partialRootPath <somemanual:felogin-styles-templates-partialrootpath>`" + data-rstCode=":ref:`styles.templates.partialRootPath <somemanual:confval-felogin-styles-templates-partialrootpath>`" title="Reference this configuration value"> @@ -543,7 +543,7 @@

styles.templates.layoutRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-templates-layoutrootpath" - data-rstCode=":confval:`styles.templates.layoutRootPath <somemanual:felogin-styles-templates-layoutrootpath>`" + data-rstCode=":ref:`styles.templates.layoutRootPath <somemanual:confval-felogin-styles-templates-layoutrootpath>`" title="Reference this configuration value"> @@ -590,7 +590,7 @@

fsc.content

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-category-fsc-content" - data-rstCode=":confval:`fsc.content <somemanual:felogin-category-fsc-content>`" + data-rstCode=":ref:`fsc.content <somemanual:confval-felogin-category-fsc-content>`" title="Reference this configuration value"> @@ -619,7 +619,7 @@

styles.content.defaultHeaderType

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-defaultheadertype" - data-rstCode=":confval:`styles.content.defaultHeaderType <somemanual:felogin-styles-content-defaultheadertype>`" + data-rstCode=":ref:`styles.content.defaultHeaderType <somemanual:confval-felogin-styles-content-defaultheadertype>`" title="Reference this configuration value"> @@ -671,7 +671,7 @@

styles.content.shortcut.tables

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-shortcut-tables" - data-rstCode=":confval:`styles.content.shortcut.tables <somemanual:felogin-styles-content-shortcut-tables>`" + data-rstCode=":ref:`styles.content.shortcut.tables <somemanual:confval-felogin-styles-content-shortcut-tables>`" title="Reference this configuration value"> @@ -721,7 +721,7 @@

styles.content.allowTags

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-allowtags" - data-rstCode=":confval:`styles.content.allowTags <somemanual:felogin-styles-content-allowtags>`" + data-rstCode=":ref:`styles.content.allowTags <somemanual:confval-felogin-styles-content-allowtags>`" title="Reference this configuration value"> @@ -771,7 +771,7 @@

styles.content.image.lazyLoading

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-image-lazyloading" - data-rstCode=":confval:`styles.content.image.lazyLoading <somemanual:felogin-styles-content-image-lazyloading>`" + data-rstCode=":ref:`styles.content.image.lazyLoading <somemanual:confval-felogin-styles-content-image-lazyloading>`" title="Reference this configuration value"> @@ -830,7 +830,7 @@

styles.content.image.imageDecoding

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-image-imagedecoding" - data-rstCode=":confval:`styles.content.image.imageDecoding <somemanual:felogin-styles-content-image-imagedecoding>`" + data-rstCode=":ref:`styles.content.image.imageDecoding <somemanual:confval-felogin-styles-content-image-imagedecoding>`" title="Reference this configuration value"> @@ -882,7 +882,7 @@

styles.content.textmedia.maxW

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-maxw" - data-rstCode=":confval:`styles.content.textmedia.maxW <somemanual:felogin-styles-content-textmedia-maxw>`" + data-rstCode=":ref:`styles.content.textmedia.maxW <somemanual:confval-felogin-styles-content-textmedia-maxw>`" title="Reference this configuration value"> @@ -934,7 +934,7 @@

styles.content.textmedia.maxWInText

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-maxwintext" - data-rstCode=":confval:`styles.content.textmedia.maxWInText <somemanual:felogin-styles-content-textmedia-maxwintext>`" + data-rstCode=":ref:`styles.content.textmedia.maxWInText <somemanual:confval-felogin-styles-content-textmedia-maxwintext>`" title="Reference this configuration value"> @@ -986,7 +986,7 @@

styles.content.textmedia.columnSpacing

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-columnspacing" - data-rstCode=":confval:`styles.content.textmedia.columnSpacing <somemanual:felogin-styles-content-textmedia-columnspacing>`" + data-rstCode=":ref:`styles.content.textmedia.columnSpacing <somemanual:confval-felogin-styles-content-textmedia-columnspacing>`" title="Reference this configuration value"> @@ -1038,7 +1038,7 @@

styles.content.textmedia.rowSpacing

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-rowspacing" - data-rstCode=":confval:`styles.content.textmedia.rowSpacing <somemanual:felogin-styles-content-textmedia-rowspacing>`" + data-rstCode=":ref:`styles.content.textmedia.rowSpacing <somemanual:confval-felogin-styles-content-textmedia-rowspacing>`" title="Reference this configuration value"> @@ -1090,7 +1090,7 @@

styles.content.textmedia.textMargin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-textmargin" - data-rstCode=":confval:`styles.content.textmedia.textMargin <somemanual:felogin-styles-content-textmedia-textmargin>`" + data-rstCode=":ref:`styles.content.textmedia.textMargin <somemanual:confval-felogin-styles-content-textmedia-textmargin>`" title="Reference this configuration value"> @@ -1142,7 +1142,7 @@

styles.content.textmedia.borderColor

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-bordercolor" - data-rstCode=":confval:`styles.content.textmedia.borderColor <somemanual:felogin-styles-content-textmedia-bordercolor>`" + data-rstCode=":ref:`styles.content.textmedia.borderColor <somemanual:confval-felogin-styles-content-textmedia-bordercolor>`" title="Reference this configuration value"> @@ -1194,7 +1194,7 @@

styles.content.textmedia.borderWidth

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-borderwidth" - data-rstCode=":confval:`styles.content.textmedia.borderWidth <somemanual:felogin-styles-content-textmedia-borderwidth>`" + data-rstCode=":ref:`styles.content.textmedia.borderWidth <somemanual:confval-felogin-styles-content-textmedia-borderwidth>`" title="Reference this configuration value"> @@ -1246,7 +1246,7 @@

styles.content.textmedia.borderPadding

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-borderpadding" - data-rstCode=":confval:`styles.content.textmedia.borderPadding <somemanual:felogin-styles-content-textmedia-borderpadding>`" + data-rstCode=":ref:`styles.content.textmedia.borderPadding <somemanual:confval-felogin-styles-content-textmedia-borderpadding>`" title="Reference this configuration value"> @@ -1298,7 +1298,7 @@

styles.content.textmedia.linkWrap.width

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-linkwrap-width" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.width <somemanual:felogin-styles-content-textmedia-linkwrap-width>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.width <somemanual:confval-felogin-styles-content-textmedia-linkwrap-width>`" title="Reference this configuration value"> @@ -1350,7 +1350,7 @@

styles.content.textmedia.linkWrap.height

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-linkwrap-height" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.height <somemanual:felogin-styles-content-textmedia-linkwrap-height>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.height <somemanual:confval-felogin-styles-content-textmedia-linkwrap-height>`" title="Reference this configuration value"> @@ -1402,7 +1402,7 @@

styles.content.textmedia.linkWrap.newWindow

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-linkwrap-newwindow" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.newWindow <somemanual:felogin-styles-content-textmedia-linkwrap-newwindow>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.newWindow <somemanual:confval-felogin-styles-content-textmedia-linkwrap-newwindow>`" title="Reference this configuration value"> @@ -1454,7 +1454,7 @@

styles.content.textmedia.linkWrap.lightboxEnabled

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-linkwrap-lightboxenabled" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.lightboxEnabled <somemanual:felogin-styles-content-textmedia-linkwrap-lightboxenabled>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.lightboxEnabled <somemanual:confval-felogin-styles-content-textmedia-linkwrap-lightboxenabled>`" title="Reference this configuration value"> @@ -1506,7 +1506,7 @@

styles.content.textmedia.linkWrap.lightboxCssClass

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-linkwrap-lightboxcssclass" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.lightboxCssClass <somemanual:felogin-styles-content-textmedia-linkwrap-lightboxcssclass>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.lightboxCssClass <somemanual:confval-felogin-styles-content-textmedia-linkwrap-lightboxcssclass>`" title="Reference this configuration value"> @@ -1558,7 +1558,7 @@

styles.content.textmedia.linkWrap.lightboxRelAttribute

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-textmedia-linkwrap-lightboxrelattribute" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.lightboxRelAttribute <somemanual:felogin-styles-content-textmedia-linkwrap-lightboxrelattribute>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.lightboxRelAttribute <somemanual:confval-felogin-styles-content-textmedia-linkwrap-lightboxrelattribute>`" title="Reference this configuration value"> @@ -1610,7 +1610,7 @@

styles.content.links.extTarget

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-links-exttarget" - data-rstCode=":confval:`styles.content.links.extTarget <somemanual:felogin-styles-content-links-exttarget>`" + data-rstCode=":ref:`styles.content.links.extTarget <somemanual:confval-felogin-styles-content-links-exttarget>`" title="Reference this configuration value"> @@ -1660,7 +1660,7 @@

styles.content.links.keep

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-styles-content-links-keep" - data-rstCode=":confval:`styles.content.links.keep <somemanual:felogin-styles-content-links-keep>`" + data-rstCode=":ref:`styles.content.links.keep <somemanual:confval-felogin-styles-content-links-keep>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/site-set-ext-syntax/expected/index.html b/tests/Integration/tests/site-set-ext-syntax/expected/index.html index 9f128fce8..bf298f1d4 100644 --- a/tests/Integration/tests/site-set-ext-syntax/expected/index.html +++ b/tests/Integration/tests/site-set-ext-syntax/expected/index.html @@ -378,7 +378,7 @@

_global

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-category-global" - data-rstCode=":confval:`_global <somemanual:fluid-styled-content-category-global>`" + data-rstCode=":ref:`_global <somemanual:confval-fluid-styled-content-category-global>`" title="Reference this configuration value"> @@ -404,7 +404,7 @@

styles.content.defaultHeaderType

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-defaultheadertype" - data-rstCode=":confval:`styles.content.defaultHeaderType <somemanual:fluid-styled-content-styles-content-defaultheadertype>`" + data-rstCode=":ref:`styles.content.defaultHeaderType <somemanual:confval-fluid-styled-content-styles-content-defaultheadertype>`" title="Reference this configuration value"> @@ -453,7 +453,7 @@

styles.content.shortcut.tables

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-shortcut-tables" - data-rstCode=":confval:`styles.content.shortcut.tables <somemanual:fluid-styled-content-styles-content-shortcut-tables>`" + data-rstCode=":ref:`styles.content.shortcut.tables <somemanual:confval-fluid-styled-content-styles-content-shortcut-tables>`" title="Reference this configuration value"> @@ -501,7 +501,7 @@

styles.content.allowTags

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-allowtags" - data-rstCode=":confval:`styles.content.allowTags <somemanual:fluid-styled-content-styles-content-allowtags>`" + data-rstCode=":ref:`styles.content.allowTags <somemanual:confval-fluid-styled-content-styles-content-allowtags>`" title="Reference this configuration value"> @@ -549,7 +549,7 @@

styles.content.image.lazyLoading

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-image-lazyloading" - data-rstCode=":confval:`styles.content.image.lazyLoading <somemanual:fluid-styled-content-styles-content-image-lazyloading>`" + data-rstCode=":ref:`styles.content.image.lazyLoading <somemanual:confval-fluid-styled-content-styles-content-image-lazyloading>`" title="Reference this configuration value"> @@ -605,7 +605,7 @@

styles.content.image.imageDecoding

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-image-imagedecoding" - data-rstCode=":confval:`styles.content.image.imageDecoding <somemanual:fluid-styled-content-styles-content-image-imagedecoding>`" + data-rstCode=":ref:`styles.content.image.imageDecoding <somemanual:confval-fluid-styled-content-styles-content-image-imagedecoding>`" title="Reference this configuration value"> @@ -654,7 +654,7 @@

styles.content.textmedia.maxW

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-maxw" - data-rstCode=":confval:`styles.content.textmedia.maxW <somemanual:fluid-styled-content-styles-content-textmedia-maxw>`" + data-rstCode=":ref:`styles.content.textmedia.maxW <somemanual:confval-fluid-styled-content-styles-content-textmedia-maxw>`" title="Reference this configuration value"> @@ -703,7 +703,7 @@

styles.content.textmedia.maxWInText

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-maxwintext" - data-rstCode=":confval:`styles.content.textmedia.maxWInText <somemanual:fluid-styled-content-styles-content-textmedia-maxwintext>`" + data-rstCode=":ref:`styles.content.textmedia.maxWInText <somemanual:confval-fluid-styled-content-styles-content-textmedia-maxwintext>`" title="Reference this configuration value"> @@ -752,7 +752,7 @@

styles.content.textmedia.columnSpacing

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-columnspacing" - data-rstCode=":confval:`styles.content.textmedia.columnSpacing <somemanual:fluid-styled-content-styles-content-textmedia-columnspacing>`" + data-rstCode=":ref:`styles.content.textmedia.columnSpacing <somemanual:confval-fluid-styled-content-styles-content-textmedia-columnspacing>`" title="Reference this configuration value"> @@ -801,7 +801,7 @@

styles.content.textmedia.rowSpacing

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-rowspacing" - data-rstCode=":confval:`styles.content.textmedia.rowSpacing <somemanual:fluid-styled-content-styles-content-textmedia-rowspacing>`" + data-rstCode=":ref:`styles.content.textmedia.rowSpacing <somemanual:confval-fluid-styled-content-styles-content-textmedia-rowspacing>`" title="Reference this configuration value"> @@ -850,7 +850,7 @@

styles.content.textmedia.textMargin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-textmargin" - data-rstCode=":confval:`styles.content.textmedia.textMargin <somemanual:fluid-styled-content-styles-content-textmedia-textmargin>`" + data-rstCode=":ref:`styles.content.textmedia.textMargin <somemanual:confval-fluid-styled-content-styles-content-textmedia-textmargin>`" title="Reference this configuration value"> @@ -899,7 +899,7 @@

styles.content.textmedia.borderColor

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-bordercolor" - data-rstCode=":confval:`styles.content.textmedia.borderColor <somemanual:fluid-styled-content-styles-content-textmedia-bordercolor>`" + data-rstCode=":ref:`styles.content.textmedia.borderColor <somemanual:confval-fluid-styled-content-styles-content-textmedia-bordercolor>`" title="Reference this configuration value"> @@ -948,7 +948,7 @@

styles.content.textmedia.borderWidth

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-borderwidth" - data-rstCode=":confval:`styles.content.textmedia.borderWidth <somemanual:fluid-styled-content-styles-content-textmedia-borderwidth>`" + data-rstCode=":ref:`styles.content.textmedia.borderWidth <somemanual:confval-fluid-styled-content-styles-content-textmedia-borderwidth>`" title="Reference this configuration value"> @@ -997,7 +997,7 @@

styles.content.textmedia.borderPadding

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-borderpadding" - data-rstCode=":confval:`styles.content.textmedia.borderPadding <somemanual:fluid-styled-content-styles-content-textmedia-borderpadding>`" + data-rstCode=":ref:`styles.content.textmedia.borderPadding <somemanual:confval-fluid-styled-content-styles-content-textmedia-borderpadding>`" title="Reference this configuration value"> @@ -1046,7 +1046,7 @@

styles.content.textmedia.linkWrap.width

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-linkwrap-width" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.width <somemanual:fluid-styled-content-styles-content-textmedia-linkwrap-width>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.width <somemanual:confval-fluid-styled-content-styles-content-textmedia-linkwrap-width>`" title="Reference this configuration value"> @@ -1095,7 +1095,7 @@

styles.content.textmedia.linkWrap.height

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-linkwrap-height" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.height <somemanual:fluid-styled-content-styles-content-textmedia-linkwrap-height>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.height <somemanual:confval-fluid-styled-content-styles-content-textmedia-linkwrap-height>`" title="Reference this configuration value"> @@ -1144,7 +1144,7 @@

styles.content.textmedia.linkWrap.newWindow

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-linkwrap-newwindow" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.newWindow <somemanual:fluid-styled-content-styles-content-textmedia-linkwrap-newwindow>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.newWindow <somemanual:confval-fluid-styled-content-styles-content-textmedia-linkwrap-newwindow>`" title="Reference this configuration value"> @@ -1193,7 +1193,7 @@

styles.content.textmedia.linkWrap.lightboxEnabled

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-linkwrap-lightboxenabled" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.lightboxEnabled <somemanual:fluid-styled-content-styles-content-textmedia-linkwrap-lightboxenabled>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.lightboxEnabled <somemanual:confval-fluid-styled-content-styles-content-textmedia-linkwrap-lightboxenabled>`" title="Reference this configuration value"> @@ -1242,7 +1242,7 @@

styles.content.textmedia.linkWrap.lightboxCssClass

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-linkwrap-lightboxcssclass" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.lightboxCssClass <somemanual:fluid-styled-content-styles-content-textmedia-linkwrap-lightboxcssclass>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.lightboxCssClass <somemanual:confval-fluid-styled-content-styles-content-textmedia-linkwrap-lightboxcssclass>`" title="Reference this configuration value"> @@ -1291,7 +1291,7 @@

styles.content.textmedia.linkWrap.lightboxRelAttribute

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-textmedia-linkwrap-lightboxrelattribute" - data-rstCode=":confval:`styles.content.textmedia.linkWrap.lightboxRelAttribute <somemanual:fluid-styled-content-styles-content-textmedia-linkwrap-lightboxrelattribute>`" + data-rstCode=":ref:`styles.content.textmedia.linkWrap.lightboxRelAttribute <somemanual:confval-fluid-styled-content-styles-content-textmedia-linkwrap-lightboxrelattribute>`" title="Reference this configuration value"> @@ -1340,7 +1340,7 @@

styles.content.links.extTarget

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-links-exttarget" - data-rstCode=":confval:`styles.content.links.extTarget <somemanual:fluid-styled-content-styles-content-links-exttarget>`" + data-rstCode=":ref:`styles.content.links.extTarget <somemanual:confval-fluid-styled-content-styles-content-links-exttarget>`" title="Reference this configuration value"> @@ -1388,7 +1388,7 @@

styles.content.links.keep

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-content-links-keep" - data-rstCode=":confval:`styles.content.links.keep <somemanual:fluid-styled-content-styles-content-links-keep>`" + data-rstCode=":ref:`styles.content.links.keep <somemanual:confval-fluid-styled-content-styles-content-links-keep>`" title="Reference this configuration value"> @@ -1437,7 +1437,7 @@

styles.templates.templateRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-templates-templaterootpath" - data-rstCode=":confval:`styles.templates.templateRootPath <somemanual:fluid-styled-content-styles-templates-templaterootpath>`" + data-rstCode=":ref:`styles.templates.templateRootPath <somemanual:confval-fluid-styled-content-styles-templates-templaterootpath>`" title="Reference this configuration value"> @@ -1478,7 +1478,7 @@

styles.templates.partialRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-templates-partialrootpath" - data-rstCode=":confval:`styles.templates.partialRootPath <somemanual:fluid-styled-content-styles-templates-partialrootpath>`" + data-rstCode=":ref:`styles.templates.partialRootPath <somemanual:confval-fluid-styled-content-styles-templates-partialrootpath>`" title="Reference this configuration value"> @@ -1519,7 +1519,7 @@

styles.templates.layoutRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-fluid-styled-content-styles-templates-layoutrootpath" - data-rstCode=":confval:`styles.templates.layoutRootPath <somemanual:fluid-styled-content-styles-templates-layoutrootpath>`" + data-rstCode=":ref:`styles.templates.layoutRootPath <somemanual:confval-fluid-styled-content-styles-templates-layoutrootpath>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/site-set-labels-autoload/expected/index.html b/tests/Integration/tests/site-set-labels-autoload/expected/index.html index f7178c39a..5a7113836 100644 --- a/tests/Integration/tests/site-set-labels-autoload/expected/index.html +++ b/tests/Integration/tests/site-set-labels-autoload/expected/index.html @@ -392,7 +392,7 @@

_global

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-category-global" - data-rstCode=":confval:`_global <somemanual:felogin-category-global>`" + data-rstCode=":ref:`_global <somemanual:confval-felogin-category-global>`" title="Reference this configuration value"> @@ -418,7 +418,7 @@

felogin.pid

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-pid" - data-rstCode=":confval:`felogin.pid <somemanual:felogin-felogin-pid>`" + data-rstCode=":ref:`felogin.pid <somemanual:confval-felogin-felogin-pid>`" title="Reference this configuration value"> @@ -467,7 +467,7 @@

felogin.recursive

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-recursive" - data-rstCode=":confval:`felogin.recursive <somemanual:felogin-felogin-recursive>`" + data-rstCode=":ref:`felogin.recursive <somemanual:confval-felogin-felogin-recursive>`" title="Reference this configuration value"> @@ -526,7 +526,7 @@

felogin.showForgotPassword

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-showforgotpassword" - data-rstCode=":confval:`felogin.showForgotPassword <somemanual:felogin-felogin-showforgotpassword>`" + data-rstCode=":ref:`felogin.showForgotPassword <somemanual:confval-felogin-felogin-showforgotpassword>`" title="Reference this configuration value"> @@ -575,7 +575,7 @@

felogin.showPermaLogin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-showpermalogin" - data-rstCode=":confval:`felogin.showPermaLogin <somemanual:felogin-felogin-showpermalogin>`" + data-rstCode=":ref:`felogin.showPermaLogin <somemanual:confval-felogin-felogin-showpermalogin>`" title="Reference this configuration value"> @@ -624,7 +624,7 @@

felogin.showLogoutFormAfterLogin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-showlogoutformafterlogin" - data-rstCode=":confval:`felogin.showLogoutFormAfterLogin <somemanual:felogin-felogin-showlogoutformafterlogin>`" + data-rstCode=":ref:`felogin.showLogoutFormAfterLogin <somemanual:confval-felogin-felogin-showlogoutformafterlogin>`" title="Reference this configuration value"> @@ -673,7 +673,7 @@

felogin.emailFrom

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-emailfrom" - data-rstCode=":confval:`felogin.emailFrom <somemanual:felogin-felogin-emailfrom>`" + data-rstCode=":ref:`felogin.emailFrom <somemanual:confval-felogin-felogin-emailfrom>`" title="Reference this configuration value"> @@ -715,7 +715,7 @@

felogin.emailFromName

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-emailfromname" - data-rstCode=":confval:`felogin.emailFromName <somemanual:felogin-felogin-emailfromname>`" + data-rstCode=":ref:`felogin.emailFromName <somemanual:confval-felogin-felogin-emailfromname>`" title="Reference this configuration value"> @@ -757,7 +757,7 @@

felogin.replyToEmail

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-replytoemail" - data-rstCode=":confval:`felogin.replyToEmail <somemanual:felogin-felogin-replytoemail>`" + data-rstCode=":ref:`felogin.replyToEmail <somemanual:confval-felogin-felogin-replytoemail>`" title="Reference this configuration value"> @@ -799,7 +799,7 @@

felogin.dateFormat

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-dateformat" - data-rstCode=":confval:`felogin.dateFormat <somemanual:felogin-felogin-dateformat>`" + data-rstCode=":ref:`felogin.dateFormat <somemanual:confval-felogin-felogin-dateformat>`" title="Reference this configuration value"> @@ -848,7 +848,7 @@

felogin.email.layoutRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-layoutrootpath" - data-rstCode=":confval:`felogin.email.layoutRootPath <somemanual:felogin-felogin-email-layoutrootpath>`" + data-rstCode=":ref:`felogin.email.layoutRootPath <somemanual:confval-felogin-felogin-email-layoutrootpath>`" title="Reference this configuration value"> @@ -890,7 +890,7 @@

felogin.email.templateRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-templaterootpath" - data-rstCode=":confval:`felogin.email.templateRootPath <somemanual:felogin-felogin-email-templaterootpath>`" + data-rstCode=":ref:`felogin.email.templateRootPath <somemanual:confval-felogin-felogin-email-templaterootpath>`" title="Reference this configuration value"> @@ -939,7 +939,7 @@

felogin.email.partialRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-partialrootpath" - data-rstCode=":confval:`felogin.email.partialRootPath <somemanual:felogin-felogin-email-partialrootpath>`" + data-rstCode=":ref:`felogin.email.partialRootPath <somemanual:confval-felogin-felogin-email-partialrootpath>`" title="Reference this configuration value"> @@ -981,7 +981,7 @@

felogin.email.templateName

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-templatename" - data-rstCode=":confval:`felogin.email.templateName <somemanual:felogin-felogin-email-templatename>`" + data-rstCode=":ref:`felogin.email.templateName <somemanual:confval-felogin-felogin-email-templatename>`" title="Reference this configuration value"> @@ -1030,7 +1030,7 @@

felogin.redirectMode

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectmode" - data-rstCode=":confval:`felogin.redirectMode <somemanual:felogin-felogin-redirectmode>`" + data-rstCode=":ref:`felogin.redirectMode <somemanual:confval-felogin-felogin-redirectmode>`" title="Reference this configuration value"> @@ -1072,7 +1072,7 @@

felogin.redirectFirstMethod

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectfirstmethod" - data-rstCode=":confval:`felogin.redirectFirstMethod <somemanual:felogin-felogin-redirectfirstmethod>`" + data-rstCode=":ref:`felogin.redirectFirstMethod <somemanual:confval-felogin-felogin-redirectfirstmethod>`" title="Reference this configuration value"> @@ -1121,7 +1121,7 @@

felogin.redirectPageLogin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectpagelogin" - data-rstCode=":confval:`felogin.redirectPageLogin <somemanual:felogin-felogin-redirectpagelogin>`" + data-rstCode=":ref:`felogin.redirectPageLogin <somemanual:confval-felogin-felogin-redirectpagelogin>`" title="Reference this configuration value"> @@ -1170,7 +1170,7 @@

felogin.redirectPageLoginError

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectpageloginerror" - data-rstCode=":confval:`felogin.redirectPageLoginError <somemanual:felogin-felogin-redirectpageloginerror>`" + data-rstCode=":ref:`felogin.redirectPageLoginError <somemanual:confval-felogin-felogin-redirectpageloginerror>`" title="Reference this configuration value"> @@ -1219,7 +1219,7 @@

felogin.redirectPageLogout

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectpagelogout" - data-rstCode=":confval:`felogin.redirectPageLogout <somemanual:felogin-felogin-redirectpagelogout>`" + data-rstCode=":ref:`felogin.redirectPageLogout <somemanual:confval-felogin-felogin-redirectpagelogout>`" title="Reference this configuration value"> @@ -1268,7 +1268,7 @@

felogin.redirectDisable

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectdisable" - data-rstCode=":confval:`felogin.redirectDisable <somemanual:felogin-felogin-redirectdisable>`" + data-rstCode=":ref:`felogin.redirectDisable <somemanual:confval-felogin-felogin-redirectdisable>`" title="Reference this configuration value"> @@ -1317,7 +1317,7 @@

felogin.forgotLinkHashValidTime

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-forgotlinkhashvalidtime" - data-rstCode=":confval:`felogin.forgotLinkHashValidTime <somemanual:felogin-felogin-forgotlinkhashvalidtime>`" + data-rstCode=":ref:`felogin.forgotLinkHashValidTime <somemanual:confval-felogin-felogin-forgotlinkhashvalidtime>`" title="Reference this configuration value"> @@ -1366,7 +1366,7 @@

felogin.domains

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-domains" - data-rstCode=":confval:`felogin.domains <somemanual:felogin-felogin-domains>`" + data-rstCode=":ref:`felogin.domains <somemanual:confval-felogin-felogin-domains>`" title="Reference this configuration value"> @@ -1408,7 +1408,7 @@

felogin.exposeNonexistentUserInForgotPasswordDialog

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-exposenonexistentuserinforgotpassworddialog" - data-rstCode=":confval:`felogin.exposeNonexistentUserInForgotPasswordDialog <somemanual:felogin-felogin-exposenonexistentuserinforgotpassworddialog>`" + data-rstCode=":ref:`felogin.exposeNonexistentUserInForgotPasswordDialog <somemanual:confval-felogin-felogin-exposenonexistentuserinforgotpassworddialog>`" title="Reference this configuration value"> @@ -1457,7 +1457,7 @@

felogin.view.templateRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-view-templaterootpath" - data-rstCode=":confval:`felogin.view.templateRootPath <somemanual:felogin-felogin-view-templaterootpath>`" + data-rstCode=":ref:`felogin.view.templateRootPath <somemanual:confval-felogin-felogin-view-templaterootpath>`" title="Reference this configuration value"> @@ -1499,7 +1499,7 @@

felogin.view.partialRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-view-partialrootpath" - data-rstCode=":confval:`felogin.view.partialRootPath <somemanual:felogin-felogin-view-partialrootpath>`" + data-rstCode=":ref:`felogin.view.partialRootPath <somemanual:confval-felogin-felogin-view-partialrootpath>`" title="Reference this configuration value"> @@ -1541,7 +1541,7 @@

felogin.view.layoutRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-view-layoutrootpath" - data-rstCode=":confval:`felogin.view.layoutRootPath <somemanual:felogin-felogin-view-layoutrootpath>`" + data-rstCode=":ref:`felogin.view.layoutRootPath <somemanual:confval-felogin-felogin-view-layoutrootpath>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/site-set-labels/expected/index.html b/tests/Integration/tests/site-set-labels/expected/index.html index f7178c39a..5a7113836 100644 --- a/tests/Integration/tests/site-set-labels/expected/index.html +++ b/tests/Integration/tests/site-set-labels/expected/index.html @@ -392,7 +392,7 @@

_global

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-category-global" - data-rstCode=":confval:`_global <somemanual:felogin-category-global>`" + data-rstCode=":ref:`_global <somemanual:confval-felogin-category-global>`" title="Reference this configuration value"> @@ -418,7 +418,7 @@

felogin.pid

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-pid" - data-rstCode=":confval:`felogin.pid <somemanual:felogin-felogin-pid>`" + data-rstCode=":ref:`felogin.pid <somemanual:confval-felogin-felogin-pid>`" title="Reference this configuration value"> @@ -467,7 +467,7 @@

felogin.recursive

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-recursive" - data-rstCode=":confval:`felogin.recursive <somemanual:felogin-felogin-recursive>`" + data-rstCode=":ref:`felogin.recursive <somemanual:confval-felogin-felogin-recursive>`" title="Reference this configuration value"> @@ -526,7 +526,7 @@

felogin.showForgotPassword

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-showforgotpassword" - data-rstCode=":confval:`felogin.showForgotPassword <somemanual:felogin-felogin-showforgotpassword>`" + data-rstCode=":ref:`felogin.showForgotPassword <somemanual:confval-felogin-felogin-showforgotpassword>`" title="Reference this configuration value"> @@ -575,7 +575,7 @@

felogin.showPermaLogin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-showpermalogin" - data-rstCode=":confval:`felogin.showPermaLogin <somemanual:felogin-felogin-showpermalogin>`" + data-rstCode=":ref:`felogin.showPermaLogin <somemanual:confval-felogin-felogin-showpermalogin>`" title="Reference this configuration value"> @@ -624,7 +624,7 @@

felogin.showLogoutFormAfterLogin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-showlogoutformafterlogin" - data-rstCode=":confval:`felogin.showLogoutFormAfterLogin <somemanual:felogin-felogin-showlogoutformafterlogin>`" + data-rstCode=":ref:`felogin.showLogoutFormAfterLogin <somemanual:confval-felogin-felogin-showlogoutformafterlogin>`" title="Reference this configuration value"> @@ -673,7 +673,7 @@

felogin.emailFrom

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-emailfrom" - data-rstCode=":confval:`felogin.emailFrom <somemanual:felogin-felogin-emailfrom>`" + data-rstCode=":ref:`felogin.emailFrom <somemanual:confval-felogin-felogin-emailfrom>`" title="Reference this configuration value"> @@ -715,7 +715,7 @@

felogin.emailFromName

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-emailfromname" - data-rstCode=":confval:`felogin.emailFromName <somemanual:felogin-felogin-emailfromname>`" + data-rstCode=":ref:`felogin.emailFromName <somemanual:confval-felogin-felogin-emailfromname>`" title="Reference this configuration value"> @@ -757,7 +757,7 @@

felogin.replyToEmail

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-replytoemail" - data-rstCode=":confval:`felogin.replyToEmail <somemanual:felogin-felogin-replytoemail>`" + data-rstCode=":ref:`felogin.replyToEmail <somemanual:confval-felogin-felogin-replytoemail>`" title="Reference this configuration value"> @@ -799,7 +799,7 @@

felogin.dateFormat

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-dateformat" - data-rstCode=":confval:`felogin.dateFormat <somemanual:felogin-felogin-dateformat>`" + data-rstCode=":ref:`felogin.dateFormat <somemanual:confval-felogin-felogin-dateformat>`" title="Reference this configuration value"> @@ -848,7 +848,7 @@

felogin.email.layoutRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-layoutrootpath" - data-rstCode=":confval:`felogin.email.layoutRootPath <somemanual:felogin-felogin-email-layoutrootpath>`" + data-rstCode=":ref:`felogin.email.layoutRootPath <somemanual:confval-felogin-felogin-email-layoutrootpath>`" title="Reference this configuration value"> @@ -890,7 +890,7 @@

felogin.email.templateRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-templaterootpath" - data-rstCode=":confval:`felogin.email.templateRootPath <somemanual:felogin-felogin-email-templaterootpath>`" + data-rstCode=":ref:`felogin.email.templateRootPath <somemanual:confval-felogin-felogin-email-templaterootpath>`" title="Reference this configuration value"> @@ -939,7 +939,7 @@

felogin.email.partialRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-partialrootpath" - data-rstCode=":confval:`felogin.email.partialRootPath <somemanual:felogin-felogin-email-partialrootpath>`" + data-rstCode=":ref:`felogin.email.partialRootPath <somemanual:confval-felogin-felogin-email-partialrootpath>`" title="Reference this configuration value"> @@ -981,7 +981,7 @@

felogin.email.templateName

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-templatename" - data-rstCode=":confval:`felogin.email.templateName <somemanual:felogin-felogin-email-templatename>`" + data-rstCode=":ref:`felogin.email.templateName <somemanual:confval-felogin-felogin-email-templatename>`" title="Reference this configuration value"> @@ -1030,7 +1030,7 @@

felogin.redirectMode

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectmode" - data-rstCode=":confval:`felogin.redirectMode <somemanual:felogin-felogin-redirectmode>`" + data-rstCode=":ref:`felogin.redirectMode <somemanual:confval-felogin-felogin-redirectmode>`" title="Reference this configuration value"> @@ -1072,7 +1072,7 @@

felogin.redirectFirstMethod

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectfirstmethod" - data-rstCode=":confval:`felogin.redirectFirstMethod <somemanual:felogin-felogin-redirectfirstmethod>`" + data-rstCode=":ref:`felogin.redirectFirstMethod <somemanual:confval-felogin-felogin-redirectfirstmethod>`" title="Reference this configuration value"> @@ -1121,7 +1121,7 @@

felogin.redirectPageLogin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectpagelogin" - data-rstCode=":confval:`felogin.redirectPageLogin <somemanual:felogin-felogin-redirectpagelogin>`" + data-rstCode=":ref:`felogin.redirectPageLogin <somemanual:confval-felogin-felogin-redirectpagelogin>`" title="Reference this configuration value"> @@ -1170,7 +1170,7 @@

felogin.redirectPageLoginError

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectpageloginerror" - data-rstCode=":confval:`felogin.redirectPageLoginError <somemanual:felogin-felogin-redirectpageloginerror>`" + data-rstCode=":ref:`felogin.redirectPageLoginError <somemanual:confval-felogin-felogin-redirectpageloginerror>`" title="Reference this configuration value"> @@ -1219,7 +1219,7 @@

felogin.redirectPageLogout

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectpagelogout" - data-rstCode=":confval:`felogin.redirectPageLogout <somemanual:felogin-felogin-redirectpagelogout>`" + data-rstCode=":ref:`felogin.redirectPageLogout <somemanual:confval-felogin-felogin-redirectpagelogout>`" title="Reference this configuration value"> @@ -1268,7 +1268,7 @@

felogin.redirectDisable

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectdisable" - data-rstCode=":confval:`felogin.redirectDisable <somemanual:felogin-felogin-redirectdisable>`" + data-rstCode=":ref:`felogin.redirectDisable <somemanual:confval-felogin-felogin-redirectdisable>`" title="Reference this configuration value"> @@ -1317,7 +1317,7 @@

felogin.forgotLinkHashValidTime

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-forgotlinkhashvalidtime" - data-rstCode=":confval:`felogin.forgotLinkHashValidTime <somemanual:felogin-felogin-forgotlinkhashvalidtime>`" + data-rstCode=":ref:`felogin.forgotLinkHashValidTime <somemanual:confval-felogin-felogin-forgotlinkhashvalidtime>`" title="Reference this configuration value"> @@ -1366,7 +1366,7 @@

felogin.domains

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-domains" - data-rstCode=":confval:`felogin.domains <somemanual:felogin-felogin-domains>`" + data-rstCode=":ref:`felogin.domains <somemanual:confval-felogin-felogin-domains>`" title="Reference this configuration value"> @@ -1408,7 +1408,7 @@

felogin.exposeNonexistentUserInForgotPasswordDialog

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-exposenonexistentuserinforgotpassworddialog" - data-rstCode=":confval:`felogin.exposeNonexistentUserInForgotPasswordDialog <somemanual:felogin-felogin-exposenonexistentuserinforgotpassworddialog>`" + data-rstCode=":ref:`felogin.exposeNonexistentUserInForgotPasswordDialog <somemanual:confval-felogin-felogin-exposenonexistentuserinforgotpassworddialog>`" title="Reference this configuration value"> @@ -1457,7 +1457,7 @@

felogin.view.templateRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-view-templaterootpath" - data-rstCode=":confval:`felogin.view.templateRootPath <somemanual:felogin-felogin-view-templaterootpath>`" + data-rstCode=":ref:`felogin.view.templateRootPath <somemanual:confval-felogin-felogin-view-templaterootpath>`" title="Reference this configuration value"> @@ -1499,7 +1499,7 @@

felogin.view.partialRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-view-partialrootpath" - data-rstCode=":confval:`felogin.view.partialRootPath <somemanual:felogin-felogin-view-partialrootpath>`" + data-rstCode=":ref:`felogin.view.partialRootPath <somemanual:confval-felogin-felogin-view-partialrootpath>`" title="Reference this configuration value"> @@ -1541,7 +1541,7 @@

felogin.view.layoutRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-view-layoutrootpath" - data-rstCode=":confval:`felogin.view.layoutRootPath <somemanual:felogin-felogin-view-layoutrootpath>`" + data-rstCode=":ref:`felogin.view.layoutRootPath <somemanual:confval-felogin-felogin-view-layoutrootpath>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/site-set/expected/index.html b/tests/Integration/tests/site-set/expected/index.html index f7178c39a..5a7113836 100644 --- a/tests/Integration/tests/site-set/expected/index.html +++ b/tests/Integration/tests/site-set/expected/index.html @@ -392,7 +392,7 @@

_global

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-category-global" - data-rstCode=":confval:`_global <somemanual:felogin-category-global>`" + data-rstCode=":ref:`_global <somemanual:confval-felogin-category-global>`" title="Reference this configuration value"> @@ -418,7 +418,7 @@

felogin.pid

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-pid" - data-rstCode=":confval:`felogin.pid <somemanual:felogin-felogin-pid>`" + data-rstCode=":ref:`felogin.pid <somemanual:confval-felogin-felogin-pid>`" title="Reference this configuration value"> @@ -467,7 +467,7 @@

felogin.recursive

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-recursive" - data-rstCode=":confval:`felogin.recursive <somemanual:felogin-felogin-recursive>`" + data-rstCode=":ref:`felogin.recursive <somemanual:confval-felogin-felogin-recursive>`" title="Reference this configuration value"> @@ -526,7 +526,7 @@

felogin.showForgotPassword

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-showforgotpassword" - data-rstCode=":confval:`felogin.showForgotPassword <somemanual:felogin-felogin-showforgotpassword>`" + data-rstCode=":ref:`felogin.showForgotPassword <somemanual:confval-felogin-felogin-showforgotpassword>`" title="Reference this configuration value"> @@ -575,7 +575,7 @@

felogin.showPermaLogin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-showpermalogin" - data-rstCode=":confval:`felogin.showPermaLogin <somemanual:felogin-felogin-showpermalogin>`" + data-rstCode=":ref:`felogin.showPermaLogin <somemanual:confval-felogin-felogin-showpermalogin>`" title="Reference this configuration value"> @@ -624,7 +624,7 @@

felogin.showLogoutFormAfterLogin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-showlogoutformafterlogin" - data-rstCode=":confval:`felogin.showLogoutFormAfterLogin <somemanual:felogin-felogin-showlogoutformafterlogin>`" + data-rstCode=":ref:`felogin.showLogoutFormAfterLogin <somemanual:confval-felogin-felogin-showlogoutformafterlogin>`" title="Reference this configuration value"> @@ -673,7 +673,7 @@

felogin.emailFrom

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-emailfrom" - data-rstCode=":confval:`felogin.emailFrom <somemanual:felogin-felogin-emailfrom>`" + data-rstCode=":ref:`felogin.emailFrom <somemanual:confval-felogin-felogin-emailfrom>`" title="Reference this configuration value"> @@ -715,7 +715,7 @@

felogin.emailFromName

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-emailfromname" - data-rstCode=":confval:`felogin.emailFromName <somemanual:felogin-felogin-emailfromname>`" + data-rstCode=":ref:`felogin.emailFromName <somemanual:confval-felogin-felogin-emailfromname>`" title="Reference this configuration value"> @@ -757,7 +757,7 @@

felogin.replyToEmail

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-replytoemail" - data-rstCode=":confval:`felogin.replyToEmail <somemanual:felogin-felogin-replytoemail>`" + data-rstCode=":ref:`felogin.replyToEmail <somemanual:confval-felogin-felogin-replytoemail>`" title="Reference this configuration value"> @@ -799,7 +799,7 @@

felogin.dateFormat

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-dateformat" - data-rstCode=":confval:`felogin.dateFormat <somemanual:felogin-felogin-dateformat>`" + data-rstCode=":ref:`felogin.dateFormat <somemanual:confval-felogin-felogin-dateformat>`" title="Reference this configuration value"> @@ -848,7 +848,7 @@

felogin.email.layoutRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-layoutrootpath" - data-rstCode=":confval:`felogin.email.layoutRootPath <somemanual:felogin-felogin-email-layoutrootpath>`" + data-rstCode=":ref:`felogin.email.layoutRootPath <somemanual:confval-felogin-felogin-email-layoutrootpath>`" title="Reference this configuration value"> @@ -890,7 +890,7 @@

felogin.email.templateRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-templaterootpath" - data-rstCode=":confval:`felogin.email.templateRootPath <somemanual:felogin-felogin-email-templaterootpath>`" + data-rstCode=":ref:`felogin.email.templateRootPath <somemanual:confval-felogin-felogin-email-templaterootpath>`" title="Reference this configuration value"> @@ -939,7 +939,7 @@

felogin.email.partialRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-partialrootpath" - data-rstCode=":confval:`felogin.email.partialRootPath <somemanual:felogin-felogin-email-partialrootpath>`" + data-rstCode=":ref:`felogin.email.partialRootPath <somemanual:confval-felogin-felogin-email-partialrootpath>`" title="Reference this configuration value"> @@ -981,7 +981,7 @@

felogin.email.templateName

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-email-templatename" - data-rstCode=":confval:`felogin.email.templateName <somemanual:felogin-felogin-email-templatename>`" + data-rstCode=":ref:`felogin.email.templateName <somemanual:confval-felogin-felogin-email-templatename>`" title="Reference this configuration value"> @@ -1030,7 +1030,7 @@

felogin.redirectMode

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectmode" - data-rstCode=":confval:`felogin.redirectMode <somemanual:felogin-felogin-redirectmode>`" + data-rstCode=":ref:`felogin.redirectMode <somemanual:confval-felogin-felogin-redirectmode>`" title="Reference this configuration value"> @@ -1072,7 +1072,7 @@

felogin.redirectFirstMethod

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectfirstmethod" - data-rstCode=":confval:`felogin.redirectFirstMethod <somemanual:felogin-felogin-redirectfirstmethod>`" + data-rstCode=":ref:`felogin.redirectFirstMethod <somemanual:confval-felogin-felogin-redirectfirstmethod>`" title="Reference this configuration value"> @@ -1121,7 +1121,7 @@

felogin.redirectPageLogin

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectpagelogin" - data-rstCode=":confval:`felogin.redirectPageLogin <somemanual:felogin-felogin-redirectpagelogin>`" + data-rstCode=":ref:`felogin.redirectPageLogin <somemanual:confval-felogin-felogin-redirectpagelogin>`" title="Reference this configuration value"> @@ -1170,7 +1170,7 @@

felogin.redirectPageLoginError

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectpageloginerror" - data-rstCode=":confval:`felogin.redirectPageLoginError <somemanual:felogin-felogin-redirectpageloginerror>`" + data-rstCode=":ref:`felogin.redirectPageLoginError <somemanual:confval-felogin-felogin-redirectpageloginerror>`" title="Reference this configuration value"> @@ -1219,7 +1219,7 @@

felogin.redirectPageLogout

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectpagelogout" - data-rstCode=":confval:`felogin.redirectPageLogout <somemanual:felogin-felogin-redirectpagelogout>`" + data-rstCode=":ref:`felogin.redirectPageLogout <somemanual:confval-felogin-felogin-redirectpagelogout>`" title="Reference this configuration value"> @@ -1268,7 +1268,7 @@

felogin.redirectDisable

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-redirectdisable" - data-rstCode=":confval:`felogin.redirectDisable <somemanual:felogin-felogin-redirectdisable>`" + data-rstCode=":ref:`felogin.redirectDisable <somemanual:confval-felogin-felogin-redirectdisable>`" title="Reference this configuration value"> @@ -1317,7 +1317,7 @@

felogin.forgotLinkHashValidTime

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-forgotlinkhashvalidtime" - data-rstCode=":confval:`felogin.forgotLinkHashValidTime <somemanual:felogin-felogin-forgotlinkhashvalidtime>`" + data-rstCode=":ref:`felogin.forgotLinkHashValidTime <somemanual:confval-felogin-felogin-forgotlinkhashvalidtime>`" title="Reference this configuration value"> @@ -1366,7 +1366,7 @@

felogin.domains

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-domains" - data-rstCode=":confval:`felogin.domains <somemanual:felogin-felogin-domains>`" + data-rstCode=":ref:`felogin.domains <somemanual:confval-felogin-felogin-domains>`" title="Reference this configuration value"> @@ -1408,7 +1408,7 @@

felogin.exposeNonexistentUserInForgotPasswordDialog

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-exposenonexistentuserinforgotpassworddialog" - data-rstCode=":confval:`felogin.exposeNonexistentUserInForgotPasswordDialog <somemanual:felogin-felogin-exposenonexistentuserinforgotpassworddialog>`" + data-rstCode=":ref:`felogin.exposeNonexistentUserInForgotPasswordDialog <somemanual:confval-felogin-felogin-exposenonexistentuserinforgotpassworddialog>`" title="Reference this configuration value"> @@ -1457,7 +1457,7 @@

felogin.view.templateRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-view-templaterootpath" - data-rstCode=":confval:`felogin.view.templateRootPath <somemanual:felogin-felogin-view-templaterootpath>`" + data-rstCode=":ref:`felogin.view.templateRootPath <somemanual:confval-felogin-felogin-view-templaterootpath>`" title="Reference this configuration value"> @@ -1499,7 +1499,7 @@

felogin.view.partialRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-view-partialrootpath" - data-rstCode=":confval:`felogin.view.partialRootPath <somemanual:felogin-felogin-view-partialrootpath>`" + data-rstCode=":ref:`felogin.view.partialRootPath <somemanual:confval-felogin-felogin-view-partialrootpath>`" title="Reference this configuration value"> @@ -1541,7 +1541,7 @@

felogin.view.layoutRootPath

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="confval-felogin-felogin-view-layoutrootpath" - data-rstCode=":confval:`felogin.view.layoutRootPath <somemanual:felogin-felogin-view-layoutrootpath>`" + data-rstCode=":ref:`felogin.view.layoutRootPath <somemanual:confval-felogin-felogin-view-layoutrootpath>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/viewhelper/expected/index.html b/tests/Integration/tests/viewhelper/expected/index.html index e80094fbc..d0dbc2cdf 100644 --- a/tests/Integration/tests/viewhelper/expected/index.html +++ b/tests/Integration/tests/viewhelper/expected/index.html @@ -116,7 +116,7 @@

limit

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-limit" - data-rstCode=":typo3:viewhelper-argument:`limit <somemanual:typo3fluid-fluid-viewhelpers-splitviewhelper-limit>`" + data-rstCode=":ref:`limit <somemanual:viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-limit>`" title="Reference this configuration value"> @@ -152,7 +152,7 @@

separator

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-separator" - data-rstCode=":typo3:viewhelper-argument:`separator <somemanual:typo3fluid-fluid-viewhelpers-splitviewhelper-separator>`" + data-rstCode=":ref:`separator <somemanual:viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-separator>`" title="Reference this configuration value"> @@ -188,7 +188,7 @@

value

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-value" - data-rstCode=":typo3:viewhelper-argument:`value <somemanual:typo3fluid-fluid-viewhelpers-splitviewhelper-value>`" + data-rstCode=":ref:`value <somemanual:viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-value>`" title="Reference this configuration value"> @@ -497,7 +497,7 @@

uri

data-bs-toggle="modal" data-bs-target="#linkReferenceModal" data-id="viewhelper-argument-typo3-cms-fluid-viewhelpers-link-externalviewhelper-uri" - data-rstCode=":typo3:viewhelper-argument:`uri <somemanual:typo3-cms-fluid-viewhelpers-link-externalviewhelper-uri>`" + data-rstCode=":ref:`uri <somemanual:viewhelper-argument-typo3-cms-fluid-viewhelpers-link-externalviewhelper-uri>`" title="Reference this configuration value"> diff --git a/tests/Integration/tests/viewhelper/expected/objects.inv.json b/tests/Integration/tests/viewhelper/expected/objects.inv.json index f4eb1ca9d..7dbb8f82b 100644 --- a/tests/Integration/tests/viewhelper/expected/objects.inv.json +++ b/tests/Integration/tests/viewhelper/expected/objects.inv.json @@ -7,7 +7,56 @@ "Fluid ViewHelpers" ] }, - "std:label": [], + "std:label": { + "viewhelper-typo3fluid-fluid-viewhelpers-splitviewhelper": [ + "-", + "-", + "index.html#viewhelper-typo3fluid-fluid-viewhelpers-splitviewhelper", + "split" + ], + "viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-limit": [ + "-", + "-", + "index.html#viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-limit", + "limit" + ], + "viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-separator": [ + "-", + "-", + "index.html#viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-separator", + "separator" + ], + "viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-value": [ + "-", + "-", + "index.html#viewhelper-argument-typo3fluid-fluid-viewhelpers-splitviewhelper-value", + "value" + ], + "viewhelper-typo3-cms-fluid-viewhelpers-link-externalviewhelper": [ + "-", + "-", + "index.html#viewhelper-typo3-cms-fluid-viewhelpers-link-externalviewhelper", + "link.external" + ], + "viewhelper-argument-typo3-cms-fluid-viewhelpers-link-externalviewhelper-uri": [ + "-", + "-", + "index.html#viewhelper-argument-typo3-cms-fluid-viewhelpers-link-externalviewhelper-uri", + "uri" + ], + "viewhelper-typo3-cms-fluid-viewhelpers-deprecatedviewhelper": [ + "-", + "-", + "index.html#viewhelper-typo3-cms-fluid-viewhelpers-deprecatedviewhelper", + "deprecated" + ], + "viewhelper-typo3-cms-form-viewhelpers-be-maximumfilesizeviewhelper": [ + "-", + "-", + "index.html#viewhelper-typo3-cms-form-viewhelpers-be-maximumfilesizeviewhelper", + "be.maximumFileSize" + ] + }, "std:title": { "fluid-viewhelpers": [ "-",