Create Page
Last modified by Manuel Leduc on 2023/10/10 16:46
Create a new page programatically in a wiki page using Velocity scripting |
Type | Snippet |
Category | |
Developed by | |
Rating | |
License | GNU Lesser General Public License 2.1 |
Table of contents
Description
#set ($mydoc = $xwiki.getDocument("MySpace.MyPage"))
#set ($discard = $mydoc.setContent("test"))
#set ($discard = $mydoc.save())
#set ($discard = $mydoc.setContent("test"))
#set ($discard = $mydoc.save())
See also the Developer API Guide.