Fixed typo on sitemaps

remotes/origin/update-last-login
Jesús Espino 2017-10-06 08:15:49 +02:00
parent cdd1d2809c
commit 448589a1ed
7 changed files with 9 additions and 9 deletions

View File

@ -54,7 +54,7 @@ class EpicsSitemap(Sitemap):
def changefreq(self, obj):
if (timezone.now() - obj.modified_date) > timedelta(days=90):
return "montly"
return "monthly"
return "weekly"
def priority(self, obj):

View File

@ -51,7 +51,7 @@ class IssuesSitemap(Sitemap):
def changefreq(self, obj):
if (timezone.now() - obj.modified_date) > timedelta(days=90):
return "montly"
return "monthly"
return "weekly"
def priority(self, obj):

View File

@ -55,7 +55,7 @@ class MilestonesSitemap(Sitemap):
def changefreq(self, obj):
if (timezone.now() - obj.modified_date) > timedelta(days=90):
return "montly"
return "monthly"
return "weekly"
def priority(self, obj):

View File

@ -51,7 +51,7 @@ class ProjectsSitemap(Sitemap):
def changefreq(self, obj):
if (timezone.now() - obj.modified_date) > timedelta(days=30):
return "montly"
return "monthly"
return "daily"
def priority(self, obj):
@ -85,7 +85,7 @@ class ProjectBacklogsSitemap(Sitemap):
def changefreq(self, obj):
if (timezone.now() - obj.modified_date) > timedelta(days=90):
return "montly"
return "monthly"
return "weekly"
def priority(self, obj):
@ -119,7 +119,7 @@ class ProjectKanbansSitemap(Sitemap):
def changefreq(self, obj):
if (timezone.now() - obj.modified_date) > timedelta(days=90):
return "montly"
return "monthly"
return "weekly"
def priority(self, obj):

View File

@ -51,7 +51,7 @@ class TasksSitemap(Sitemap):
def changefreq(self, obj):
if (timezone.now() - obj.modified_date) > timedelta(days=90):
return "montly"
return "monthly"
return "weekly"
def priority(self, obj):

View File

@ -51,7 +51,7 @@ class UserStoriesSitemap(Sitemap):
def changefreq(self, obj):
if (timezone.now() - obj.modified_date) > timedelta(days=90):
return "montly"
return "monthly"
return "weekly"
def priority(self, obj):

View File

@ -54,7 +54,7 @@ class WikiPagesSitemap(Sitemap):
def changefreq(self, obj):
if (timezone.now() - obj.modified_date) > timedelta(days=90):
return "montly"
return "monthly"
return "weekly"
def priority(self, obj):