summaryrefslogtreecommitdiffstats
path: root/Configuration.md
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-24 22:10:51 +0200
committerThomas Lange <code@nerdmind.de>2021-06-24 22:10:51 +0200
commit5f62e251b85c9e5b9c64423c829f25137970484a (patch)
tree002b5e713ae6af4df8bdb59ff09339f6e73c011a /Configuration.md
parent563a42b96f58b22d2d8f4fefc1db16f3ef6deb81 (diff)
downloadwiki-5f62e251b85c9e5b9c64423c829f25137970484a.tar.gz
wiki-5f62e251b85c9e5b9c64423c829f25137970484a.tar.xz
wiki-5f62e251b85c9e5b9c64423c829f25137970484a.zip
Replace boolean with bool
Diffstat (limited to 'Configuration.md')
-rw-r--r--Configuration.md20
1 files 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 `<html>` 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`]
## `<meta>` description
Number of characters of the items content to display within the `<meta>` description.