django-static-sitemaps icon indicating copy to clipboard operation
django-static-sitemaps copied to clipboard

Tool for generating sitemaps as static files to serve them from webserver instead of your Django application.

Results 16 django-static-sitemaps issues
Sort by recently updated
recently updated
newest added

Using celery 5 with latest django-static-sitemaps doesn't work. In celery 4, the celery.tasks module was deprecated and then removed in version 5. You might be able to simply replace: tasks.py:...

**Environment** python 3.5 Django 2.1.7 django-static-sitemap 4.6.0 When I try to create database schema, `$python manage.py makemigrations $python manage.py migrate ` nothing happens.

Hello, do you plan adding a support for google image sitemap? Thank you for your answer. Hanz loot at https://support.google.com/webmasters/answer/178636

enhancement

The value of SITEMAP_ROOT_DIR gets prepended to the filename twice. I had do use a custom storage to avoid this happening: ``` class S3SitemapStorage(S3BotoStorage): def __init__(self, *args, **kwargs): super(S3SitemapStorage, self).__init__(*args,...

bug

Made a correction for the Windows Command. Apologies for the second pull request.

If the sitemap's 'limit' and 'lastmod' do not change,can this app start write index from the last xml file?

enhancement

I have few sites in 1 django's project. I see there is a STATICSITEMAPS_URL setting, but how to generate sitemaps for multiple sites?

enhancement

Can't see how to change to https (which should be the default). It looks hardcoded: ``` @staticmethod def normalize_url(url): if url[-1] != '/': url += '/' if not url.startswith(('http://', 'https://')):...

enhancement