Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/Documentation/Web Crawler"

(Crawling configuration explanation)
Line 22: Line 22:
 
* <tt>CompoundHandling</tt> – specify if packed data (like a ZIP containing files) should be unpack and files within should be crawled (YES or NO).
 
* <tt>CompoundHandling</tt> – specify if packed data (like a ZIP containing files) should be unpack and files within should be crawled (YES or NO).
 
* <tt>Attributes</tt> – list all attributes which describe a website.
 
* <tt>Attributes</tt> – list all attributes which describe a website.
** <tt>FieldAttribute</tt> (URL, Title, Content, MimeType):
+
** <tt>Attribute</tt>:
*** <tt>Type</tt> (required) – the data type (String, Integer or Date).
+
*** <tt>Type</tt> (reuired) – the data type (String, Integer or Date).
 
*** <tt>Name</tt> (required) – attributes name.
 
*** <tt>Name</tt> (required) – attributes name.
*** <tt>HashAttribute</tt> – specify if a hash should be created (true or false).
+
*** <tt>HashAttribute</tt> – specify if the attribute is used for the hash used for delta indexing (''true'' or ''false''). Must be true for at least one attribute which must always have a value.
*** <tt>KeyAttribute</tt> – creates a key for this object, for example for record id (true or false).
+
*** <tt>KeyAttribute</tt> – specify if the attribute is used for creating the record ID (''true'' or ''false''). Must be true for at least one attribute. All key attributes must identify the file uniquely, so usually you will set it ''true'' for the attribute containing ''Url'' FieAttribute.
 
*** <tt>Attachment</tt> – specify if the attribute return the data as attachment of record.
 
*** <tt>Attachment</tt> – specify if the attribute return the data as attachment of record.
** <tt>MetaAttribute</tt> (MetaData, ResponseHeader, MetaDataWithResponseGeaderFallBack, MimeType):
+
**** <tt>FieldAttribute</tt>: Content of element is one of
*** <tt>Type</tt> (required) – the data type (String)
+
***** ''Url'': URL of the web page.
*** <tt>Name</tt> (required) – attributes name
+
****** NOTE: Must currently be mapped to an attribute named "Url". Mapping to additional attributes are allowed.
*** <tt>Attachment</tt> - specify if the attribute return the data as attachment of record.
+
***** ''Title'': The title of the web page from the <title> tag.
**** <tt>ReturnType</tt> – structure the metadata will be returned
+
***** ''Content'': The content of the web page. Original binary content, if mapped to an attachment, else it is tried to convert it to a string using the encoding reported in the response headers.
***** <tt>MetaDataString</tt> – default structure, metadata is returned as single string, for example:
+
***** ''MimeType'': Mime type of website as reported in response headers.
 +
**** <tt>MetaAttribute</tt>
 +
***** attribute <tt>Type</tt>: one of ''MetaData'', ''ResponseHeader'', ''MetaDataWithResponseHeaderFallBack'': read from HTML meta tags, response header or both
 +
***** attribute <tt>ReturnType</tt> – structure the metadata will be returned. One of:
 +
****** <tt>MetaDataString</tt> – default structure, metadata is returned as single string, for example:
 
<source lang="xml">
 
<source lang="xml">
<A n="ResponseHeader">
+
<Val key="ResponseHeader">Content-type: text/html</Val>
  <L>
+
    <Val>Content-type: text/html</Val>
+
  </L>
+
</A>
+
 
</source>
 
</source>
 
:::* <tt>MetaDataValue</tt> – only values of metadata are returned, for example:
 
:::* <tt>MetaDataValue</tt> – only values of metadata are returned, for example:
 
<source lang="xml">
 
<source lang="xml">
<A n="ResponseHeader">
+
<Val key="ResponseHeader">text/html</Val>
  <L>
+
    <Val>text/html</Val>
+
  <L>
+
</A>
+
 
</source>
 
</source>
 
:::* <tt>MetaDataMObject</tt> – metadata is returned as MObject containing attributes with metadata names and values, for example:
 
:::* <tt>MetaDataMObject</tt> – metadata is returned as MObject containing attributes with metadata names and values, for example:
 
<source lang="xml">
 
<source lang="xml">
<A n="ResponseHeader">
+
<Map key="ResponseHeader">
   <O>
+
   <Val key="Content-Type">text/html</Val>
    <A n="Content-Type">
+
  ...
      <L>
+
</Map>
        <Val>text/html</Val>
+
      </L>
+
    </A>
+
    ...
+
  </O>
+
</A>
+
 
</source>
 
</source>
 +
***** sub elements <tt>MetaName</tt>: Key of value to get from metadata.
 
* <tt>Process</tt> – this element is responsible for selecting data
 
* <tt>Process</tt> – this element is responsible for selecting data
 
** <tt>Website</tt> - contains all important information for accessing and crawling a website.
 
** <tt>Website</tt> - contains all important information for accessing and crawling a website.

Revision as of 07:04, 14 September 2011

Note.png
Outdated
This needs to be revised for v0.9. For now, look at the code of existing web crawler configurations.


Overview

The Web crawler fetches data from HTTP servers. Starting with an initial URL, it crawls all linked websites recursively.

Crawling configuration

The example configuration file is located at configuration/org.eclipse.smila.connectivity.framework/web.xml

Defining Schema: org.eclipse.smila.connectivitiy.framework.crawler.web/schemas/WebDataSourceConnectionConfigSchema.xsd

Crawling configuration explanation

The root element of the configuration is DataSourceConnectionConfig and contains the following sub elements:

  • DataSourceID – the identification of a data source.
  • SchemaID – specify the schema for a crawler job.
  • DataConnectionID – describes which agent crawler should be used.
    • Crawler – implementation class of a crawler.
    • Agent – implementation class of an agent.
  • CompoundHandling – specify if packed data (like a ZIP containing files) should be unpack and files within should be crawled (YES or NO).
  • Attributes – list all attributes which describe a website.
    • Attribute:
      • Type (reuired) – the data type (String, Integer or Date).
      • Name (required) – attributes name.
      • HashAttribute – specify if the attribute is used for the hash used for delta indexing (true or false). Must be true for at least one attribute which must always have a value.
      • KeyAttribute – specify if the attribute is used for creating the record ID (true or false). Must be true for at least one attribute. All key attributes must identify the file uniquely, so usually you will set it true for the attribute containing Url FieAttribute.
      • Attachment – specify if the attribute return the data as attachment of record.
        • FieldAttribute: Content of element is one of
          • Url: URL of the web page.
            • NOTE: Must currently be mapped to an attribute named "Url". Mapping to additional attributes are allowed.
          • Title: The title of the web page from the <title> tag.
          • Content: The content of the web page. Original binary content, if mapped to an attachment, else it is tried to convert it to a string using the encoding reported in the response headers.
          • MimeType: Mime type of website as reported in response headers.
        • MetaAttribute
          • attribute Type: one of MetaData, ResponseHeader, MetaDataWithResponseHeaderFallBack: read from HTML meta tags, response header or both
          • attribute ReturnType – structure the metadata will be returned. One of:
            • MetaDataString – default structure, metadata is returned as single string, for example:
<Val key="ResponseHeader">Content-type: text/html</Val>
  • MetaDataValue – only values of metadata are returned, for example:
<Val key="ResponseHeader">text/html</Val>
  • MetaDataMObject – metadata is returned as MObject containing attributes with metadata names and values, for example:
<Map key="ResponseHeader">
  <Val key="Content-Type">text/html</Val>
  ...
</Map>
          • sub elements MetaName: Key of value to get from metadata.
  • Process – this element is responsible for selecting data
    • Website - contains all important information for accessing and crawling a website.
      • ProjectName - defines project name
      • Sitemaps - for supporting Google site maps. sitemap.xml, sitemap.xml.gz and sitemap.gz formats are supported. See [[1]]. Links extracted from <loc> tags are added to the current level links. Crawler looks for the sitemap file at the root directory of the web server and then caches it for the particular host to avoid parsing the sitemap again for the URL already processed.
      • Header - request headers separated by semicolon. Headers should be in format "<header_name>:<header_content>", separated by semicolon.
      • Referer - to include "Referer: URL" header in HTTP request. See [[2]]
      • EnableCookies - enable or disable cookies for crawling process (true or false). See [[3]]
      • UserAgent - element used to identify crawler to the server as a specific user agent origination the request. The UserAgent string generated looks like the following: Name/Version (Description, Url, Email)
        • Name (required)
        • Version
        • Description
        • URL
        • Email
      • Robotstxt element used for supporting robots.txt information. The Robots Exclusion Standard tells crawler how to crawl a website – or rather which resources should not be crawled. See [[4]]
        • Policy: there are five types of policies offered on how to deal with robots.txt rules:
          1. Classic. Simply obey the robots.txt rules. Recommended unless you have special permission to collect a site more aggressively.
          2. Ignore. Completely ignore robots.txt rules.
          3. Custom. Obey your own, custom, robots.txt instead of those discovered on the relevant site. The attribute Value must contain the path to a locally available robots.txt file in this case.
          4. Set. Limit robots names which rules are followed to the given set. Value attribute must handle robots names separated by semicolon in this case.
        • Value: specifies the filename with the robots.txt rules for Custom policy and set of agent names for the Set policy.
        • AgentNames: specifies the list of agents we advertise. This list should be started with the same name as UserAgent Name (for example: crawler user-agent name that is used for the crawl job)
      • CrawlingModel: there are two models available:
        • Type: the model type (MaxBreadth or MaxDepth)
        1. MaxBreadth: crawling a web site through a limited number of links.
        2. MaxDepth: crawling a web site with specifying the maximum crawling depth.
        • Value: parameter (Integer)
      • CrawlScope: decides for each discovered URI if it is within the scope of the current crawl.
      • Type: following scope are provided:
        1. Broad: accept all. This scope does not impose any limits on the hosts, domains, or URI paths crawled.
        2. Domain: accept if on same 'domain' as seeds (start URL). This scope limits discovered URIs to the set of domains defined by the provided seeds. That is any URI discovered belonging to a domain from which one of the seed came is within scope. Using the seed 'brox.de', a domain scope will fetch 'bugs.brox.de', 'confluence.brox.de', etc. It will fetch all discovered URIs from 'brox.de' and from any subdomain of 'brox.de'.
        3. Host: accept if on exact host as seeds. This scope limits discovered URIs to the set of hosts defined by the provided seeds. If the seed is 'www.brox.de', then we'll only fetch items discovered on this host. The crawler will not go to 'bugs.brox.de'.
        4. Path: accept if on same host and a shared path-prefix as seeds. This scope goes yet further and limits the discovered URIs to a section of paths on hosts defined by the seeds. Of course any host that has a seed **:pointing at its root (i.e. www.sample.com/index.html) will be included in full where as a host whose only seed is www.sample2.com/path/index.html **:will be limited to URIs under /path/.
        • Filters: every scope can have additional filters to select URI that will be considered to be within or out of scope ( see the section Filters for details)
      • CrawlLimits: In addition to limits imposed on the scope of the crawl it is possible to enforce arbitrary limits on the duration and extent of the crawling process with the following setting:
        • SizeLimits:
          • MaxBytesDownload: stop after a fixed number of bytes have been downloaded (0 means unlimited).
          • MaxDocumentDownload: stop after downloading a fixed number of documents (0 means unlimited).
          • MaxTimeSec: stop after a certain number of seconds have elapsed (0 means unlimited). These are not supposed to be hard limits. Once one of these limits is reached, it will trigger a graceful termination of the crawl job, which means that URIs already being crawled will be completed. As a result the set limit will be exceeded by some amount.
          • MaxLengthBytes: maximum number of bytes to download per document. Will truncate file once this limit is reached.
        • TimeoutLimits: Whenever crawler connects to or reads from a remote host, it checks the timeouts and aborts the operation if any is exceeded. This prevents anomalous occurrences such as hanging reads or infinite connects.
          • Timeout: This limit is the total time need to connect and get the download website, and such represents the total of a ConnectTimeout plus a ReadTimeout.
          • ConnectTimeout: Connect timeout in seconds. TCP connections that take longer to establish will be aborted.
          • ReadTimeout: Read (and write) timeout in seconds. Reads that take longer will fail. The default value for read timeout is 900 seconds.
        • WaitLimis:
          • Wait: Wait the specified number of seconds between the retrievals. Use of this option is recommended, as it lightens the server load by making the *:requests less frequent. Specifying a large value for this option is useful if the network or the destination host is down, so that crawler can wait *:long enough to reasonably expect the network error to be fixed before the retry.
          • RandomWait: Some web sites may perform log analysis to identify retrieval programs by looking for statistically significant similarities in the time between requests. This option causes the time between requests to vary between 0 and 2 * wait seconds, where wait was specified using the wait setting, in order to mask crawler's presence from such analysis.
          • MaxRetries: How often to retry URLs that failed.
          • WaitRetry: How long to wait between such retries.
      • Proxy: specifies the HTTP proxy server to be used.
        • ProxyServer:
          • Host
          • Port
          • Login
          • Password
      • Authentication: The Authentication element is used to gain access to areas of websites requiring authentication. Three types of authentication are available: RFC2617 (BASIC and DIGEST types of authentication), HTTP POST or GET of an HTML Form and SSL Certificate based client authentication.
        • RFC2617:
          • Host and
          • Port: equate to the canonical root URI of RFC2617.
          • Realm: realm as per RFC2617. The realm string must match exactly the realm name presented in the authentication challenge served up by the web server.
          • Login: username for login.
          • Password: password to this restricted area.
        • HMTLFrom:
          • CredentialDomain: same as the RFC2617 canonical root URI of RFC2617.
          • HttpMethod: POST or GET
          • LoginUrl: relative or absolute URI to the page that the HTML Form submits to (Not the page that contains the HTML Form)
          • FormItems: listing of HTML Form key/value pairs
        • SSLCertificate:
          • ProtocolName: name of the protocol to be used, e.g. "https".
          • Port: port number
          • TruststoreUrl: location of the file containing one or several trusted certificates.
          • TruststorePassword
          • KeystoneUrl: location of the file containing a private key/public certificate pair.
          • KeystonePassword
      • Seeds: contains a list of Seed elements
        • FollowLinks: enables analyzing URL of pages that otherwise would be ignored:
        1. NoFollow: do not analyze anything that matches any "Unselect" filter.
        2. Follow: analyze everything that matches some "Unselect" filter, do not index anything
        3. FollowLinksWithCorrespondingSelectFilter: index pages that match both "Select" and "Unselect" filters, and analyze everything else that matches **:some "Unselect" filter.
        • Seed: defines site’s start path from which crawling process begin.
      • Filters: contains a list of Filter elements and optional refinements elements.
        • Filter: used to define filters for pages that should be crawled and indexed.
          • Type: the following filter types are available:
          1. BeginningPath: filters paths which begin with the specified characters.
          2. RegExp: filters urls based on a regular expression.
          3. ContentType: filters content type on a regular expression. Use this filter to abort the download of content-types other than those wanted.
          • WorkType: Select or Unselect, the way how filter should work.
          • Value: the filter value that will be used to check if the given value matches the filter or not.
        • Refinements: must be nested into the Filter element. It allows to modify filter settings under certain circumstances. Following refinements may be applied to the filters:
        1. Port: match only those URIs for the given port number.
        2. TimeOfDay: if this refinement is applied, the filter will only be in effect between the hours specified each day. From and To attributes must be in HH:mm:ss format (e.g. 23:00:00)
          • From: time when filter becomes enabled.
          • To: till this time the filter will be enabled.
      • MetaTagFilters: contains a list of MetaTagFilter elements.
        • MetaTagFilter: defines filter for omitting content by meta tags.
          • Type: type of meta-tag to match: Name or Http-Equiv.
          • Name: name of the tag e.g. "author" for the Type "Name".
          • Content: the tag contents.
          • WorkType: Select or Unselect

Crawling configuration example

<DataSourceConnectionConfig
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:noNamespaceSchemaLocation="../org.eclipse.smila.connectivity.framework.crawler.web/schemas/WebDataSourceConnectionConfigSchema.xsd">
  <DataSourceID>web</DataSourceID>
  <SchemaID>org.eclipse.smila.connectivity.framework.crawler.web</SchemaID>
  <DataConnectionID>
    <Crawler>WebCrawlerDS</Crawler>
  </DataConnectionID>
  <CompoundHandling>No</CompoundHandling>
  <Attributes>
    <Attribute Type="String" Name="Url" KeyAttribute="true">
      <FieldAttribute>Url</FieldAttribute>
    </Attribute>
    <Attribute Type="String" Name="Title">
      <FieldAttribute>Title</FieldAttribute>
    </Attribute>
    <Attribute Type="String" Name="Content" HashAttribute="true" Attachment="true" MimeTypeAttribute="Content">
      <FieldAttribute>Content</FieldAttribute>
    </Attribute>
    <Attribute Type="String" Name="MimeType">
      <FieldAttribute>MimeType</FieldAttribute>
    </Attribute>
    <Attribute Type="String" Name="MetaData" Attachment="false">
      <MetaAttribute Type="MetaData"/>
    </Attribute>
    <Attribute Type="String" Name="ResponseHeader" Attachment="false">
      <MetaAttribute Type="ResponseHeader">
        <MetaName>Date</MetaName>
        <MetaName>Server</MetaName>
      </MetaAttribute>
    </Attribute>
    <Attribute Type="String" Name="MetaDataWithResponseHeaderFallBack" Attachment="false">
      <MetaAttribute Type="MetaDataWithResponseHeaderFallBack"/>
    </Attribute>
  </Attributes>
  <Process>
    <WebSite ProjectName="Example Crawler Configuration" Header="Accept-Encoding: gzip,deflate; Via: myProxy" Referer="http://myReferer">
      <UserAgent Name="Crawler" Version="1.0" Description="teddy crawler" Url="http://www.teddy.com" Email="crawler@teddy.com"/>
      <CrawlingModel Type="MaxDepth" Value="1000"/>
      <CrawlScope Type="Domain">
        <Filters>
          <Filter Type="BeginningPath" WorkType="Select" Value="/"/>
        </Filters>
      </CrawlScope>
      <CrawlLimits>
        <!-- Warning: The amount of files returned is limited to 1000 -->
        <SizeLimits MaxBytesDownload="0" MaxDocumentDownload="1000" MaxTimeSec="3600" MaxLengthBytes="100000"/>
        <TimeoutLimits Timeout="10000"/>
        <WaitLimits Wait="0" RandomWait="false" MaxRetries="8" WaitRetry="0"/>
      </CrawlLimits>
      <Seeds FollowLinks="Follow">
        <Seed>http://en.wikipedia.org/</Seed>
      </Seeds>
      <Filters>
        <Filter Type="RegExp" Value=".*action=edit.*" WorkType="Unselect"/>
      </Filters>
    </WebSite>
  </Process>
</DataSourceConnectionConfig>

Minimal configuration example

This example demonstrates minimal configuration required for crawler.

<WebSite ProjectName="Minimal Configuration">
  <Seeds>
    <Seed>http://localhost/test/</Seed>
  </Seeds>
</WebSite>

Html form login example

his example demonstrates how to login to Invision Power Board powered forum. Number of downloaded pages is limited to 15. robots.txt information is ignored. Crawler will advertise itself as Mozilla/5.0.

<WebSite ProjectName="Login To Invision Powerboard Forum Example">
  <UserAgent Name="Mozilla" Version="5.0" Description="" Url="" Email=""/>
    <Robotstxt Policy="Ignore" />
      <CrawlLimits>
    <SizeLimits MaxDocumentDownload="15"/>
      </CrawlLimits>
  <Authentication>
    <HtmlForm CredentialDomain="http://forum.example.com/index.php?act=Login&amp;CODE=00" LoginUri="http://forum.example.com/index.php?act=Login&amp;CODE=01" HttpMethod="POST">
      <FormElements>
        <FormElement Key="referer" Value=""/>
          <FormElement Key="CookieDate" Value="1"/>
          <FormElement Key="Privacy" Value="1"/>
          <FormElement Key="UserName" Value="User"/>
          <FormElement Key="PassWord" Value="Password"/>
          <FormElement Key="submit" Value="Enter"/>
      </FormElements>
    </HtmlForm>
  </Authentication>
  <Seeds FollowLinks="Follow">
    <Seed><![CDATA[http://forum.example.com/index.php?act=Login&CODE=00]]></Seed>
  </Seeds>
</WebSite>

Multiple website configuration

<WebSite ProjectName="First WebSite">
  <UserAgent Name="Brox Crawler" Version="1.0" Description="Brox Crawler" Url="http://www.example.com" Email="crawler@example.com"/>
    <CrawlingModel Type="MaxIterations" Value="20"/>
    <CrawlScope Type="Broad">  
    <CrawlLimits>
      <SizeLimits MaxBytesDownload="0" MaxDocumentDownload="100" MaxTimeSec="3600" MaxLengthBytes="1000000" />
      <TimeoutLimits Timeout="10000" />
      <WaitLimits Wait="0" RandomWait="false" MaxRetries="8" WaitRetry="0"/>
    </CrawlLimits>
  <Seeds FollowLinks="Follow"
      <Seed>http://localhost/</Seed>
      <Seed>http://localhost/otherseed</Seed>
  </Seeds>
    <Authentication>
      <Rfc2617 Host="localhost" Port="80" Realm="Restricted area" Login="user" Password="pass"/>                                                      
      <HtmlForm CredentialDomain="http://localhost:8081/admin/" LoginUri="/j_security_check" HttpMethod="GET">
      <FormElements>
          <FormElement Key="j_username" Value="admin"/>
          <FormElement Key="j_password" Value=""/>
          <FormElement Key="submit" Value="Login"/>
        </FormElements>
      </HtmlForm>
    </Authentication>
</WebSite>
<WebSite ProjectName="Second WebSite">
  <UserAgent Name="Mozilla" Version="5.0" Description="X11; U; Linux x86_64; en-US; rv:1.8.1.4" />
    <Robotstxt Policy="Classic" AgentNames="mozilla, googlebot"/>
    <CrawlingModel Type="MaxDepth" Value="100"/>
    <CrawlScope Type="Host"/>
    <CrawlLimits>
      <WaitLimits Wait="5" RandomWait="true"/>
    </CrawlLimits>
    <Seeds FollowLinks="NoFollow">
        <Seed>http://example.com</Seed>
    </Seeds>
    <Filters>
        <Filter Type="BeginningPath" WorkType="Unselect" Value="/something/">
            <Refinements>
                <TimeOfDay From="09:00:00" To="23:00:00"/>
                <Port Number="80"/>
            </Refinements>
        </Filter>
        <Filter Type="RegExp" WorkType="Unselect" Value="news"/>
        <Filter Type="ContentType" WorkType="Unselect" Value="image/jpeg"/>
    </Filters>
</WebSite>

Complex website configuration example

<WebSite ProjectName="Example Crawler Configuration" Header="Accept-Encoding: gzip,deflate; Via: myProxy" Referer="http://myReferer">
  <UserAgent Name="Crawler" Version="1.0" Description="Test crawler" Url="http://www.example.com" Email="crawler@example.com"/>
    <Robotstxt Policy="Custom" Value="/home/user/customRobotRules.txt" AgentNames="agent1;agent2"/>
    <CrawlingModel Type="MaxIterations" Value="20"/>
    <CrawlScope Type="Broad">
      <Filters>
        <Filter Type="BeginningPath" WorkType="Select" Value="/test.html"/>
      </Filters>
    </CrawlScope>
    <CrawlLimits>
      <SizeLimits MaxBytesDownload="0" MaxDocumentDownload="1" MaxTimeSec="3600" MaxLengthBytes="1000000" />
      <TimeoutLimits Timeout="10000" />
      <WaitLimits Wait="0" RandomWait="false" MaxRetries="8" WaitRetry="0"/>
    </CrawlLimits>
    <Proxy>
      <ProxyServer Host="example.com" Port="3128" Login="user" Password="pass"/>
    </Proxy>
    <Authentication>
      <Rfc2617 Host="somehost.com" Port="80" Realm="realm string" Login="user" Password="pass"/>
    </Authentication>
    <Seeds FollowLinks="NoFollow">
      <Seed>http://example.com</Seed>
    </Seeds>
    <Filters>
      <Filter Type="BeginningPath" WorkType="Unselect" Value="/something/">
        <Refinements>
          <TimeOfDay From="09:00:00" To="23:00:00"/><Port Number="80"/>
        </Refinements>
      </Filter>
      <Filter Type="RegExp" WorkType="Unselect" Value="news"/>
      <Filter Type="ContentType" WorkType="Unselect" Value="image/jpeg"/>
    </Filters>
    <MetaTagFilters>
      <MetaTagFilter Type="Name" Name="author" Content="Blocked Author" WorkType="Unselect"/>
    </MetaTagFilters>
</WebSite>

Output example for default configuration

If you crawl with the default configuration file, you’ll receive the following record:

<Record xmlns="http://www.eclipse.org/smila/record" version="1.0">
  <Val key="_recordid">web:&lt;Url=http://en.wikipedia.org/wiki/Main_Page&gt;</Val>
  <Val key="Url">http://en.wikipedia.org/wiki/Main_Page</Val>
  <Val key="Content">
            Whole content of wikipedia main page.
            To much to post here.
  </Val>
  <Val key="Title">Wikipedia, the free encyclopedia</Val>
  <Seq n="MetaData">
    <Val>base:null</Val>
    <Val>noCache:false</Val>
    <Val>noFollow:false</Val>
    <Val>noIndex:false</Val>
    <Val>refresh:false</Val>
    <Val>refreshHref:null</Val>
    <Val>
        keywords:Main Page,1266,1815,1919,1935,1948 NCAA Men's
        Division I Ice Hockey Tournament,1991,1993,2009,2009
        Bangladesh Rifles revolt,Althea Byfield
    </Val>
    <Val>generator:MediaWiki 1.15alpha</Val>
    <Val>content-type:text/html; charset=utf-8</Val>
    <Val>content-style-type:text/css</Val>
  </Seq>
  <Val key="MimeType">text/html</Val>
  <Seq key="ResponseHeader">
    <Val>Server:Apache</Val>
    <Val>Date:Thu, 26 Feb 2009 14:33:37 GMT</Val>
  </Seq>
  <Seq key="MetaDataWithResponseHeaderFallBack">
    <Val>Age:2</Val>
    <Val>Content-Language:en</Val>
    <Val>Content-Length:57974</Val>
    <Val>Last-Modified:Thu, 26 Feb 2009 14:31:46 GMT</Val>
    <Val>
        X-Cache-Lookup:MISS from knsq25.knams.wikimedia.org:80
    </Val>
    <Val>Connection:Keep-Alive</Val>
    <Val>X-Cache:MISS from knsq25.knams.wikimedia.org</Val>
    <Val>Server:Apache</Val>
    <Val>X-Powered-By:PHP/5.2.4-2ubuntu5wm1</Val>
    <Val>
        Cache-Control:private, s-maxage=0, max-age=0,
        must-revalidate
    </Val>
    <Val>Date:Thu, 26 Feb 2009 14:33:37 GMT</Val>
    <Val>Vary:Accept-Encoding,Cookie</Val>
    <Val>
        X-Vary-Options:Accept-Encoding;list-contains=gzip,Cookie;string-contains=enwikiToken;string-contains=enwikiLoggedOut;string-contains=enwiki_session;string-contains=centralauth_Token;string-contains=centralauth_Session;string-contains=centralauth_LoggedOut
    </Val>
    <Val>
        Via:1.1 sq39.wikimedia.org:3128 (squid/2.7.STABLE6), 1.0
        knsq29.knams.wikimedia.org:3128 (squid/2.7.STABLE6), 1.0
        knsq25.knams.wikimedia.org:80 (squid/2.7.STABLE6), 1.0
        HAN-HB-FW-001
    </Val>
    <Val>Content-Type:text/html; charset=utf-8</Val>
    <Val>Proxy-Connection:Keep-Alive</Val>
    <Val>base:null</Val>
    <Val>noCache:false</Val>
    <Val>noFollow:false</Val>
    <Val>noIndex:false</Val>
    <Val>refresh:false</Val>
    <Val>refreshHref:null</Val>
    <Val>
        keywords:Main Page,1266,1815,1919,1935,1948 NCAA Men's
        Division I Ice Hockey Tournament,1991,1993,2009,2009
        Bangladesh Rifles revolt,Althea Byfield
    </Val>
    <Val>generator:MediaWiki 1.15alpha</Val>
    <Val>content-type:text/html; charset=utf-8</Val>
    <Val>content-style-type:text/css</Val>
  </Seq>
  <Val key="_HASH_TOKEN">eb1eff85a3e3d4ad4ffd0dd9d4883e3d1f7f988019ca9bfa4a4df2e7659aa6</Val>
  <Attachment>Content</Attachment>
</Record>

See also

External links

Back to the top