app/django/contrib/sitemaps/management/commands/ping_google.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 30 Mar 2009 22:52:15 +0000
changeset 2037 3f355dca3679
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added nr_applications and nr_mentors These two properties can then be used to store the amount of applications and mentors an organization has. Patch by: Sverre Rabbelier

from django.core.management.base import BaseCommand
from django.contrib.sitemaps import ping_google


class Command(BaseCommand):
    help = "Ping google with an updated sitemap, pass optional url of sitemap"

    def execute(self, *args, **options):
        if len(args) == 1:
            sitemap_url = args[0]
        else:
            sitemap_url = None
        ping_google(sitemap_url=sitemap_url)