From 22edc44c6cd5f8667c5138bcd7e48eb5d95c8e06 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Thu, 14 Feb 2013 11:09:40 -0200 Subject: [PATCH] doc: remove links to diveintopython.org, which is no longer available. closes #246 --- docs/intro/tutorial.rst | 4 ++-- docs/topics/settings.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst index 6d2b425bd..ff92d701f 100644 --- a/docs/intro/tutorial.rst +++ b/docs/intro/tutorial.rst @@ -22,13 +22,13 @@ This tutorial will walk you through these tasks: Scrapy is written in Python_. If you're new to the language you might want to start by getting an idea of what the language is like, to get the most out of Scrapy. If you're already familiar with other languages, and want to learn -Python quickly, we recommend `Dive Into Python`_. If you're new to programming +Python quickly, we recommend `Learn Python The Hard Way`_. If you're new to programming and want to start with Python, take a look at `this list of Python resources for non-programmers`_. .. _Python: http://www.python.org .. _this list of Python resources for non-programmers: http://wiki.python.org/moin/BeginnersGuide/NonProgrammers -.. _Dive Into Python: http://www.diveintopython.org +.. _Learn Python The Hard Way: http://learnpythonthehardway.org/book/ Creating a project ================== diff --git a/docs/topics/settings.rst b/docs/topics/settings.rst index 27cbfc69d..dce63ff30 100644 --- a/docs/topics/settings.rst +++ b/docs/topics/settings.rst @@ -26,7 +26,7 @@ The value of ``SCRAPY_SETTINGS_MODULE`` should be in Python path syntax, e.g. ``myproject.settings``. Note that the settings module should be on the Python `import search path`_. -.. _import search path: http://diveintopython.org/getting_to_know_python/everything_is_an_object.html +.. _import search path: http://docs.python.org/2/tutorial/modules.html#the-module-search-path Populating the settings =======================