Uses of Interface
org.apache.wiki.api.core.Context
-
Packages that use Context Package Description org.apache.wiki.api.core JSPWiki's central API.org.apache.wiki.api.engine JSPWiki's Engine's component related classes.org.apache.wiki.api.filters Filter's API package of JSPWiki.org.apache.wiki.api.plugin Plugin's API package of JSPWiki.org.apache.wiki.api.spi JSPWiki's SPI package. -
-
Uses of Context in org.apache.wiki.api.core
Methods in org.apache.wiki.api.core that return Context Modifier and Type Method Description ContextContext. clone()ContextContext. deepClone()Creates a deep clone of the Context.static ContextContext. findContext(javax.servlet.jsp.PageContext pageContext)This method can be used to find the WikiContext programmatically from a JSP PageContext. -
Uses of Context in org.apache.wiki.api.engine
Methods in org.apache.wiki.api.engine with parameters of type Context Modifier and Type Method Description java.lang.StringRenderApi. textToHTML(Context context, java.lang.String pagedata)Converts raw page data to HTML. -
Uses of Context in org.apache.wiki.api.filters
Methods in org.apache.wiki.api.filters with parameters of type Context Modifier and Type Method Description default voidPageFilter. postSave(Context context, java.lang.String content)This method is called after the page has been successfully saved.default java.lang.StringPageFilter. postTranslate(Context context, java.lang.String htmlContent)This method is called after a page has been fed through the translation process, so anything you are seeing here is translated content.default java.lang.StringPageFilter. preSave(Context context, java.lang.String content)This method is called before the page has been saved to the PageProvider.default java.lang.StringPageFilter. preTranslate(Context context, java.lang.String content)This method is called whenever a page has been loaded from the provider, but not yet been sent through the markup-translation process. -
Uses of Context in org.apache.wiki.api.plugin
Methods in org.apache.wiki.api.plugin with parameters of type Context Modifier and Type Method Description java.lang.StringPlugin. execute(Context context, java.util.Map<java.lang.String,java.lang.String> params)This is the main entry point for any plugin.voidPluginElement. executeParse(Context context)Executes the executeParse() method.voidParserStagePlugin. executeParser(PluginElement element, Context context, java.util.Map<java.lang.String,java.lang.String> params)Method which is executed during parsing.java.lang.StringPluginElement. invoke(Context context)Performs plugin invocation and return its contents. -
Uses of Context in org.apache.wiki.api.spi
Methods in org.apache.wiki.api.spi that return Context Modifier and Type Method Description ContextContextDSL. create(Engine engine, javax.servlet.http.HttpServletRequest request, java.lang.String requestContext)Creates a new Context from a supplied HTTP request, using a default wiki context.ContextContextDSL. create(Engine engine, javax.servlet.http.HttpServletRequest request, Command command)Creates a new Context for the given Engine, Command and HttpServletRequest.ContextContextDSL. create(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)Creates a new Context for the given Engine, Page and HttpServletRequest.ContextContextDSL. create(Engine engine, Page page)Create a new Context for the given Page.ContextContextSPI. create(Engine engine, javax.servlet.http.HttpServletRequest request, java.lang.String requestContext)Creates a new Context from a supplied HTTP request, using a default wiki context.ContextContextSPI. create(Engine engine, javax.servlet.http.HttpServletRequest request, Command command)Creates a new Context for the given Engine, Command and HttpServletRequest.ContextContextSPI. create(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)Creates a new Context for the given Engine, Page and HttpServletRequest.ContextContextSPI. create(Engine engine, Page page)Create a new Context for the given Page.
-