File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33import datetime
44import logging
55import os
6- import re
6+ # import re
77
88from django .db import models
99from django .core import checks
2222from ietf .person .models import Email , Person
2323from ietf .utils import log
2424from ietf .utils .admin import admin_link
25- from ietf .utils .rfcmarkup import markup
25+ # from ietf.utils.rfcmarkup import markup
2626from ietf .utils .validators import validate_no_control_chars
2727
2828logger = logging .getLogger ('django' )
@@ -652,13 +652,13 @@ def text(self):
652652 return text
653653
654654
655- def htmlized (self ):
656- text = self .text ()
657- html = None
658- if text :
659- html = markup (text , path = "/doc" )
660- html = re .sub (r'<hr[^>]*/>' ,'' , html )
661- return html
655+ # def htmlized(self):
656+ # text = self.text()
657+ # html = None
658+ # if text:
659+ # html = markup(text, path="/doc")
660+ # html = re.sub(r'<hr[^>]*/>','', html)
661+ # return html
662662
663663class RelatedDocHistory (models .Model ):
664664 source = models .ForeignKey ('DocHistory' )
You can’t perform that action at this time.
0 commit comments