Basic Principles

Introduction to TYPO3 Documentation

For an excellent introduction, please see the 3 part series on Marcus Schwemer's blog TYPO3 Worx:

重要

Please note that the section "CONVERT REST TO “READABLE” FORMATS" in part 3 is slightly outdated. Currently, using the Docker container for rendering is the recommended approach. If you edit on GitHub directly, GitHub preview should be sufficient for making small changes.

What's TYPO3 Documentation?

TYPO3 documentation may be one of the following:

Common Characteristics of TYPO3 Documentation

All of these examples have a few things in common:

  • The documentation is rendered and found on https://docs.typo3.org
  • The documentation has a common theme, all pages look similar and use the same styles
  • Most of the documentation can be directly edited by the community. For third party extensions, this depends on where and how the source-code is hosted and maintained.
  • The source of the documentation is written (mostly) in reStructuredText (reST)
  • All documentation is rendered using the same rendering toolchain. All documentation can be rendered locally, with the officially supported Docker image.
  • The documentation source files adhere to Documentation content style guide and share a common structure (e.g. all documentation files in a Documentation subdirectory).
  • Due to the conventions, the rendering of documentation can be automated and every documentation project only requires a minimum of setup.

What's "Rendering"?

Rendering means (in this specific case) converting the reST format (.rst files) into its final, readable form, which you can view in your browser, like this page, which you are probably reading online. If not, load https://docs.typo3.org/typo3cms/HowToDocument/BasicPrinciples.html in your browser.

In comparison, this is what the original source file looks like: https://docs.typo3.org/typo3cms/HowToDocument/_sources/BasicPrinciples.txt

Technically, this means converting the reST (.rst files) into HTML, automatically creating the menu, using the current theme to add additional styles and images.

Documentation Types

Manual

A "manual" in the context of TYPO3 documentation is being used to talk about one unit of documentation, which usually has it's own git repository (or is included in the git repository of an extension) and consists of one Documentation folder. A "manual" can be a tutorial, such as the t3start:start, a guide, an extension manual or something else.

Tutorial

A tutorial is a manual.

Tutorials are designed to be a learning-oriented resource that take newcomers by the hand and guide them through a specific topic. To facilitate effective learning, tutorials provide examples to illustrate the subjects they cover.

They may not necessarily follow best-practices by the letter. They are designed to make it easier to get started.

Read more ...

The definitions for tutorials, guides, explanations and references were taken from Daniele Procida: What nobody tells you about documentation

How-To Guide

A guide is a manual.

Guides offer advice on how best to achieve a given task. They are goal oriented.

Read more ...

Reference

A reference is well structured and allows the reader to find information about a specific topic. They should be short and to the point.

Extension Manual

An extension manual covers only the extension. This documentation is (usually) included in the source code of an extension in a Documentation subdirectory.

Official Documentation

This documentation is authored and maintained by the TYPO3 community.

The Documentation Team generally maintains this documentation, but maintenance tasks may be delegated to others, for example by giving write permission to GitHub repositories.

In general, it is recommended for the TYPO3 experts to take on jobs of continuously updating content and making sure it is correct and up to date.

Community Documentation

Third party extension manuals are typically "community documentation".

This documentation is usually maintained by the extension author.

The TYPO3 Documentation Team cannot maintain "community documentation", but it helps by providing documentation, support and an example extension manual.

Documentation Contribution Matrix

Considering how to contribute, the things that differ for various kinds of documentation are:

  • Where the issues are maintained (e.g. on Forge or GitHub)
  • Where the source code (Git repository) is kept
  • The workflow for making changes to the documentation
Type of documentation Issues Source Code (Git repository) Workflow for making changes
Official guides, tutorials, core docs, etc. On page of rendered docs, click on Related links > Issues On page of rendered docs, click on Related Links > Repository, or click on Edit me on GitHub Create GitHub pull request, see How to Contribute to Official Documentation.
TYPO3 Core Changelog Core issues: https://forge.typo3.org/projects/typo3cms-core/issues TYPO3 source code: git.typo3.org, mirror: GitHub see Contribution Guide: Add documentation
System extensions Core issues: https://forge.typo3.org/projects/typo3cms-core/issues Same as for Changelog, inside TYPO3 source code: git.typo3.org, GitHub as mirror see Contribution Guide: Add documentation
3rdparty extensions On page of rendered docs, click on Related Links > Issues On page of rendered docs, click on Related Links > Repository, see Contribute to Third Party Extension It depends, see Contribute to Third Party Extension

To get to the issues or repository of the documentation: On the page of the rendered manual, click on "Related Links" and then click on "Issues" or "Repository".

_images/related2.png

Official TYPO3 Manuals

The official TYPO3 manuals are hosted on GitHub. Editing the documentation requires a GitHub account and involves creating a pull request on GitHub.

Find out more about how to contribute: How to Contribute to Official Documentation.

Documentation for the Core

The documentation for the core (changelog and system extensions) is added to the TYPO3 source code. For this reason, the workflow of changing something in the core documentation is very similar to adding a patch to the core.

Find out more about the core contribution workflow in general or about t3contribute:Adding-documentation in the Contribution Guide.

Documentation for 3rdparty Extensions

The documentation for a 3rdparty extension is maintained within the source-code of this extensions. If and where it is edited depends on where the extension is hosted and maintained.

To find out how to contribute documentation for a specific extension: Contribute to Third Party Extension

What about the Wiki?

In this manual, we are focusing on TYPO3 documentation in reST / sphinx that can be found on docs.typo3.org.

The TYPO3 Wiki on https://wiki.typo3.org does contain documentation as well, but that is not the scope of this manual. In any case, most of the information from the Wiki is being moved from the Wiki to some manual on docs.typo3.org.

About TYPO3 Extensions

In TYPO3, basically everything is an extension. There are system extensions and third party extensions:

System Extensions

System extensions (or core extensions) are extensions that are maintained in the TYPO3 source. For a list of system extensions, look in the Extension Manager or in the TYPO3 source, e.g. GitHub: TYPO3.CMS: /typo3/sysext.

Examples for system extensions are:

Note, that if your system has been installed with Composer, not all system extensions may exist in the system, if each system extension has been required separately as "subtree splitted packages" (not as typo3/cms). Since TYPO3 9, installation of "subtree splitted packages" is mandatory.

For more information on subtree split, see

System Extension Documentation

Find the documentation for a system extension on System extensions.

Not all system extensions have documentation at the moment.

For more information about contributing to system extensions, see Contribute to System Extension in this guide.

See also Documentation Contribution Matrix for an overview of the issues, source and workflow for various kinds of documentation, including system extensions.

Third Party Extensions

Third party extensions are extension that can be created by anyone. They are not included in the TYPO3 core codebase and are not officially supported by the TYPO3 core team.

Often, but not necessarily, these extensions are hosted on GitHub.

They can be installed by the TYPO3 Extension Manager or via Composer.

Third Party Extension Documentation

Find the documentation on Extensions by extension key.

For more information about contributing to third party extension documentation or for your own extension, see Contribute to Third Party Extension. See Start Extension Documentation From Example Manual for information about starting extension documentation from scratch.

See also Documentation Contribution Matrix for an overview of the issues, source and workflow for various kinds of documentation, including third party extensions.