NDOJ/judge/migrations/0091_compiler_message_ansi2html.py

24 lines
670 B
Python
Raw Normal View History

2020-01-21 06:35:58 +00:00
# -*- coding: utf-8 -*-
import lxml.html as lh
from django.db import migrations
from lxml.html.clean import clean_html
def strip_error_html(apps, schema_editor):
2022-05-14 17:57:27 +00:00
Submission = apps.get_model("judge", "Submission")
2020-01-21 06:35:58 +00:00
for sub in Submission.objects.filter(error__isnull=False).iterator():
if sub.error:
sub.error = clean_html(lh.fromstring(sub.error)).text_content()
2022-05-14 17:57:27 +00:00
sub.save(update_fields=["error"])
2020-01-21 06:35:58 +00:00
class Migration(migrations.Migration):
dependencies = [
2022-05-14 17:57:27 +00:00
("judge", "0090_fix_contest_visibility"),
2020-01-21 06:35:58 +00:00
]
operations = [
migrations.RunPython(strip_error_html, migrations.RunPython.noop, atomic=True),
]