Skip to content

Commit ef87954

Browse files
authored
[TASK] Add default inventory for typo3.org team (#756)
1 parent 14f3efc commit ef87954

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

Documentation/Developer/InterlinkInventories.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@ These inventories can be used by default in any rendered documentation:
149149

150150
URL: https://docs.typo3.org/m/typo3/writing-guide/main/en-us/
151151

152+
* Title: :doc:`t3org:Index`
153+
154+
Inventory key: :doc:`t3org <t3org:Index>`
155+
156+
URL: https://docs.typo3.org/m/typo3/writing-guide/main/en-us/
157+
152158
* Title: :doc:`fluid:Index`
153159

154160
Inventory key: :doc:`fluid <fluid:Index>`

packages/typo3-version-handling/src/DefaultInventories.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ enum DefaultInventories: string
2323
case h2document = 'h2document';
2424
case t3content = 't3content';
2525
case t3writing = 't3writing';
26+
case t3org = 't3org';
2627
case t3contribute = 't3contribute';
2728
case fluid = 'fluid';
2829
case t3renderguides = 't3renderguides';
2930
case t3exceptions = 't3exceptions';
3031
case api = 'api';
3132

33+
3234
public function getUrl(): string
3335
{
3436
return match ($this) {
@@ -59,6 +61,7 @@ public function getUrl(): string
5961
DefaultInventories::t3content => 'https://docs.typo3.org/m/typo3/guide-contentandmarketing/main/en-us/',
6062
DefaultInventories::t3contribute => 'https://docs.typo3.org/m/typo3/guide-contributionworkflow/main/en-us/',
6163
DefaultInventories::t3writing => 'https://docs.typo3.org/m/typo3/writing-guide/main/en-us/',
64+
DefaultInventories::t3org => 'https://docs.typo3.org/m/typo3/team-t3oteam/main/en-us/',
6265

6366
// Other
6467
DefaultInventories::fluid => 'https://docs.typo3.org/other/typo3fluid/fluid/main/en-us/',

tests/Integration/tests/guides-inventories/expected/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ <h1>Title<a class="headerlink" href="#title" data-bs-toggle="modal" data-bs-targ
1313
<li>t3editors</li>
1414
<li>t3exceptions</li>
1515
<li>t3install</li>
16+
<li>t3org</li>
1617
<li>t3renderguides</li>
1718
<li>t3sitepackage</li>
1819
<li>t3start</li>

0 commit comments

Comments
 (0)