@@ -47,7 +47,7 @@ These mechanisms are described in more detail below.
47
47
48
48
Global overrides are the ones that take most precedence, and are usually
49
49
populated by command-line options. You can also override one (or more) settings
50
- from command line using the ``-s `` (or ``--set ``) command line option.
50
+ from command line using the ``-s `` (or ``--set ``) command line option.
51
51
52
52
For more information see the :attr: `~scrapy.settings.Settings.overrides `
53
53
Settings attribute.
@@ -115,7 +115,7 @@ Built-in settings reference
115
115
===========================
116
116
117
117
Here's a list of all available Scrapy settings, in alphabetical order, along
118
- with their default values and the scope where they apply.
118
+ with their default values and the scope where they apply.
119
119
120
120
The scope, where available, shows where the setting is being used, if it's tied
121
121
to any particular component. In that case the module of that component will be
@@ -303,7 +303,7 @@ orders. For more info see :ref:`topics-downloader-middleware-setting`.
303
303
DOWNLOADER_MIDDLEWARES_BASE
304
304
---------------------------
305
305
306
- Default::
306
+ Default::
307
307
308
308
{
309
309
'scrapy.contrib.downloadermiddleware.robotstxt.RobotsTxtMiddleware': 100,
@@ -376,7 +376,7 @@ See `DOWNLOAD_HANDLERS_BASE` for example format.
376
376
DOWNLOAD_HANDLERS_BASE
377
377
----------------------
378
378
379
- Default::
379
+ Default::
380
380
381
381
{
382
382
'file': 'scrapy.core.downloader.handlers.file.FileDownloadHandler',
@@ -387,7 +387,7 @@ Default::
387
387
388
388
A dict containing the request download handlers enabled by default in Scrapy.
389
389
You should never modify this setting in your project, modify
390
- :setting: `DOWNLOAD_HANDLERS ` instead.
390
+ :setting: `DOWNLOAD_HANDLERS ` instead.
391
391
392
392
.. setting :: DOWNLOAD_TIMEOUT
393
393
@@ -410,7 +410,17 @@ The class used to detect and filter duplicate requests.
410
410
The default (``RFPDupeFilter ``) filters based on request fingerprint using
411
411
the ``scrapy.utils.request.request_fingerprint `` function.
412
412
413
- .. setting :: jDITOR
413
+ .. setting :: DUPEFILTER_DEBUG
414
+
415
+ DUPEFILTER_DEBUG
416
+ ----------------
417
+
418
+ Default: ``False ``
419
+
420
+ By default, ``RFPDupeFilter `` only logs the first duplicate request.
421
+ Setting :setting: `DUPEFILTER_DEBUG ` to ``True `` will make it log all duplicate requests.
422
+
423
+ .. setting :: EDITOR
414
424
415
425
EDITOR
416
426
------
@@ -428,7 +438,7 @@ EXTENSIONS
428
438
429
439
Default:: ``{} ``
430
440
431
- A dict containing the extensions enabled in your project, and their orders.
441
+ A dict containing the extensions enabled in your project, and their orders.
432
442
433
443
.. setting :: EXTENSIONS_BASE
434
444
@@ -452,7 +462,7 @@ Default::
452
462
453
463
The list of available extensions. Keep in mind that some of them need to
454
464
be enabled through a setting. By default, this setting contains all stable
455
- built-in extensions.
465
+ built-in extensions.
456
466
457
467
For more information See the :ref: `extensions user guide <topics-extensions >`
458
468
and the :ref: `list of available extensions <topics-extensions-ref >`.
@@ -869,7 +879,7 @@ USER_AGENT
869
879
870
880
Default: ``"Scrapy/VERSION (+http://scrapy.org)" ``
871
881
872
- The default User-Agent to use when crawling, unless overridden.
882
+ The default User-Agent to use when crawling, unless overridden.
873
883
874
884
.. _Amazon web services : http://aws.amazon.com/
875
885
.. _breadth-first order : http://en.wikipedia.org/wiki/Breadth-first_search
0 commit comments