Unify whitespaces
authorMatthias Schmidt <gravatronics@live.com>
Mon, 28 Dec 2020 14:47:02 +0000 (15:47 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Mon, 28 Dec 2020 14:47:02 +0000 (15:47 +0100)
docs/getting-started_quick-start.md
docs/tutorial_tutorial-series_part-1-base-structure.md
docs/tutorial_tutorial-series_part-2-event-listeners-and-template-listeners.md
docs/tutorial_tutorial-series_part-3-person-page-and-comments.md

index 4397854fa8a4ea79ca5f94992701f56666c06787..2abd2a67ca00291df4f11a25543b2df55c2c7c13 100644 (file)
@@ -168,13 +168,13 @@ If you have followed the above guidelines carefully, your package directory shou
 
 ```
 ├── files
-│   └── lib
-│       ├── page
-│       │   ├── TestPage.class.php
+│   └── lib
+│       ├── page
+│       │   ├── TestPage.class.php
 ├── package.xml
 ├── page.xml
 ├── templates
-│   └── test.tpl
+│   └── test.tpl
 ```
 
 Both files and templates are archive-based package components, that deploy their payload using tar archives rather than adding the raw files to the package file. Please create the archive `files.tar` and add the contents of the `files/*` directory, but not the directory `files/` itself. Repeat the same process for the `templates` directory, but this time with the file name `templates.tar`. Place both files in the root of your project.
index 16afd772dd6f0f3c63c61e61ec94ee4460e8763f..7daed09aaca79a4fed19e930b0d68c57ad4917af 100644 (file)
@@ -37,33 +37,33 @@ The package will have the following file structure:
 ```
 ├── acpMenu.xml
 ├── acptemplates
-│   ├── personAdd.tpl
-│   └── personList.tpl
+│   ├── personAdd.tpl
+│   └── personList.tpl
 ├── files
-│   └── lib
-│       ├── acp
-│       │   ├── form
-│       │   │   ├── PersonAddForm.class.php
-│       │   │   └── PersonEditForm.class.php
-│       │   └── page
-│       │       └── PersonListPage.class.php
-│       ├── data
-│       │   └── person
-│       │       ├── PersonAction.class.php
-│       │       ├── Person.class.php
-│       │       ├── PersonEditor.class.php
-│       │       └── PersonList.class.php
-│       └── page
-│           └── PersonListPage.class.php
+│   └── lib
+│       ├── acp
+│       │   ├── form
+│       │   │   ├── PersonAddForm.class.php
+│       │   │   └── PersonEditForm.class.php
+│       │   └── page
+│       │       └── PersonListPage.class.php
+│       ├── data
+│       │   └── person
+│       │       ├── PersonAction.class.php
+│       │       ├── Person.class.php
+│       │       ├── PersonEditor.class.php
+│       │       └── PersonList.class.php
+│       └── page
+│           └── PersonListPage.class.php
 ├── install.sql
 ├── language
-│   ├── de.xml
-│   └── en.xml
+│   ├── de.xml
+│   └── en.xml
 ├── menuItem.xml
 ├── package.xml
 ├── page.xml
 ├── templates
-│   └── personList.tpl
+│   └── personList.tpl
 └── userGroupOption.xml
 ```
 
index 899f295e7cec4d9224dfee5b05c5aee4beec5e2b..1a5fc498a4d43f30f130466ec216af586d559ba5 100644 (file)
@@ -40,19 +40,19 @@ The package will have the following file structure:
 
 ```
 ├── acptemplates
-│   └── __personAddBirthday.tpl
+│   └── __personAddBirthday.tpl
 ├── eventListener.xml
 ├── files
-│   └── lib
-│       └── system
-│           └── event
-│               └── listener
-│                   ├── BirthdayPersonAddFormListener.class.php
-│                   └── BirthdaySortFieldPersonListPageListener.class.php
+│   └── lib
+│       └── system
+│           └── event
+│               └── listener
+│                   ├── BirthdayPersonAddFormListener.class.php
+│                   └── BirthdaySortFieldPersonListPageListener.class.php
 ├── install.sql
 ├── language
-│   ├── de.xml
-│   └── en.xml
+│   ├── de.xml
+│   └── en.xml
 ├── package.xml
 ├── templateListener.xml
 └── templates
index d008563af1ef619ff3fdfbf24f26d80d210d5767..ddd173e7aee2e4d5bb90e73b2067193a661adfb6 100644 (file)
@@ -26,46 +26,46 @@ The complete package will have the following file structure (including the files
 ```
 ├── acpMenu.xml
 ├── acptemplates
-│   ├── personAdd.tpl
-│   └── personList.tpl
+│   ├── personAdd.tpl
+│   └── personList.tpl
 ├── files
-│   └── lib
-│       ├── acp
-│       │   ├── form
-│       │   │   ├── PersonAddForm.class.php
-│       │   │   └── PersonEditForm.class.php
-│       │   └── page
-│       │       └── PersonListPage.class.php
-│       ├── data
-│       │   └── person
-│       │       ├── Person.class.php
-│       │       ├── PersonAction.class.php
-│       │       ├── PersonEditor.class.php
-│       │       └── PersonList.class.php
-│       ├── page
-│       │   ├── PersonListPage.class.php
-│       │   └── PersonPage.class.php
-│       └── system
-│           ├── cache
-│           │   └── runtime
-│           │       └── PersonRuntimeCache.class.php
-│           ├── comment
-│           │   └── manager
-│           │       └── PersonCommentManager.class.php
-│           └── page
-│               └── handler
-│                   └── PersonPageHandler.class.php
+│   └── lib
+│       ├── acp
+│       │   ├── form
+│       │   │   ├── PersonAddForm.class.php
+│       │   │   └── PersonEditForm.class.php
+│       │   └── page
+│       │       └── PersonListPage.class.php
+│       ├── data
+│       │   └── person
+│       │       ├── Person.class.php
+│       │       ├── PersonAction.class.php
+│       │       ├── PersonEditor.class.php
+│       │       └── PersonList.class.php
+│       ├── page
+│       │   ├── PersonListPage.class.php
+│       │   └── PersonPage.class.php
+│       └── system
+│           ├── cache
+│           │   └── runtime
+│           │       └── PersonRuntimeCache.class.php
+│           ├── comment
+│           │   └── manager
+│           │       └── PersonCommentManager.class.php
+│           └── page
+│               └── handler
+│                   └── PersonPageHandler.class.php
 ├── install.sql
 ├── language
-│   ├── de.xml
-│   └── en.xml
+│   ├── de.xml
+│   └── en.xml
 ├── menuItem.xml
 ├── objectType.xml
 ├── package.xml
 ├── page.xml
 ├── templates
-│   ├── person.tpl
-│   └── personList.tpl
+│   ├── person.tpl
+│   └── personList.tpl
 └── userGroupOption.xml
 ```