| java.lang.Object org.blojsom.plugin.calendar.AbstractCalendarPlugin
All known Subclasses: org.blojsom.plugin.calendar.CalendarFilterPlugin, org.blojsom.plugin.calendar.AbstractVisualCalendarPlugin,
AbstractCalendarPlugin | abstract public class AbstractCalendarPlugin implements Plugin(Code) | | AbstractCalendarPlugin is a base plugin that is used by the various calendar plugins
to filter content.
author: David Czarnecki author: Mark Lussier since: blojsom 3.0 version: $Id: AbstractCalendarPlugin.java,v 1.5 2007/01/17 02:35:08 czarneckid Exp $ |
BLOJSOM_CALENDAR | final public static String BLOJSOM_CALENDAR(Code) | | Key under which the blog calendar will be placed
(example: on the request for the JSPDispatcher)
|
BLOJSOM_CALENDAR_FORMAT | final protected static String BLOJSOM_CALENDAR_FORMAT(Code) | | Format String for Calendar Month
(Example: March 2003)
|
BLOJSOM_CALENDAR_LOCALE | final protected static String BLOJSOM_CALENDAR_LOCALE(Code) | | |
BLOJSOM_CALENDAR_SHORTFORMAT | final protected static String BLOJSOM_CALENDAR_SHORTFORMAT(Code) | | Short Format String for Previous/Next Calendar Month(s)
(Example: Mar)
|
BLOJSOM_CALENDAR_VTLHELPER | final public static String BLOJSOM_CALENDAR_VTLHELPER(Code) | | Key under which the blog calendar vtl helper will be placed
(example: on the request for the JSPDispatcher)
|
BLOJSOM_FILTER_END_DATE | final protected static String BLOJSOM_FILTER_END_DATE(Code) | | |
BLOJSOM_FILTER_START_DATE | final protected static String BLOJSOM_FILTER_START_DATE(Code) | | |
DAY_PARAM | final protected static String DAY_PARAM(Code) | | Request parameter for the "day"
|
MONTH_PARAM | final protected static String MONTH_PARAM(Code) | | Request parameter for the "month"
|
YEAR_PARAM | final protected static String YEAR_PARAM(Code) | | Request parameter for the "year"
|
destroy | public void destroy() throws PluginException(Code) | | Called when BlojsomServlet is taken out of service
throws: PluginException - If there is an error in finalizing this plugin |
init | public void init() throws PluginException(Code) | | Initialize this plugin. This method only called when the plugin is instantiated.
throws: PluginException - If there is an error initializing the plugin |
process | public Entry[] process(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Blog blog, Map context, Entry[] entries) throws PluginException(Code) | | Process the blog entries
Parameters: httpServletRequest - Request Parameters: httpServletResponse - Response Parameters: blog - Blog instance Parameters: context - Context Parameters: entries - Blog entries retrieved for the particular request Modified set of blog entries throws: PluginException - If there is an error processing the blog entries |
|
|