Update sitemap file

Add new releases, add already stein to not forget about it.

Update regex for releases, we do not publish only to /ocata/
but also to /PROJECT/ocata - tread all these the same.

Change-Id: I8ef454f779904d91e5e79c83c488dcba42ba2150
This commit is contained in:
Andreas Jaeger 2018-09-09 10:47:36 +02:00
parent 5766a7832b
commit a3fdc40659
1 changed files with 6 additions and 3 deletions

View File

@ -36,10 +36,13 @@ class SitemapSpider(spiders.CrawlSpider):
MAINT_SERIES = [
'newton',
'ocata',
'pike'
'pike',
'queens',
'rocky',
'stein',
]
MAINT_RELEASES_PAT = re.compile('^/(' + '|'.join(MAINT_SERIES) + ')/')
LATEST_PAT = re.compile('^/latest/')
MAINT_RELEASES_PAT = re.compile('^.*/(' + '|'.join(MAINT_SERIES) + ')/')
LATEST_PAT = re.compile('^.*/latest/')
rules = [
spiders.Rule(