Skip to content

Commit ef0354f

Browse files
docs: Add 'Related content' as the final section in most pages (#1973)
1 parent 486bd24 commit ef0354f

15 files changed

+94
-2
lines changed

docs/_inc/_continuous-integration.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ All of a project's CI jobs must pass before a contribution may be accepted.
55
```{seealso}
66
{doc}`/contributing/core/continuous-integration`
77
```
8+
9+
10+

docs/_inc/_create-classic-ui-instance.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@ You will be redirected to your new Classic UI Plone site.
1313

1414
To stop the Plone instance in foreground mode, type {kbd}`ctrl-c`.
1515

16+
## Related content
17+
18+
- {doc}`Classic UI </classic-ui/index>`
19+
20+
21+

docs/_inc/_install-python-plone61.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@ The instructions below will create one.
77
```
88

99
Plone 6.1 requires Python version {{SUPPORTED_PYTHON_VERSIONS_PLONE61}}.
10+
11+
## Related content
12+
13+
- {doc}`Plone installation requirements </install/index>`
14+

docs/admin-guide/add-site.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,9 @@ The launch screen for adding a site is hosted by the Plone backend server.
7171
Regardless of the frontend you select, you will be redirected to the backend's user interface after you create the site.
7272
If you select the Volto frontend, you can switch to it by changing the port number in the URL, usually `3000`, and visiting it at http://localhost:3000, for example.
7373
```
74+
75+
## Related Content
76+
77+
- {doc}`/install/create-project-cookieplone` — Create a new Plone project using Cookiecutter.
78+
- {doc}`/admin-guide/install-buildout` — Install Plone using Buildout.
79+
- {doc}`/admin-guide/install-pip` — Install Plone using pip.

docs/admin-guide/backup-restore-plone-buildout.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,10 @@ Tune these to meet your needs.
9292
When you enable incremental backups, the database packing operation will automatically cause the next backup to be a full backup.
9393

9494
If your backup continuity need is critical, then your incremental backup schedule may need to be frequent.
95-
Some Plone sites require incremental backups every few minutes.
95+
Some Plone sites require incremental backups every few minutes.
96+
97+
## Related content
98+
99+
- {doc}`/admin-guide/export-import` — Export and import content
100+
- {doc}`/admin-guide/install-buildout` — Install Plone using Buildout
101+
- {doc}`/admin-guide/install-pip` — Install Plone using pip

docs/admin-guide/export-import.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,8 @@ Consider a File content item with UID `3e0dd7c4b2714eafa1d6fc6a1493f953` and a P
111111
| --- | --- |
112112
| `content/3e0dd7c4b2714eafa1d6fc6a1493f953/data.json` | JSON File with serialized representation of a content item |
113113
| `content/3e0dd7c4b2714eafa1d6fc6a1493f953/file/plone.pdf` | Blob file stored in the `file` field in the content item |
114+
115+
## Related content
116+
117+
- {doc}`/admin-guide/backup-restore-plone-buildout` — Back up and restore Plone sites
118+
- {doc}`/admin-guide/add-site` — Add a Plone site to an existing instance

docs/admin-guide/install-buildout.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,10 @@ Stop the instance.
126126
```shell
127127
bin/instance stop
128128
```
129+
130+
## Related content
131+
132+
- {doc}`/admin-guide/add-site` — Add a Plone site after installation
133+
- {doc}`/admin-guide/install-pip` — Alternative installation method using pip
134+
- {doc}`/admin-guide/backup-restore-plone-buildout` — Back up and restore your Plone site
135+
- {doc}`/conceptual-guides/compare-buildout-pip` — Compare Buildout and pip installation methods

docs/admin-guide/install-pip.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,9 @@ bin/runwsgi -v instance/etc/zope.ini
9797

9898
```{include} /_inc/_create-classic-ui-instance.md
9999
```
100+
101+
## Related content
102+
103+
- {doc}`/admin-guide/add-site` — Add a Plone site after installation
104+
- {doc}`/admin-guide/install-buildout` — Alternative installation method using Buildout
105+
- {doc}`/conceptual-guides/compare-buildout-pip` — Compare Buildout and pip installation methods

docs/backend/behaviors.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,3 +378,9 @@ The [README file of `plone.behavior`](https://github.com/plone/plone.behavior/bl
378378
Plone content objects have logic to look up the behaviors' names registered from their types' configuration, the {term}`Factory Type Information` (FTI).
379379
At runtime, the logic provides the interface (or marker) from the behavior to the object.
380380
This dynamically provided interface enables the component architecture to react to this new interface by adding additional form fields, bindings events, enabling more specific views, and more.
381+
382+
## Related content
383+
384+
- {doc}`/backend/content-types/index` — Add behaviors to content types
385+
- {doc}`/backend/schemas` — Define schemas for behaviors
386+
- {doc}`/backend/fields` — Field types used in behavior schemas

docs/backend/content-types/creating-content-types.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,3 +118,11 @@ For now your content type doesn't have any custom schema with fields defined.
118118
See {doc}`/backend/schemas`, {doc}`/backend/fields` and {doc}`/backend/widgets` for information on how to add custom fields and widgets to your content type.
119119

120120
Also have a look at Plone {doc}`/backend/behaviors`, which provide default features you can enable per content type.
121+
122+
## Related content
123+
124+
- {doc}`/backend/schemas` — Define schemas for your content types
125+
- {doc}`/backend/fields` — Field types for content type schemas
126+
- {doc}`/backend/widgets` — Customize form widgets
127+
- {doc}`/backend/behaviors` — Add reusable behaviors to content types
128+
- {doc}`/backend/content-types/fti` — Configure Factory Type Information

0 commit comments

Comments
 (0)