From c1a1b8945ab8c8ffc5ed6e0423b120b0464f7cc8 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Mon, 26 Jan 2009 23:38:21 +0000 Subject: [PATCH] =?UTF-8?q?some=20doc=20fixes=20suggested=20by=20Patrick?= =?UTF-8?q?=20M=C3=A9zard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40778 --- scrapy/trunk/docs/intro/tutorial/tutorial4.rst | 7 ++++++- scrapy/trunk/docs/topics/settings.rst | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/scrapy/trunk/docs/intro/tutorial/tutorial4.rst b/scrapy/trunk/docs/intro/tutorial/tutorial4.rst index 3aba9bbdc..73753fdf8 100644 --- a/scrapy/trunk/docs/intro/tutorial/tutorial4.rst +++ b/scrapy/trunk/docs/intro/tutorial/tutorial4.rst @@ -59,7 +59,12 @@ Let's see how would our spider end up looking like after applying this change:: SPIDER = GoogleDirectorySpider() -| With this code, our spider will crawl over Google's directory, and save each link's name, description, and url to a file called 'scraped_items.csv'. +With this code, our spider will crawl over Google's directory, and save each +link's name, description, and url to a file called 'scraped_items.csv'. + Cool, huh? +:: + ./scrapy-ctl.py crawl google.com + This is the end of the tutorial. If you'd like to know more about Scrapy and its use, please read the rest of the documentation. diff --git a/scrapy/trunk/docs/topics/settings.rst b/scrapy/trunk/docs/topics/settings.rst index 5c5504c42..ac4a86df0 100644 --- a/scrapy/trunk/docs/topics/settings.rst +++ b/scrapy/trunk/docs/topics/settings.rst @@ -14,6 +14,8 @@ The settings infrastructure provides a global namespace of key-value mappings where the code can pull configuration values from. The settings can be populated through different mechanisms, which are described below. +Read :ref:`settings` for all supported entries. + How to populate settings ========================