removed remaining references to scheduler middleware from doc, as it will be removed on next release

This commit is contained in:
Pablo Hoffman 2011-05-18 19:48:48 -03:00
parent 3fd17432cf
commit 503f302010
5 changed files with 0 additions and 34 deletions

View File

@ -149,7 +149,6 @@ will get an output similar to this::
2008-08-20 03:51:13-0300 [scrapy] INFO: Started project: dmoz
2008-08-20 03:51:13-0300 [tutorial] INFO: Enabled extensions: ...
2008-08-20 03:51:13-0300 [tutorial] INFO: Enabled scheduler middlewares: ...
2008-08-20 03:51:13-0300 [tutorial] INFO: Enabled downloader middlewares: ...
2008-08-20 03:51:13-0300 [tutorial] INFO: Enabled spider middlewares: ...
2008-08-20 03:51:13-0300 [tutorial] INFO: Enabled item pipelines: ...

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 90 KiB

View File

@ -77,14 +77,6 @@ requests). They provide a convenient mechanism for extending Scrapy
functionality by plugging custom code. For more information see
:ref:`topics-spider-middleware`.
Scheduler middlewares
---------------------
Scheduler middlewares are specific hooks that sit between the Engine and the
Scheduler and process requests when they pass from the Engine to the Scheduler
and vice-versa. They provide a convenient mechanism for extending Scrapy
functionality by plugging custom code.
Data flow
=========

View File

@ -822,31 +822,6 @@ The order to use for the crawling scheduler. Available orders are:
.. _Breadth-first order: http://en.wikipedia.org/wiki/Breadth-first_search
.. _Depth-first order: http://en.wikipedia.org/wiki/Depth-first_search
.. setting:: SCHEDULER_MIDDLEWARES
SCHEDULER_MIDDLEWARES
---------------------
Default:: ``{}``
A dict containing the scheduler middlewares enabled in your project, and their
orders.
.. setting:: SCHEDULER_MIDDLEWARES_BASE
SCHEDULER_MIDDLEWARES_BASE
--------------------------
Default::
SCHEDULER_MIDDLEWARES_BASE = {
'scrapy.contrib.schedulermiddleware.duplicatesfilter.DuplicatesFilterMiddleware': 500,
}
A dict containing the scheduler middlewares enabled by default in Scrapy. You
should never modify this setting in your project, modify
:setting:`SCHEDULER_MIDDLEWARES` instead.
.. setting:: SPIDER_MIDDLEWARES
SPIDER_MIDDLEWARES