added COOKIES_DEBUG to default settings and doc

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%401092
This commit is contained in:
Pablo Hoffman 2009-04-27 12:26:04 +00:00
parent b553bb3dff
commit 1eac716edf
2 changed files with 11 additions and 0 deletions

View File

@ -233,6 +233,15 @@ Number of domains to scrape concurrently in one process. This doesn't affect
the number of domains scraped concurrently by the Scrapy cluster which spawns a
new process per domain.
.. setting:: COOKIES_DEBUG
COOKIES_DEBUG
-------------
Default: ``False``
Enable debugging message of Cookies Downloader Middleware.
.. setting:: DEFAULT_ITEM_CLASS
DEFAULT_ITEM_CLASS

View File

@ -45,6 +45,8 @@ COMMANDS_SETTINGS_MODULE = ''
CONCURRENT_DOMAINS = 8 # number of domains to scrape in parallel
COOKIES_DEBUG = False
DEFAULT_ITEM_CLASS = 'scrapy.item.ScrapedItem'
DEFAULT_SPIDER = None