1.2.0 release
* Allow identification of links to non-existing pages * Add ability to display current page in menu
This commit is contained in:
parent
04af95e6f3
commit
3e901fd66e
2 changed files with 8 additions and 8 deletions
14
README.md
14
README.md
|
@ -18,16 +18,16 @@ through links in the page menu.
|
||||||
* `tar`
|
* `tar`
|
||||||
* `gzip`
|
* `gzip`
|
||||||
|
|
||||||
#### Current stable version (1.1.0)
|
#### Current stable version (1.2.0)
|
||||||
|
|
||||||
Assuming the root directory of your DokuWiki installation is `/srv/dokuwiki`:
|
Assuming the root directory of your DokuWiki installation is `/srv/dokuwiki`:
|
||||||
```
|
```
|
||||||
DOKUWIKI_PATH=/srv/dokuwiki
|
DOKUWIKI_PATH=/srv/dokuwiki
|
||||||
TARBALL_URL=https://forge.dotslashplay.it/vv221/dokuwiki-childrenpages/-/archive/1.0.0/dokuwiki-childrenpages-1.1.0.tar.gz
|
TARBALL_URL=https://forge.dotslashplay.it/vv221/dokuwiki-childrenpages/-/archive/1.2.0/dokuwiki-childrenpages-1.2.0.tar.gz
|
||||||
curl "$TARBALL_URL" > dokuwiki-childrenpages-1.1.0.tar.gz
|
curl "$TARBALL_URL" > dokuwiki-childrenpages-1.2.0.tar.gz
|
||||||
mkdir --parents "$DOKUWIKI_PATH/lib/plugins/childrenpages"
|
mkdir --parents "$DOKUWIKI_PATH/lib/plugins/childrenpages"
|
||||||
gzip --stdout --decompress dokuwiki-childrenpages-1.1.0.tar.gz | tar xf - --strip-components=1 --directory="$DOKUWIKI_PATH/lib/plugins/childrenpages"
|
gzip --stdout --decompress dokuwiki-childrenpages-1.2.0.tar.gz | tar xf - --strip-components=1 --directory="$DOKUWIKI_PATH/lib/plugins/childrenpages"
|
||||||
rm dokuwiki-childrenpages-1.1.0.tar.gz
|
rm dokuwiki-childrenpages-1.2.0.tar.gz
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Latest development version
|
#### Latest development version
|
||||||
|
@ -48,13 +48,13 @@ rm dokuwiki-childrenpages-master.tar.gz
|
||||||
|
|
||||||
* `git`
|
* `git`
|
||||||
|
|
||||||
#### Current stable version (1.1.0)
|
#### Current stable version (1.2.0)
|
||||||
|
|
||||||
Assuming the root directory of your DokuWiki installation is `/srv/dokuwiki`:
|
Assuming the root directory of your DokuWiki installation is `/srv/dokuwiki`:
|
||||||
```
|
```
|
||||||
DOKUWIKI_PATH=/srv/dokuwiki
|
DOKUWIKI_PATH=/srv/dokuwiki
|
||||||
REPO_URL=https://forge.dotslashplay.it/vv221/dokuwiki-childrenpages.git
|
REPO_URL=https://forge.dotslashplay.it/vv221/dokuwiki-childrenpages.git
|
||||||
git clone --branch 1.1.0 --depth 1 "$REPO_URL" "$DOKUWIKI_PATH/lib/plugins/childrenpages"
|
git clone --branch 1.2.0 --depth 1 "$REPO_URL" "$DOKUWIKI_PATH/lib/plugins/childrenpages"
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Latest development version
|
#### Latest development version
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
base childrenpages
|
base childrenpages
|
||||||
author Antoine Le Gonidec
|
author Antoine Le Gonidec
|
||||||
email vv221.dokuwiki@dotslashplay.it
|
email vv221.dokuwiki@dotslashplay.it
|
||||||
date 2020-04-03
|
date 2020-04-28
|
||||||
name Children pages
|
name Children pages
|
||||||
desc For each page, this plugin adds children pages in pre-set namespaces, reachable through links in the page menu
|
desc For each page, this plugin adds children pages in pre-set namespaces, reachable through links in the page menu
|
||||||
url https://forge.dotslashplay.it/vv221/dokuwiki-childrenpages
|
url https://forge.dotslashplay.it/vv221/dokuwiki-childrenpages
|
||||||
|
|
Loading…
Reference in a new issue