Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | Today | - | ||||
conf/ | H | 03-May-2018 | - | 8 | 4 | |
images/ | H | 03-May-2018 | - | 29 | 19 | |
lang/ | H | 03-May-2018 | - | 98 | 24 | |
.editorconfig | H A D | 27-Apr-2018 | 181 | 17 | 12 | |
MenuItem.php | H A D | 27-Apr-2018 | 673 | 32 | 11 | |
README.md | H A D | 27-Apr-2018 | 1.9 KiB | 55 | 35 | |
action.php | H A D | 27-Apr-2018 | 2.8 KiB | 84 | 38 | |
plugin.info.txt | H A D | 27-Apr-2018 | 196 | 8 | 7 | |
screen.css | H A D | 27-Apr-2018 | 823 | 28 | 23 | |
script.js | H A D | 27-Apr-2018 | 1.7 KiB | 49 | 36 |
README.md
1Copy Page Plugin for DokuWiki 2============================= 3 4Create a new page from an existing page. 5 6![Screenshot of Copy Page Plugin](https://raw.githubusercontent.com/orangain/dokuwiki-copypage-plugin/master/images/screenshot.png) 7 8All documentation for this plugin can be found at 9https://www.dokuwiki.org/plugin:copypage 10 11If you install this plugin manually, make sure it is installed in 12`lib/plugins/copypage/` - if the folder is called different it 13will not work! 14 15Please refer to http://www.dokuwiki.org/plugins for additional info 16on how to install plugins in DokuWiki. 17 18For Developers 19-------------- 20 21You can launch a DokuWiki instance with the copypage plugin in your current directory by [docker](https://www.docker.com/). Thanks [mprasil](https://hub.docker.com/r/mprasil/dokuwiki/)! 22 23``` 24$ docker run --rm -v `pwd`:/dokuwiki/lib/plugins/copypage -p 80:80 mprasil/dokuwiki:2015-08-10a 25``` 26 27Then navigate to `http://<YOUR DOCKER HOST>/`. 28 29The version of dokuwiki can be specified by [tags](https://hub.docker.com/r/mprasil/dokuwiki/tags/). 30 31### Tips for debugging 32 33* If you need some configuration of DokuWiki, navigate to `http://<YOUR DOCKER HOST>/install.php` to setup your instance. 34* Disabling [compress](https://www.dokuwiki.org/config:compress) option will help debugging JavaScript. 35 36### Resources 37 38* [Plugin Development](https://www.dokuwiki.org/devel:plugins) 39 40License 41------- 42 43Copyright (C) orangain <orangain@gmail.com> 44 45This program is free software; you can redistribute it and/or modify 46it under the terms of the GNU General Public License as published by 47the Free Software Foundation; version 2 of the License 48 49This program is distributed in the hope that it will be useful, 50but WITHOUT ANY WARRANTY; without even the implied warranty of 51MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 52GNU General Public License for more details. 53 54See the COPYING file in your DokuWiki folder for details 55