com.ecyrd.jspwiki |
|
Java Source File Name | Type | Comment |
LinkCollector.java | Class | Just a simple class collecting all of the links
that come in. |
PageManager.java | Class | Manages the WikiPages. |
ReferenceManager.java | Class | Keeps 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.*.
This class contains two HashMaps, m_refersTo and m_referredBy. |
TranslatorReader.java | Class | Handles conversion from Wiki format into fully featured HTML.
This is where all the magic happens. |
WikiContext.java | Class | Provides state information throughout the processing of a page. |
WikiEngine.java | Class | Provides Wiki services to the JSP page.
This is the main interface through which everything should go.
Using this class: Always get yourself an instance from JSP page
by using the WikiEngine.getInstance() method. |
WikiPage.java | Class | Simple wrapper class for the Wiki page attributes. |