|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FilterException | |
---|---|
com.ecyrd.jspwiki.event | |
com.ecyrd.jspwiki.filters | Provides page and content filtering functionality for JSPWiki. |
com.ecyrd.jspwiki.search | Provides the JSPWiki search functionality. |
Uses of FilterException in com.ecyrd.jspwiki.event |
---|
Methods in com.ecyrd.jspwiki.event that throw FilterException | |
---|---|
void |
PageEventFilter.initialize(Properties properties)
Called whenever a new PageFilter is instantiated and reset. |
void |
PageEventFilter.postSave(WikiContext wikiContext,
String content)
This method is called after the page has been successfully saved. |
String |
PageEventFilter.postTranslate(WikiContext wikiContext,
String htmlContent)
This method is called after a page has been fed through the TranslatorReader, so anything you are seeing here is translated content. |
String |
PageEventFilter.preSave(WikiContext wikiContext,
String content)
This method is called before the page has been saved to the PageProvider. |
String |
PageEventFilter.preTranslate(WikiContext wikiContext,
String content)
This method is called whenever a page has been loaded from the provider, but not yet been sent through the TranslatorReader. |
Uses of FilterException in com.ecyrd.jspwiki.filters |
---|
Subclasses of FilterException in com.ecyrd.jspwiki.filters | |
---|---|
class |
RedirectException
This exception may be thrown if a filter wants to reject something and redirect the user elsewhere. |
Methods in com.ecyrd.jspwiki.filters that throw FilterException | |
---|---|
void |
FilterManager.doPostSaveFiltering(WikiContext context,
String pageData)
Does the page filtering after the page has been saved. |
String |
FilterManager.doPostTranslateFiltering(WikiContext context,
String htmlData)
Does the filtering after HTML translation. |
String |
FilterManager.doPreSaveFiltering(WikiContext context,
String pageData)
Does the filtering before a save to the page repository. |
String |
FilterManager.doPreTranslateFiltering(WikiContext context,
String pageData)
Does the filtering before a translation. |
void |
PageFilter.initialize(WikiEngine engine,
Properties properties)
Is called whenever the a new PageFilter is instantiated and reset. |
void |
CreoleFilter.initialize(WikiEngine engine,
Properties props)
If you override this, you should call super.initialize() first. |
void |
BasicPageFilter.initialize(WikiEngine engine,
Properties properties)
If you override this, you should call super.initialize() first. |
void |
PageFilter.postSave(WikiContext wikiContext,
String content)
This method is called after the page has been successfully saved. |
void |
BasicPageFilter.postSave(WikiContext wikiContext,
String content)
This method is called after the page has been successfully saved. |
String |
PageFilter.postTranslate(WikiContext wikiContext,
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. |
String |
BasicPageFilter.postTranslate(WikiContext wikiContext,
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. |
String |
PageFilter.preSave(WikiContext wikiContext,
String content)
This method is called before the page has been saved to the PageProvider. |
String |
CreoleFilter.preSave(WikiContext wikiContext,
String content)
This method is called before the page has been saved to the PageProvider. |
String |
BasicPageFilter.preSave(WikiContext wikiContext,
String content)
This method is called before the page has been saved to the PageProvider. |
String |
PageFilter.preTranslate(WikiContext wikiContext,
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. |
String |
CreoleFilter.preTranslate(WikiContext wikiContext,
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. Note that you cannot do HTML translation here, because it will be escaped. |
String |
BasicPageFilter.preTranslate(WikiContext wikiContext,
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 FilterException in com.ecyrd.jspwiki.search |
---|
Methods in com.ecyrd.jspwiki.search that throw FilterException | |
---|---|
void |
SearchManager.initialize(WikiEngine engine,
Properties properties)
This particular method starts off indexing and all sorts of various activities, so you need to run this last, after things are done. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |