<?xml version="1.0" encoding="UTF-8"?>
<plugin
   id="description"
   name="Meta description Parser/Filter"
   version="0.0.1"
   provider-name="adick.at">

   <runtime>
      <!-- As defined in build.xml this plugin will end up bundled as description.jar -->
      <library name="description.jar">
         <export name="*"/>
      </library>
   </runtime>

   <!-- The DescriptionParser extends the HtmlParseFilter to grab the contents of
                any description meta tags -->
   <extension id="org.apache.nutch.parse.description.descriptionfilter"
              name="Description Parser"
              point="org.apache.nutch.parse.HtmlParseFilter">
      <implementation id="DescriptionParser"
                      class="org.apache.nutch.parse.description.DescriptionParser"/>
   </extension>

   <!-- The DescriptionIndexer extends the IndexingFilter in order to add the contents
                of the description meta tags (as found by the DescriptionParser) to the lucene
                index 
	-->

   <extension id="org.apache.nutch.parse.description.descriptionindexer"
              name="Description identifier filter"
              point="org.apache.nutch.indexer.IndexingFilter">
      <implementation id="DescriptionIndexer"
                      class="org.apache.nutch.parse.description.DescriptionIndexer"/>
   </extension> 
</plugin>
