Uses of Interface
org.apache.wiki.api.filters.PageFilter
| Package | Description |
|---|---|
| org.apache.wiki.api.filters |
Filter's API package of JSPWiki.
|
| org.apache.wiki.filters |
Provides page and content filtering functionality for JSPWiki.
|
| org.apache.wiki.references |
Provides the JSPWiki track of pages' references.
|
| org.apache.wiki.search |
Provides the JSPWiki search functionality.
|
-
Uses of PageFilter in org.apache.wiki.api.filters
Classes in org.apache.wiki.api.filters that implement PageFilter Modifier and Type Class Description classBasePageFilterProvides a base implementation of a PageFilter.classBasicPageFilterDeprecated. -
Uses of PageFilter in org.apache.wiki.filters
Classes in org.apache.wiki.filters that implement PageFilter Modifier and Type Class Description classCreoleFilterProvides 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.classPageEventFilterFires WikiPageEvents for page events.classPingWeblogsComFilterA very dumb class that pings weblogs.com on each save.classProfanityFilterThis class is an example of how to have a simple filter.classSpamFilterThis is Herb, the JSPWiki spamfilter that can also do choke modifications.Methods in org.apache.wiki.filters that return types with arguments of type PageFilter Modifier and Type Method Description java.util.List<PageFilter>DefaultFilterManager. getFilterList()Returns the list of filters currently installed.java.util.List<PageFilter>FilterManager. getFilterList()Returns the list of filters currently installed.Methods in org.apache.wiki.filters with parameters of type PageFilter Modifier and Type Method Description voidDefaultFilterManager. addPageFilter(PageFilter f, int priority)Adds a page filter to the queue.voidFilterManager. addPageFilter(PageFilter f, int priority)Adds a page filter to the queue. -
Uses of PageFilter in org.apache.wiki.references
Subinterfaces of PageFilter in org.apache.wiki.references Modifier and Type Interface Description interfaceReferenceManagerKeeps track of wikipage references: What pages a given page refers to What pages refer to a given page When a page is added or edited, its references are parsed, a Collection is received, and we crudely replace anything previous with this new Collection.Classes in org.apache.wiki.references that implement PageFilter Modifier and Type Class Description classDefaultReferenceManagerKeeps track of wikipage references: What pages a given page refers to What pages refer to a given page This is a quick'n'dirty approach without any finesse in storage and searching algorithms; we trust java.util.*. -
Uses of PageFilter in org.apache.wiki.search
Subinterfaces of PageFilter in org.apache.wiki.search Modifier and Type Interface Description interfaceSearchManagerManages searching the Wiki.Classes in org.apache.wiki.search that implement PageFilter Modifier and Type Class Description classDefaultSearchManagerManages searching the Wiki.
BasePageFilterinstead