mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-07-16 12:37:11 +00:00
d6a4d158b0
* RobotsPolicy.java
simplified unification of RobotsHonoring and RobotsExclusion policy classes; subclasses specialize
* ObeyRobotsPolicy.java
classic obey-robots-as-declared policy
* IgnoreRobotsPolicy.java
ignore declared robots policy
* CustomRobotsPolicy.java
follow custom-crafted policy in robots.txt format
* MostFavoredRobotsPolicy.java
follow the most-permissive policy available to a set of user-agents; optionally adopt ('masquerade') the user-agent whose rules are chosen
* RobotsExclusionPolicy.java, RobotsHonoringPolicy.java
deleted
* CrawlMetadata.java
use new string robotsPolicyName as main determinant of policy
maintain map of available policies ('obey','ignore', and any the operator added)
* CrawlServer.java
retain Robotstxt instance rather than customized RobotsExclusionPolicy
* PreconditionEnforcer.java
use full CrawlMetadata rather than just UserAgentProvider subset
consult RobotsPolicy looked up through CrawlMetadata for allow/disallow decision
* DispositionProcessor.java
update CrawlServer with Robotstxt only
consult Robotstxt for crawl-delay
* profile-crawler-beans.cxml (*2), migrate-template-crawler-beans.cxml, selftest-crawler-beans.cxml
remove old declarations/examples; add new
* ExtractorHTML.java, JerichoExtractorHTML.java
consult RobotsPolicy.obeyMetaRobotsNofollow for NOFOLLOW
* Robotstxt.java
new constructors for new use patterns
* **/*Test.java
update/remove to match new use patterns
------------------------------------------------------------------------------- $Id$ ------------------------------------------------------------------------------- 0.0 Contents 1.0 Introduction 2.0 Crawl Operators! 3.0 Getting Started 4.0 Developer Documentation 5.0 Release History 6.0 License 1.0 Introduction Heritrix is the Internet Archive's open-source, extensible, web-scale, archival-quality web crawler project. Heritrix (sometimes spelled heretrix, or misspelled or missaid as heratrix/heritix/heretix/heratix) is an archaic word for heiress (woman who inherits). Since our crawler seeks to collect and preserve the digital artifacts of our culture for the benefit of future researchers and generations, this name seemed apt. 2.0 Crawl Operators! Heritrix is designed to respect the robots.txt <http://www.robotstxt.org/wc/robots.html> exclusion directives and META robots tags <http://www.robotstxt.org/wc/exclusion.html#meta>. Please consider the load your crawl will place on seed sites and set politeness policies accordingly. Also, always identify your crawl with contact information in the User-Agent so sites that may be adversely affected by your crawl can contact you or adapt their server behavior accordingly. 3.0 Getting Started See the User Manual at <https://webarchive.jira.com/wiki/display/Heritrix/Heritrix+3.0+User+Guide>. 4.0 Developer Documentation See ./docs/articles/developer_manual/index.html or <http://crawler.archive.org/articles/developer_manual/index.html>. For API documentation, see <https://webarchive.jira.com/wiki/display/Heritrix/Heritrix+3.0+API+Guide>. 5.0 Release History See the Heritrix Release Notes at <http://webarchive.jira.com/wiki/display/Heritrix/Release+Notes+-+3.0.0>. 6.0 License Heritrix is free software; you can redistribute it and/or modify it under the terms of the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 Some individual source code files are subject to or offered under other licenses. See the included LICENSE.txt file for more information. Heritrix is distributed with the libraries it depends upon. The libraries can be found under the 'lib' directory, and are used under the terms of their respective licenses, which are included alongside the libraries in the 'lib' directory.