DokuWiki children pages plugin
Find a file
Antoine Le Gonidec b91a53b1a2
2024-10-04 bugfix release
* Prevent PHP warnings triggered by trying to fetch unset array entries.
2024-10-04 20:47:06 +02:00
conf A link to the current page can be shown 2020-04-28 13:26:30 +02:00
img Add screenshot to the README 2020-04-03 23:04:36 +02:00
lang A link to the current page can be shown 2020-04-28 13:26:30 +02:00
action.php Prevent PHP warnings triggered by trying to fetch unset array entries 2024-10-04 20:45:57 +02:00
LICENSE Initialize repository with plugin license 2020-03-30 22:51:58 +02:00
MenuItem.php Drop requirement on PHP ≥ 7.4.0 2020-05-01 20:18:58 +02:00
plugin.info.txt 2024-10-04 bugfix release 2024-10-04 20:47:06 +02:00
README.md Update metadata to target the new git repository 2024-04-24 20:06:28 +02:00

DokuWiki plugin: Children pages

For each page, this plugin adds children pages in pre-set namespaces, reachable through links in the page menu.

thumbnail

Installation

Requirements

  • git

Current stable version (1.2.1)

Assuming the root directory of your DokuWiki installation is /srv/dokuwiki:

DOKUWIKI_PATH=/srv/dokuwiki
REPO_URL=https://git.vv221.fr/dokuwiki-childrenpages
git clone --branch 1.2.1 --depth 1 "$REPO_URL" "$DOKUWIKI_PATH/lib/plugins/childrenpages"

Latest development version

Assuming the root directory of your DokuWiki installation is /srv/dokuwiki:

DOKUWIKI_PATH=/srv/dokuwiki
REPO_URL=https://git.vv221.fr/dokuwiki-childrenpages
git clone --branch master --depth 1 "$REPO_URL" "$DOKUWIKI_PATH/lib/plugins/childrenpages"

Configuration

Namespaces list

The links to children pages are generated from a list of reserved top level namespaces. Normal pages should not be created in these namespaces.

This list can be modified in DokuWiki config manager, and defaults to:

animation, gameplay, dev, talk

Informations for developers

Up-to-date informations for developers can be found on the project wiki.