-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move ANSI HTML-ifying to site; DMOJ/judge-server#478
- Loading branch information
1 parent
18816e7
commit e5297dd
Showing
4 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# -*- 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): | ||
Submission = apps.get_model('judge', 'Submission') | ||
for sub in Submission.objects.filter(error__isnull=False).iterator(): | ||
if sub.error: | ||
sub.error = clean_html(lh.fromstring(sub.error)).text_content() | ||
sub.save(update_fields=['error']) | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('judge', '0090_fix_contest_visibility'), | ||
] | ||
|
||
operations = [ | ||
migrations.RunPython(strip_error_html, migrations.RunPython.noop, atomic=True), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,4 @@ jsonfield | |
pymoss | ||
packaging | ||
celery | ||
ansi2html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters