The WikiService service is used to configure the Wiki. When this configuration file is executed, the component named org.exoplatform.wiki.service.impl.WikiServiceImpl
will process actions of Wiki. The
configuration of this service is found in wiki-service/src/main/resources/conf/portal/configuration.xml
:
Sample configuration:
<component>
<key>org.exoplatform.wiki.service.WikiService</key>
<type>org.exoplatform.wiki.service.impl.WikiServiceImpl</type>
<init-params>
<values-param>
<name>xwiki/2.0</name>
<value>jar:/wikisyntax/help/xWiki2.0_Short.txt</value>
<value>jar:/wikisyntax/help/xWiki2.0_Full.txt</value>
</values-param>
<properties-param>
<name>preferences</name>
<property name="defaultSyntax" value="xwiki/2.0"/>
</properties-param>
</init-params>
</component>
Init-params
Name | Type | Value | Description |
---|---|---|---|
xwiki/2.0 |
String list
|
jar:/wikisyntax/help/xWiki2.0_Short.txt , jar:/wikisyntax/help/xWiki2.0_Full.txt
| The list of Syntax Help files. |
Properties-param
Property name | Type | Value | Description |
---|---|---|---|
defaultSyntax
|
String
|
xwiki/2.0
| The default syntax which is used in Wiki. |