From 5f62e251b85c9e5b9c64423c829f25137970484a Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Thu, 24 Jun 2021 22:10:51 +0200 Subject: Replace boolean with bool --- Configuration.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Configuration.md b/Configuration.md index 29a4813..6928db9 100644 --- a/Configuration.md +++ b/Configuration.md @@ -20,7 +20,7 @@ If-None-Match: "241d9ec9cb7526853698590929f06ae9-gzip" The application now calculates again a hash value of the last created/edited items and compares it to the hash of the `If-None-Match` request header which was sent by the client. If these two hash values are **the same**, then obviously no new items have been created/edited since the last request by the client. Therefore, the application immediately exits and returns the `304 Not Modified` HTTP response status. -* `CORE.SEND_304`: [boolean: `TRUE`|`FALSE`] +* `CORE.SEND_304`: [bool: `TRUE`|`FALSE`] ## Blog informations Meta informations about your custom blog installation. Please note that `BLOGMETA.LANG` is not the system language! It is the language in which **your content** is written and is useful for the `lang` attribute on the `` tag within the template. It depends on the template whether this variable is used or not. @@ -82,16 +82,16 @@ Number of items to display within the RSS feed. ## Slug URLs Enable or disable the use of slug URLs for item permalinks. If disabled, the unique primary item ID is used instead. -* `PAGE.SLUG_URLS`: [boolean: `TRUE`|`FALSE`] -* `POST.SLUG_URLS`: [boolean: `TRUE`|`FALSE`] -* `USER.SLUG_URLS`: [boolean: `TRUE`|`FALSE`] +* `PAGE.SLUG_URLS`: [bool: `TRUE`|`FALSE`] +* `POST.SLUG_URLS`: [bool: `TRUE`|`FALSE`] +* `USER.SLUG_URLS`: [bool: `TRUE`|`FALSE`] ## Single redirects Enable or disable the redirection from the overviews to the items main page if only one item of the specific type exists. For example, if you only have one user and `USER.SINGLE_REDIRECT` is set to `TRUE`, then requests to `/user/` will be automatically redirected to `/user/username/` or `/user/id/`. -* `PAGE.SINGLE_REDIRECT`: [boolean: `TRUE`|`FALSE`] -* `POST.SINGLE_REDIRECT`: [boolean: `TRUE`|`FALSE`] -* `USER.SINGLE_REDIRECT`: [boolean: `TRUE`|`FALSE`] +* `PAGE.SINGLE_REDIRECT`: [bool: `TRUE`|`FALSE`] +* `POST.SINGLE_REDIRECT`: [bool: `TRUE`|`FALSE`] +* `USER.SINGLE_REDIRECT`: [bool: `TRUE`|`FALSE`] ## Directories Item base directories relative to your base directory where the application is installed. @@ -103,9 +103,9 @@ Item base directories relative to your base directory where the application is i ## Emoticons Enable or disable parsing of emoticons for the body of the specific item type. -* `PAGE.EMOTICONS`: [boolean: `TRUE`|`FALSE`] -* `POST.EMOTICONS`: [boolean: `TRUE`|`FALSE`] -* `USER.EMOTICONS`: [boolean: `TRUE`|`FALSE`] +* `PAGE.EMOTICONS`: [bool: `TRUE`|`FALSE`] +* `POST.EMOTICONS`: [bool: `TRUE`|`FALSE`] +* `USER.EMOTICONS`: [bool: `TRUE`|`FALSE`] ## `` description Number of characters of the items content to display within the `` description. -- cgit v1.2.3