-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '5cc7d7358990f860049caa54fce63c5d6f7dd72e' into pr72
# Conflicts: # syntax.php
- Loading branch information
Showing
2 changed files
with
44 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Robert McLeod <[email protected]> | ||
Michael Kraemer <[email protected]> | ||
Michael Kraemer <[email protected]> <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,48 @@ | ||
Dokuwiki Plugin: Add New Page | ||
============================= | ||
# Add New Page Plugin for DokuWiki | ||
|
||
The add new page plugin for Dokuwiki: https://www.dokuwiki.org/plugin:addnewpage | ||
Copyright (c) 2006 Benjamin Santalucia <[email protected]> | ||
Copyright (c) 2013 Sam Wilson <[email protected]> | ||
Copyright (c) 2023 Damien Regad <[email protected]> | ||
|
||
This is free software, released under the [GPL version 2](https://www.gnu.org/licenses/gpl-2.0-standalone.html). | ||
The plugin lets users put *add new page* forms within pages, with optional namespace selection. | ||
|
||
## Syntax | ||
## License | ||
|
||
{{NEWPAGE[>namespace]}} | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the | ||
[GNU General Public License, version 2](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html) | ||
or later. | ||
|
||
Where namespace is optional, and indicates the destination namespace for the new page. | ||
If you give @NS@ or @PAGE@ as namespace, the namespace of the current page or the current page ID will be used. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
## Authors | ||
## Installation and Configuration | ||
|
||
- Originally written by [Benjamin Santalucia](https://github.com/ben8p) (aka iDo), 2006. | ||
- Moved to Github by hamstar <[email protected]>, 2012. | ||
- Updated by Sam Wilson <[email protected]>, 2013. | ||
- Updated by Michael Braun <[email protected]>, 2013. | ||
- Improved by Róbert Toth (FurloSK), 2013. | ||
- Support for newpagetemplate added by Gerrit Uitslag <[email protected]>, 2014. | ||
- Disabling of restricted parent namespaces by Albert Chern, 2015. | ||
Please refer to | ||
[the plugin's wiki page](https://www.dokuwiki.org/plugin:addnewpage) | ||
for information on how to install, configure and use this plugin in DokuWiki. | ||
|
||
|
||
## Support | ||
|
||
Source code and support for this plugin can be found at | ||
<https://github.com/dregad/dokuwiki-plugin-addnewpage> | ||
|
||
## Credits | ||
|
||
The plugin was originally written by [Benjamin Santalucia](https://github.com/ben8p) (aka iDo) in 2006. It was forked after the 2009-02-14 release of Dokuwiki, and moved to GitHub by [Robert McLeod](https://github.com/hamstar) in 2012. | ||
Refer to the [Legacy Releases section](https://www.dokuwiki.org/plugin:addnewpage#legacy_releases) in the plugin's home page for details on what happened in those early, pre-GitHub years. | ||
|
||
In 2013, [Sam Wilson](https://github.com/samwilson) picked up the plugin's maintenance and actively supported it until he stopped using DokuWiki at the end of 2016. | ||
During this time, he merged several improvements and fixes contributed by these fine people: | ||
|
||
- [Michael Braun](https://github.com/michael-dev) | ||
- [Róbert Toth](https://github.com/FurloSK) | ||
- [Gerrit Uitslag](https://github.com/klap-in) added support for newpagetemplate plugin in 2014 | ||
- [Albert Chern](https://github.com/achern), disabling of restricted parent namespaces in 2015 | ||
|
||
In May 2023, [Damien Regad](https://github.com/dregad) decided to take over the plugin's maintenance. | ||
|
||
Thanks to [all the people who contributed](https://github.com/dregad/dokuwiki-plugin-addnewpage/graphs/contributors) to this plugin over the years. |