From: Matthias Schmidt Date: Mon, 28 Dec 2020 14:47:02 +0000 (+0100) Subject: Unify whitespaces X-Git-Tag: 5.6.final~328^2~7 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;ds=sidebyside;h=60ed94fa28063047f87f0d606ad3201e9edb5b45;p=GitHub%2FWoltLab%2Fwoltlab.github.io.git Unify whitespaces --- diff --git a/docs/getting-started_quick-start.md b/docs/getting-started_quick-start.md index 4397854f..2abd2a67 100644 --- a/docs/getting-started_quick-start.md +++ b/docs/getting-started_quick-start.md @@ -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. diff --git a/docs/tutorial_tutorial-series_part-1-base-structure.md b/docs/tutorial_tutorial-series_part-1-base-structure.md index 16afd772..7daed09a 100644 --- a/docs/tutorial_tutorial-series_part-1-base-structure.md +++ b/docs/tutorial_tutorial-series_part-1-base-structure.md @@ -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 ``` diff --git a/docs/tutorial_tutorial-series_part-2-event-listeners-and-template-listeners.md b/docs/tutorial_tutorial-series_part-2-event-listeners-and-template-listeners.md index 899f295e..1a5fc498 100644 --- a/docs/tutorial_tutorial-series_part-2-event-listeners-and-template-listeners.md +++ b/docs/tutorial_tutorial-series_part-2-event-listeners-and-template-listeners.md @@ -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 diff --git a/docs/tutorial_tutorial-series_part-3-person-page-and-comments.md b/docs/tutorial_tutorial-series_part-3-person-page-and-comments.md index d008563a..ddd173e7 100644 --- a/docs/tutorial_tutorial-series_part-3-person-page-and-comments.md +++ b/docs/tutorial_tutorial-series_part-3-person-page-and-comments.md @@ -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 ```