class Sitemap [source]
A Sitemap class can define the following methods/attributes:
-
items[source] -
Required. A method that returns a list of objects. The framework doesn’t care what type of objects they are; all that matters is that these objects get passed to the
location(),lastmod(),changefreq()andpriority()methods.
-
location[source] -
Optional. Either a method or attribute.
If it’s a method, it should return the absolute path for a given object as returned by
items().If it’s an attribute, its value should be a string representing an absolute path to use for every object returned by
items().In both cases, “absolute path” means a URL that doesn’t include the protocol or domain. Examples:
- Good:
'/foo/bar/' - Bad:
'example.com/foo/bar/' - Bad:
'https://example.com/foo/bar/'
If
locationisn’t provided, the framework will call theget_absolute_url()method on each object as returned byitems().To specify a protocol other than
'http', useprotocol. - Good:
-
lastmod -
Optional. Either a method or attribute.
If it’s a method, it should take one argument – an object as returned by
items()– and return that object’s last-modified date/time as adatetime.If it’s an attribute, its value should be a
datetimerepresenting the last-modified date/time for every object returned byitems().If all items in a sitemap have a
lastmod, the sitemap generated byviews.sitemap()will have aLast-Modifiedheader equal to the latestlastmod. You can activate theConditionalGetMiddlewareto make Django respond appropriately to requests with anIf-Modified-Sinceheader which will prevent sending the sitemap if it hasn’t changed.
-
changefreq -
Optional. Either a method or attribute.
If it’s a method, it should take one argument – an object as returned by
items()– and return that object’s change frequency as a string.If it’s an attribute, its value should be a string representing the change frequency of every object returned by
items().Possible values for
changefreq, whether you use a method or attribute, are:'always''hourly''daily''weekly''monthly''yearly''never'
-
priority -
Optional. Either a method or attribute.
If it’s a method, it should take one argument – an object as returned by
items()– and return that object’s priority as either a string or float.If it’s an attribute, its value should be either a string or float representing the priority of every object returned by
items().Example values for
priority:0.4,1.0. The default priority of a page is0.5. See the sitemaps.org documentation for more.
-
protocol -
Optional.
This attribute defines the protocol (
'http'or'https') of the URLs in the sitemap. If it isn’t set, the protocol with which the sitemap was requested is used. If the sitemap is built outside the context of a request, the default is'http'.
-
limit -
Optional.
This attribute defines the maximum number of URLs included on each page of the sitemap. Its value should not exceed the default value of
50000, which is the upper limit allowed in the Sitemaps protocol.
-
i18n -
Optional.
A boolean attribute that defines if the URLs of this sitemap should be generated using all of your
LANGUAGES. The default isFalse.
Please login to continue.