From 23cda53f812f1b907def8a9dcac95167b8c7c395 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 29 Apr 2011 10:16:17 -0500 Subject: releng: auto-deactivate old ISO names Signed-off-by: Dan McGee --- releng/management/commands/syncisos.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'releng/management/commands/syncisos.py') diff --git a/releng/management/commands/syncisos.py b/releng/management/commands/syncisos.py index 247b01cd..ba174131 100644 --- a/releng/management/commands/syncisos.py +++ b/releng/management/commands/syncisos.py @@ -19,7 +19,7 @@ class IsoListParser(HTMLParser): for name, value in attrs: if name == "href": if value != '../' and self.url_re.search(value) != None: - self.hyperlinks.append(value[:len(value)-1]) + self.hyperlinks.append(value[:-1]) def parse(self, url): try: @@ -38,11 +38,14 @@ class Command(BaseCommand): def handle(self, *args, **options): parser = IsoListParser() isonames = Iso.objects.values_list('name', flat=True) - new_isos = parser.parse(settings.ISO_LIST_URL) + active_isos = parser.parse(settings.ISO_LIST_URL) - for iso in new_isos: + # create any names that don't already exist + for iso in active_isos: if iso not in isonames: - new = Iso(name=iso) + new = Iso(name=iso, active=True) new.save() + # and then mark all other names as no longer active + Iso.objects.exclude(name__in=active_isos).update(active=False) # vim: set ts=4 sw=4 et: -- cgit v1.2.3-55-g3dc8