Liferay 6.1.2-ce-ga3

com.liferay.portlet.wiki.engines
Interface WikiEngine

All Known Implementing Classes:
CreoleWikiEngine, HtmlEngine, JSPWikiEngine, MediaWikiEngine, TextEngine

public interface WikiEngine


Method Summary
 String convert(WikiPage page, PortletURL viewPageURL, PortletURL editPageURL, String attachmentURLPrefix)
          Convert the content of the given page to HTML using the view and edit URLs to build links.
 Map<String,Boolean> getOutgoingLinks(WikiPage page)
          Get a map with the links included in the given page.
 void setInterWikiConfiguration(String interWikiConfiguration)
          Set the configuraton to support quick links to other wikis.
 void setMainConfiguration(String mainConfiguration)
          Set the main wiki configuraiton as a String.
 boolean validate(long nodeId, String content)
          Validate the content of a wiki page for this engine.
 

Method Detail

convert

String convert(WikiPage page,
               PortletURL viewPageURL,
               PortletURL editPageURL,
               String attachmentURLPrefix)
               throws PageContentException
Convert the content of the given page to HTML using the view and edit URLs to build links.

Parameters:
page - the wiki page
viewPageURL - the URL to view the page
editPageURL - the URL to edit the page
attachmentURLPrefix - the URL prefix to use for attachments to the page
Returns:
HTML string
Throws:
PageContentException - if a page content exception occurred

getOutgoingLinks

Map<String,Boolean> getOutgoingLinks(WikiPage page)
                                     throws PageContentException
Get a map with the links included in the given page. The key of each map entry is the title of the linked page. The value is a Boolean object that indicates if the linked page exists or not.

Parameters:
page - the page
Returns:
a map of links
Throws:
PageContentException - if a page content exception occurred

setInterWikiConfiguration

void setInterWikiConfiguration(String interWikiConfiguration)
Set the configuraton to support quick links to other wikis. The format of the configuration is specific to the wiki engine.


setMainConfiguration

void setMainConfiguration(String mainConfiguration)
Set the main wiki configuraiton as a String. The format of the configuration is specific to the wiki engine.


validate

boolean validate(long nodeId,
                 String content)
Validate the content of a wiki page for this engine.

Parameters:
nodeId - the ID of the wiki page node
content - the page content
Returns:
true if the content is valid

Liferay 6.1.2-ce-ga3