Package com.ecyrd.jspwiki.filters

Provides page and content filtering functionality for JSPWiki.

See:
          Description

Interface Summary
PageFilter Provides a definition for a page filter.
 

Class Summary
BasicPageFilter Provides a base implementation of a PageFilter.
CreoleFilter Provides the Implementation for mixed mode creole: If you activate this filter, it will translate all markup that was saved as creole markup to JSPWiki markup.
FilterManager Manages the page filters.
PingWeblogsComFilter A very dumb class that pings weblogs.com on each save.
ProfanityFilter This class is an example of how to have a simple filter.
 

Exception Summary
FilterException A generic PageFilter exception.
RedirectException This exception may be thrown if a filter wants to reject something and redirect the user elsewhere.
 

Package com.ecyrd.jspwiki.filters Description

Provides page and content filtering functionality for JSPWiki.

Package specification

PageFilters are objects which can influence the way a page is translated from WikiMarkup to HTML, or change the content when the page is saved. They're fairly versatile, and you can do lots of interesting stuff with them, ranging from adding your own WikiMarkup rules to purifying your HTML to making a spam filter to counting popularity of pages.

Related documentation

TBD.