Skip to content

Commit

Permalink
Change spelling for sitepackage
Browse files Browse the repository at this point in the history
Additional changes to PR #29
  • Loading branch information
sypets committed Jan 16, 2019
1 parent 7eff9ae commit c6d4f3d
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 31 deletions.
6 changes: 3 additions & 3 deletions Documentation/ExtensionConfiguration/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ extension. The content should look as follows::

<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'TYPO3 Site Package',
'description' => 'TYPO3 Site Package',
'title' => 'TYPO3 Sitepackage',
'description' => 'TYPO3 Sitepackage',
'category' => 'templates',
'author' => '...',
'author_email' => '...',
Expand Down Expand Up @@ -98,7 +98,7 @@ should look like the following code::
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
$extensionKey,
'Configuration/TypoScript',
'Site Package'
'Sitepackage'
);
});

Expand Down
6 changes: 3 additions & 3 deletions Documentation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

.. _start:

=====================
Site Package Tutorial
=====================
====================
Sitepackage Tutorial
====================

:Version:
8.7
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Introduction/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Introduction

.. _site-package-benefits:

Site Package Benefits
=====================
Sitepackage Benefits
====================

The development of a website can be approached in several ways. Standard
websites usually consist of HTML documents, which contain texts and have image
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Preface/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ About this Document

This tutorial details the steps required to turn a set of front end
templates (HTML, CSS, JavaScript files, etc.) into a standalone
*Site Package extension*.
*sitepackage extension*.

.. _target-audience:

Expand Down
2 changes: 1 addition & 1 deletion Documentation/Settings.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[general]

project = TYPO3 Site Package Tutorial
project = TYPO3 Sitepackage Tutorial
version = master (8.7)
release = master (8.7)
t3author = Documentation Team
Expand Down
36 changes: 18 additions & 18 deletions Documentation/Summary/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Summary
=======

First and foremost: **congratulations!** You reached a point where you have
successfully implemented a custom Site Package for TYPO3. In fact, you have not
successfully implemented a custom sitepackage for TYPO3. In fact, you have not
only developed a "theme" for your website, you also built a fully working
extension for TYPO3, which can be installed, uninstalled, copied to another
TYPO3 instance and put under version control. You could also share your Site
Expand Down Expand Up @@ -48,15 +48,15 @@ only, plus the HTML/CSS files. Only two files contain PHP code.
Next Steps
==========

The Site Package extension, as it stands now, still has some shortfalls. Let's
The sitepackage extension, as it stands now, still has some shortfalls. Let's
have a closer look what you could or should do as the next steps to address
these.

.. rst-class:: bignums

1. One page layout only

At the moment, the Site Package supports **one page layout** only (the
At the moment, the sitepackage supports **one page layout** only (the
Jumbotron area and three columns below), which is a typical layout for a
standard homepage. However, this layout is the only layout and used across
all pages. By extending the TypoScript template and creating variations of
Expand Down Expand Up @@ -114,12 +114,12 @@ these.

In general, the nature of a tutorial, such as this document, is to provide
detailed instructions to walk a beginner through a particular task. By building
your own Site Package extension from scratch, you have learned each step that
your own sitepackage extension from scratch, you have learned each step that
is required to turn a basic web design template into a fully working website in
TYPO3.

When you create Site Packages in the future, you probably do not want to create
every file over and over again, but use a pre-built version of the Site Package
When you create sitepackages in the future, you probably do not want to create
every file over and over again, but use a pre-built version of the sitepackage
extension. Therefore, it make sense to store and maintain the current state in
a central place, such as a Git repository. Despite the fact that for a learning
experience it is always beneficial to develop the extension yourself, you can
Expand All @@ -128,23 +128,23 @@ also download the extension built in this tutorial below.

.. _download-site-package-extension:

Download Site Package Extension
Download sitepackage Extension
-------------------------------

`GitHub <https://github.com/TYPO3-Documentation/TYPO3CMS-Tutorial-SitePackage-Code>`_


.. _site-package-builder:

Site Package Builder
sitepackage Builder
--------------------

Another option to create a Site Package extension quickly is an online tool
developed by Benjamin Kott: the `Site Package Builder
Another option to create a sitepackage extension quickly is an online tool
developed by Benjamin Kott: the `sitepackage builder
<http://sitepackagebuilder.com/>`__.

.. figure:: SitePackageBuilder.png
:alt: Site Package Builder
:alt: Sitepackage Builder
:class: with-shadow


Expand All @@ -154,10 +154,10 @@ Videos on YouTube
-----------------

In this three-parts series, Mathias Schreiber and Benjamin Kott set up a TYPO3
site from scratch by building a Site Package extension.
site from scratch by building a sitepackage extension.

Tutorial - Site Packages - Part 1 of 3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tutorial - Sitepackages - Part 1 of 3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`YouTube: Part 1 of 3 <https://www.youtube.com/watch?v=HtBmim7pc0o>`__

Expand All @@ -166,8 +166,8 @@ Tutorial - Site Packages - Part 1 of 3
.. youtube:: HtBmim7pc0o


Tutorial - Site Packages - Part 2 of 3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tutorial - Sitepackages - Part 2 of 3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`YouTube: Part 2 of 3 <https://www.youtube.com/watch?v=deSMVfCSCXY>`__

Expand All @@ -176,8 +176,8 @@ Tutorial - Site Packages - Part 2 of 3
.. youtube:: deSMVfCSCXY


Tutorial - Site Packages - Part 3 of 3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tutorial - Sitepackages - Part 3 of 3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`YouTube: Part 3 of 3 <https://www.youtube.com/watch?v=SEoWOBT0rQE>`__

Expand Down
2 changes: 1 addition & 1 deletion Documentation/Targets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Explanation
:code:`t3sitepackage` is the usual alias for :code:`https://docs.typo3.org/typo3cms/SitePackageTutorial`
when creating `cross-references
<http://www.sphinx-doc.org/en/stable/markup/inline.html#cross-referencing-arbitrary-locations>`__
(links) to this manual. *Example:* ``:ref:`Site Package Tutorial <t3sitepackage:start>```.
(links) to this manual. *Example:* ``:ref:`Sitepackage Tutorial <t3sitepackage:start>```.
Have the following lines in your :file:`Documentation/Settings.cfg` file to set the alias::
[intersphinx_mapping]
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
TYPO3CMS-Tutorial-SitePackage
=============================

Tutorial how to create a TYPO3 site package extension from scratch
Tutorial how to create a TYPO3 sitepackage extension from scratch

:Repository: https://github.com/TYPO3-Documentation/TYPO3CMS-Tutorial-SitePackage/
:Read online: https://docs.typo3.org/typo3cms/SitePackageTutorial/
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typo3/tutorial-sitepackage",
"type": "typo3-cms-documentation",
"description": "The official tutorial how to create a site package in TYPO3 from scratch.",
"description": "The official tutorial how to create a sitepackage in TYPO3 from scratch.",
"license": "CC-BY-NC-SA-4.0"
}

0 comments on commit c6d4f3d

Please sign in to comment.