Create Page

Last modified by Manuel Leduc on 2023/10/10 16:46

cogCreate a new page programatically in a wiki page using Velocity scripting
TypeSnippet
Category
Developed by

Vincent Massol

Rating
LicenseGNU 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())

See also the Developer API Guide.

Get Connected