diff --git a/scrapy/templates/project/module/items.py.tmpl b/scrapy/templates/project/module/items.py.tmpl index 3cab2c1b8..aab8ca9b3 100644 --- a/scrapy/templates/project/module/items.py.tmpl +++ b/scrapy/templates/project/module/items.py.tmpl @@ -1,7 +1,7 @@ # Define here the models for your scraped items # # See documentation in: -# http://doc.scrapy.org/topics/items.html +# http://doc.scrapy.org/en/latest/topics/items.html from scrapy.item import Item, Field diff --git a/scrapy/templates/project/module/pipelines.py.tmpl b/scrapy/templates/project/module/pipelines.py.tmpl index f62608b76..0e6676209 100644 --- a/scrapy/templates/project/module/pipelines.py.tmpl +++ b/scrapy/templates/project/module/pipelines.py.tmpl @@ -1,7 +1,7 @@ # Define your item pipelines here # # Don't forget to add your pipeline to the ITEM_PIPELINES setting -# See: http://doc.scrapy.org/topics/item-pipeline.html +# See: http://doc.scrapy.org/en/latest/topics/item-pipeline.html class ${ProjectName}Pipeline(object): def process_item(self, item, spider): diff --git a/scrapy/templates/project/module/settings.py.tmpl b/scrapy/templates/project/module/settings.py.tmpl index f00baeaba..b90be8bc8 100644 --- a/scrapy/templates/project/module/settings.py.tmpl +++ b/scrapy/templates/project/module/settings.py.tmpl @@ -3,7 +3,7 @@ # For simplicity, this file contains only the most important settings by # default. All the other settings are documented here: # -# http://doc.scrapy.org/topics/settings.html +# http://doc.scrapy.org/en/latest/topics/settings.html # BOT_NAME = '$project_name' diff --git a/scrapy/templates/project/scrapy.cfg b/scrapy/templates/project/scrapy.cfg index 889516a42..22b1100e7 100644 --- a/scrapy/templates/project/scrapy.cfg +++ b/scrapy/templates/project/scrapy.cfg @@ -1,7 +1,7 @@ # Automatically created by: scrapy startproject # # For more information about the [deploy] section see: -# http://doc.scrapy.org/topics/scrapyd.html +# http://doc.scrapy.org/en/latest/topics/scrapyd.html [settings] default = ${project_name}.settings