Uses of Class
org.clapper.curn.CurnException

Packages that use CurnException
org.clapper.curn   
org.clapper.curn.output org.clapper.curn.output - Predefined Output Handlers This package contains predefined output handlers for curn
org.clapper.curn.output.freemarker   
org.clapper.curn.output.script   
org.clapper.curn.plugins   
 

Uses of CurnException in org.clapper.curn
 

Subclasses of CurnException in org.clapper.curn
 class CurnUsageException
          Thrown to indicate a curn usage exception (usually, something under the user's control), rather than a system problem.
 class FeedCacheException
          Thrown during feed cache processing.
 class FeedException
          FeedException is thrown when there's an error with a feed.
 

Methods in org.clapper.curn that throw CurnException
 void ReadOnlyOutputHandler.displayChannel(RSSChannel channel, FeedInfo feedInfo)
          Display the list of RSSItem news items to whatever output is defined for the underlying class.
 void OutputHandler.displayChannel(RSSChannel channel, FeedInfo feedInfo)
          Display the list of RSSItem news items to whatever output is defined for the underlying class.
protected  void XMLDataPersister.doLoad(DataPersister.LoadedDataHandler loadedDataHandler)
          The actual load method; only called if the object is enabled.
protected abstract  void DataPersister.doLoad(DataPersister.LoadedDataHandler loadedDataHandler)
          The actual load method; only called if the object is enabled.
protected  void XMLDataPersister.endLoadOperation()
          Called at the end of the load operation to close files, clean up, etc.
protected abstract  void DataPersister.endLoadOperation()
          Called at the end of the load operation to close files, clean up, etc.
protected  void XMLDataPersister.endSaveOperation()
          Called at the end of the actual save operation to flush files, clean up, etc.
protected abstract  void DataPersister.endSaveOperation()
          Called at the end of the actual save operation to flush files, clean up, etc.
 void DataPersister.LoadedDataHandler.extraMetadataLoaded(PersistentMetadataGroup metadataGroup)
          Called by the subclass when it has finished loading the extra metadata for a particular namespace.
 void DataPersister.LoadedDataHandler.feedLoaded(PersistentFeedData feedData)
          Called by the subclass when it has finished loading data for a feed.
 void ReadOnlyOutputHandler.flush()
          Flush any buffered-up output and close the underlying output stream(s), if any.
 void OutputHandler.flush()
          Flush any buffered-up output and close the underlying output stream(s), if any.
 java.util.Map<java.lang.String,java.lang.String> PersistentDataClient.getExtraFeedMetadata()
          Get any extra metadata (i.e., data that is not associated with a feed or an item) that is to be saved.
 java.util.Map<java.lang.String,java.lang.String> AbstractPersistentDataClient.getExtraFeedMetadata()
          Get any extra metadata (i.e., data that is not associated with a feed or an item) that is to be saved.
 java.io.File ReadOnlyOutputHandler.getGeneratedOutput()
          Get the File that represents the output produced by the handler, if applicable.
 java.io.File OutputHandler.getGeneratedOutput()
          Get the File that represents the output produced by the handler, if applicable.
 java.util.Map<java.lang.String,java.lang.String> PersistentDataClient.getMetadataForFeed(FeedCacheEntry feedData)
          Get the metadata that is to be saved with a particular feed or channel.
 java.util.Map<java.lang.String,java.lang.String> AbstractPersistentDataClient.getMetadataForFeed(FeedCacheEntry feedData)
          Get the metadata that is to be saved with a particular feed or channel.
 java.util.Map<java.lang.String,java.lang.String> PersistentDataClient.getMetadataForItem(FeedCacheEntry itemData, FeedCacheEntry feedData)
          Get the metadata that is to be saved with a particular item within a feed.
 java.util.Map<java.lang.String,java.lang.String> AbstractPersistentDataClient.getMetadataForItem(FeedCacheEntry itemData, FeedCacheEntry feedData)
          Get the metadata that is to be saved with a particular item within a feed.
 OutputHandler ConfiguredOutputHandler.getOutputHandler()
          Get the actual OutputHandler object, instantiating it if it hasn't already been instantiated.
static OutputHandler OutputHandlerFactory.getOutputHandler(java.lang.Class<?> cls)
          Get an instance of the named OutputHandler class.
static OutputHandler OutputHandlerFactory.getOutputHandler(java.lang.String className)
          Get an instance of the named OutputHandler class.
 void XMLDataPersister.init(CurnConfig curnConfig)
          Called when the DataPersister is first instantiated.
abstract  void DataPersister.init(CurnConfig curnConfig)
          Called when the DataPersister is first instantiated.
 void ReadOnlyOutputHandler.init(CurnConfig config, ConfiguredOutputHandler cfgHandler)
          Initializes the output handler for another set of RSS channels.
 void OutputHandler.init(CurnConfig config, ConfiguredOutputHandler cfgHandler)
          Initializes the output handler for another set of RSS channels.
 void Tool.initPlugIn()
           
 void PlugIn.initPlugIn()
          Initialize the plug-in.
 void MetaPlugIn.initPlugIn()
           
 void DataPersisterFactory.initPlugIn()
          Initialize the plug-in.
 void DataPersister.loadData(FeedCache feedCache)
          Load the cache and metadata.
static Curn CurnFactory.newCurn()
          Create a new Curn object.
 void PersistentDataClient.parseExtraMetadata(java.lang.String name, java.lang.String value)
          Process an "extra" data item that is not associated with a feed or an item.
 void AbstractPersistentDataClient.parseExtraMetadata(java.lang.String name, java.lang.String value)
          Process an "extra" data item that is not associated with a feed or an item.
 void PersistentDataClient.parseFeedMetadata(java.lang.String name, java.lang.String value, FeedCacheEntry feedData)
          Process a data item that has been read from the metadata store and is associated with a feed (or channel).
 void AbstractPersistentDataClient.parseFeedMetadata(java.lang.String name, java.lang.String value, FeedCacheEntry feedData)
          Process a data item that has been read from the metadata store and is associated with a feed (or channel).
 void PersistentDataClient.parseItemMetadata(java.lang.String name, java.lang.String value, FeedCacheEntry itemData)
          Process a data item that has been read from the metadata store and is associated with a cached item.
 void AbstractPersistentDataClient.parseItemMetadata(java.lang.String name, java.lang.String value, FeedCacheEntry itemData)
          Process a data item that has been read from the metadata store and is associated with a cached item.
 void Curn.run(java.net.URL configURL, boolean useCache)
          Run curn against a configuration file.
 void MetaPlugIn.runCacheLoadedPlugIn(FeedCache cache)
           
 void CacheLoadedPlugIn.runCacheLoadedPlugIn(FeedCache cache)
          Called after the curn cache has been read (and after any expired entries have been purged), but before any feeds are processed.
 boolean MetaPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
           
 boolean FeedConfigItemPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 void MetaPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
           
 void MainConfigItemPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void DataPersisterFactory.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 boolean OutputHandlerConfigItemPlugIn.runOutputHandlerConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, ConfiguredOutputHandler handler)
          Called immediately after curn has read and processed a configuration item in an output handler configuration section.
 boolean MetaPlugIn.runOutputHandlerConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, ConfiguredOutputHandler handler)
           
 void Tool.runPostConfigPlugIn(CurnConfig config)
           
 void PostConfigPlugIn.runPostConfigPlugIn(CurnConfig config)
          Called after the entire configuration has been read and parsed, but before any feeds are processed.
 void MetaPlugIn.runPostConfigPlugIn(CurnConfig config)
           
 void DataPersisterFactory.runPostConfigPlugIn(CurnConfig config)
          Called after the entire configuration has been read and parsed, but before any feeds are processed.
 boolean PostFeedDownloadPlugIn.runPostFeedDownloadPlugIn(FeedInfo feedInfo, java.io.File feedDataFile, java.lang.String encoding)
          Called immediately after a feed is downloaded.
 boolean MetaPlugIn.runPostFeedDownloadPlugIn(FeedInfo feedInfo, java.io.File feedDataFile, java.lang.String encoding)
           
 void PostFeedOutputPlugIn.runPostFeedOutputPlugIn(FeedInfo feedInfo, OutputHandler outputHandler)
          Called immediately after a parsed feed is passed to an output handler.
 void MetaPlugIn.runPostFeedOutputPlugIn(FeedInfo feedInfo, OutputHandler outputHandler)
           
 boolean PostFeedParsePlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean MetaPlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
           
 boolean PostOutputHandlerFlushPlugIn.runPostOutputHandlerFlushPlugIn(OutputHandler outputHandler)
          Called immediately after an output handler is flushed (i.e., after it has been called to process all feeds and its output has been written to a temporary file), but before that output is displayed, emailed, etc.
 boolean MetaPlugIn.runPostOutputHandlerFlushPlugIn(OutputHandler outputHandler)
           
 void PostOutputPlugIn.runPostOutputPlugIn(java.util.Collection<OutputHandler> outputHandlers)
          Called after curn has flushed all output handlers.
 void MetaPlugIn.runPostOutputPlugIn(java.util.Collection<OutputHandler> outputHandlers)
           
 void PreCacheSavePlugIn.runPreCacheSavePlugIn(FeedCache cache)
          Called right before the curn cache is to be saved.
 void MetaPlugIn.runPreCacheSavePlugIn(FeedCache cache)
           
 boolean PreFeedDownloadPlugIn.runPreFeedDownloadPlugIn(FeedInfo feedInfo, java.net.URLConnection urlConn)
          Called just before a feed is downloaded.
 boolean MetaPlugIn.runPreFeedDownloadPlugIn(FeedInfo feedInfo, java.net.URLConnection urlConn)
           
 void PreFeedOutputPlugIn.runPreFeedOutputPlugIn(FeedInfo feedInfo, RSSChannel channel, OutputHandler outputHandler)
          Called immediately before a parsed feed is passed to an output handler.
 void MetaPlugIn.runPreFeedOutputPlugIn(FeedInfo feedInfo, RSSChannel channel, OutputHandler outputHandler)
           
 void ShutdownPlugIn.runShutdownPlugIn()
          Called just before curn gets ready to exit.
 void MetaPlugIn.runShutdownPlugIn()
           
 void StartupPlugIn.runStartupPlugIn()
          Called immediately after curn has started, but before it has loaded its configuration file or its cache.
 void MetaPlugIn.runStartupPlugIn()
           
 void UnknownSectionConfigItemPlugIn.runUnknownSectionConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in an unknown configuration section.
 void MetaPlugIn.runUnknownSectionConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
           
 void DataPersister.saveData(FeedCache feedCache)
          Save the feed metadata.
protected  void XMLDataPersister.saveExtraMetadata(java.util.Collection<PersistentMetadataGroup> metadata)
          Save any extra metadata (i.e., metadata that isn't attached to a specific feed or a specific item).
protected abstract  void DataPersister.saveExtraMetadata(java.util.Collection<PersistentMetadataGroup> metadata)
          Save any extra metadata (i.e., metadata that isn't attached to a specific feed or a specific item).
protected  void XMLDataPersister.saveFeedData(PersistentFeedData feedData)
          Save the data for one feed, including the items.
protected abstract  void DataPersister.saveFeedData(PersistentFeedData feedData)
          Save the data for one feed, including the items.
 void ReadOnlyOutputHandler.setName(java.lang.String name)
          Set the name of this output handler.
 void OutputHandler.setName(java.lang.String name)
          Set the name of this output handler.
protected  void XMLDataPersister.startLoadOperation()
          Called at the beginning of the load operation to initialize the load.
protected abstract  void DataPersister.startLoadOperation()
          Called at the beginning of the load operation to initialize the load.
protected  void XMLDataPersister.startSaveOperation()
          Called at the beginning of the actual save operation to initialize the save, etc.
protected abstract  void DataPersister.startSaveOperation()
          Called at the beginning of the actual save operation to initialize the save, etc.
 

Constructors in org.clapper.curn that throw CurnException
Curn()
          Deprecated. Use Curn.Curn(PrintWriter)
Curn(java.io.PrintWriter err)
          Instantiate a new Curn object and loads its plug-ins.
 

Uses of CurnException in org.clapper.curn.output
 

Methods in org.clapper.curn.output that throw CurnException
abstract  void FileOutputHandler.displayChannel(RSSChannel channel, FeedInfo feedInfo)
          Display the list of RSSItem news items to whatever output is defined for the underlying class.
abstract  void FileOutputHandler.flush()
          Flush any buffered-up output.
 java.io.File FileOutputHandler.getGeneratedOutput()
          Get the File that represents the output produced by the handler, if applicable.
 void FileOutputHandler.init(CurnConfig config, ConfiguredOutputHandler cfgHandler)
          Initializes the output handler for another set of RSS channels.
abstract  void FileOutputHandler.initOutputHandler(CurnConfig config, ConfiguredOutputHandler cfgHandler)
          Perform any subclass-specific initialization.
protected  java.io.PrintWriter FileOutputHandler.openOutputFile()
          Open the output file, returning a PrintWriter.
 void FileOutputHandler.setName(java.lang.String name)
          Set the name of this output handler.
 

Uses of CurnException in org.clapper.curn.output.freemarker
 

Methods in org.clapper.curn.output.freemarker that throw CurnException
 void FreeMarkerOutputHandler.displayChannel(RSSChannel channel, FeedInfo feedInfo)
          Display the list of RSSItem news items to whatever output is defined for the underlying class.
 void FreeMarkerOutputHandler.flush()
          Flush any buffered-up output.
 void FreeMarkerOutputHandler.initOutputHandler(CurnConfig config, ConfiguredOutputHandler cfgHandler)
          Initializes the output handler for another set of RSS channels.
 

Uses of CurnException in org.clapper.curn.output.script
 

Methods in org.clapper.curn.output.script that throw CurnException
 void ScriptOutputHandler.displayChannel(RSSChannel channel, FeedInfo feedInfo)
          Display the list of RSSItem news items to whatever output is defined for the underlying class.
 void ScriptOutputHandler.flush()
          Flush any buffered-up output.
 void ScriptOutputHandler.initOutputHandler(CurnConfig config, ConfiguredOutputHandler cfgHandler)
          Initializes the output handler for another set of RSS channels.
 void ScriptOutputHandler.registerAdditionalScriptingEngines()
          Deprecated. as of curn 3.1.
 

Uses of CurnException in org.clapper.curn.plugins
 

Methods in org.clapper.curn.plugins that throw CurnException
protected  void AbstractXMLEditPlugIn.editXML(FeedInfo feedInfo, java.io.File feedDataFile, java.lang.String encoding, java.util.List<java.lang.String> editCommands)
          Perform an edit on a feed, overwriting the data file at completion.
 void ZipOutputPlugIn.initPlugIn()
          Initialize the plug-in.
 void UserAgentPlugIn.initPlugIn()
          Initialize the plug-in.
 void TitleOverridePlugIn.initPlugIn()
          Initialize the plug-in.
 void SortArticlesPlugIn.initPlugIn()
          Initialize the plug-in.
 void ShowDatesPlugIn.initPlugIn()
          Initialize the plug-in.
 void ShowAuthorsPlugIn.initPlugIn()
          Initialize the plug-in.
 void RawFeedSaveAsPlugIn.initPlugIn()
          Initialize the plug-in.
 void RawFeedEditPlugIn.initPlugIn()
          Initialize the plug-in.
 void ParsedFeedURLEditPlugIn.initPlugIn()
          Initialize the plug-in.
 void IgnoreDuplicateArticlesPlugIn.initPlugIn()
          Initialize the plug-in.
 void GzipDownloadPlugIn.initPlugIn()
          Initialize the plug-in.
 void FeedMaxSummarySizePlugIn.initPlugIn()
          Initialize the plug-in.
 void EmptyArticleSummaryPlugIn.initPlugIn()
          Initialize the plug-in.
 void EmailOutputPlugIn.initPlugIn()
          Initialize the plug-in.
 void DisableOutputHandlerPlugIn.initPlugIn()
          Initialize the plug-in.
 void DisableFeedPlugIn.initPlugIn()
          Initialize the plug-in.
 void CommonXMLFixupsPlugIn.initPlugIn()
          Initialize the plug-in.
 void ArticleFilterPlugIn.initPlugIn()
          Initialize the plug-in.
 void AllowEmbeddedHTMLPlugIn.initPlugIn()
          Initialize the plug-in.
 boolean UserAgentPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean TitleOverridePlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean SortArticlesPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean ShowDatesPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean ShowAuthorsPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean RawFeedSaveAsPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean RawFeedEditPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean ParsedFeedURLEditPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean IgnoreDuplicateArticlesPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean GzipDownloadPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean FeedMaxSummarySizePlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean EmptyArticleSummaryPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean DisableFeedPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean CommonXMLFixupsPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean ArticleFilterPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 boolean AllowEmbeddedHTMLPlugIn.runFeedConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, FeedInfo feedInfo)
          Called immediately after curn has read and processed a configuration item in a "feed" configuration section.
 void ZipOutputPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void UserAgentPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void SortArticlesPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void ShowDatesPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void ShowAuthorsPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void GzipDownloadPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void FeedMaxSummarySizePlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void EmptyArticleSummaryPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void EmailOutputPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void CommonXMLFixupsPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 void AllowEmbeddedHTMLPlugIn.runMainConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config)
          Called immediately after curn has read and processed a configuration item in the main [curn] configuration section.
 boolean DisableOutputHandlerPlugIn.runOutputHandlerConfigItemPlugIn(java.lang.String sectionName, java.lang.String paramName, CurnConfig config, ConfiguredOutputHandler handler)
          Called immediately after curn has read and processed a configuration item in an output handler configuration section.
 void UserAgentPlugIn.runPostConfigPlugIn(CurnConfig config)
          Called after the entire configuration has been read and parsed, but before any feeds are processed.
 void RawFeedSaveAsPlugIn.runPostConfigPlugIn(CurnConfig config)
          Called after the entire configuration has been read and parsed, but before any feeds are processed.
 boolean RawFeedSaveAsPlugIn.runPostFeedDownloadPlugIn(FeedInfo feedInfo, java.io.File feedDataFile, java.lang.String encoding)
          Called immediately after a feed is downloaded.
 boolean RawFeedEditPlugIn.runPostFeedDownloadPlugIn(FeedInfo feedInfo, java.io.File feedDataFile, java.lang.String encoding)
          Called immediately after a feed is downloaded.
 boolean CommonXMLFixupsPlugIn.runPostFeedDownloadPlugIn(FeedInfo feedInfo, java.io.File feedDataFile, java.lang.String encoding)
          Called immediately after a feed is downloaded.
 boolean TitleOverridePlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean SortArticlesPlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean ShowDatesPlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean ShowAuthorsPlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean ParsedFeedURLEditPlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean IgnoreDuplicateArticlesPlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean FeedMaxSummarySizePlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean EmptyArticleSummaryPlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean ArticleFilterPlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 boolean AllowEmbeddedHTMLPlugIn.runPostFeedParsePlugIn(FeedInfo feedInfo, RSSChannel channel)
          Called immediately after a feed is parsed, but before it is otherwise processed.
 void ZipOutputPlugIn.runPostOutputPlugIn(java.util.Collection<OutputHandler> outputHandlers)
          Called after curn has flushed all output handlers.
 void EmailOutputPlugIn.runPostOutputPlugIn(java.util.Collection<OutputHandler> outputHandlers)
          Called after curn has flushed all output handlers.
 boolean UserAgentPlugIn.runPreFeedDownloadPlugIn(FeedInfo feedInfo, java.net.URLConnection urlConn)
          Called just before a feed is downloaded.
 boolean RawFeedSaveAsPlugIn.runPreFeedDownloadPlugIn(FeedInfo feedInfo, java.net.URLConnection urlConn)
          Called just before a feed is downloaded.
 boolean GzipDownloadPlugIn.runPreFeedDownloadPlugIn(FeedInfo feedInfo, java.net.URLConnection urlConn)
          Called just before a feed is downloaded.
 



Copyright © 2004-2006 Brian M. Clapper. All Rights Reserved.