X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=phd_pp.py;fp=phd_pp.py;h=f9c9a67dca9712272ba8141bf9e7e9d57ea43690;hb=6922322a54539e39cbba59653868fa9d749fa274;hp=95e90db415b1901106c061d90b3111c11793cfab;hpb=c6eb1e00be821ab12e0edaa622e75eff1ec8abd2;p=phdru.name%2Fphdru.name.git diff --git a/phd_pp.py b/phd_pp.py index 95e90db..f9c9a67 100644 --- a/phd_pp.py +++ b/phd_pp.py @@ -1,7 +1,5 @@ import os, re, time, urllib -from HTMLParser import HTMLParseError from Cheetah.Template import Template -from m_lib.net.www.html import HTMLParser as _HTMLParser url_re = r"(((https?|ftp|gopher|telnet)://|(mailto|file|news|about|ed2k|irc|sip|magnet):)[^' \t<>\"]+|(www|web|w3)[A-Za-z0-9_-]*\.[A-Za-z0-9._-]+\.[^' \t<>\"]+)[A-Za-z0-9/]" @@ -38,6 +36,7 @@ class phd_pp(Template): return "%s, %s" % (start_year, this_year) return "%s-%s" % (start_year, this_year) + def body(self): if hasattr(self, "body_html"): body = self.body_html() @@ -45,7 +44,6 @@ class phd_pp(Template): body = self.text2html() if hasattr(self, "body_rst"): body = self.rst2html() - self.Body = body return body def text2html(self): @@ -85,20 +83,6 @@ class phd_pp(Template): parts = [part for part in (title, subtitle, body) if part] return "\n\n".join(parts) - def get_first_p(self): - parser = HTMLParser() - - try: - parser.feed(self.body()) - except (HTMLParseError, HTMLHeadDone): - pass - - try: - parser.close() - except (HTMLParseError, HTMLHeadDone): - pass - - return parser.first_p def img_thumbnail_800_1024(self, img_name): return """\ @@ -127,18 +111,3 @@ class phd_pp(Template): def quote_string(s, to_encoding="utf-8", ext_safe=''): return urllib.quote(unicode(s, "koi8-r").encode(to_encoding), '/' + ext_safe) - - -class HTMLHeadDone(Exception): pass - -class HTMLParser(_HTMLParser): - def __init__(self, charset=None): - _HTMLParser.__init__(self) - self.first_p = None - - def start_p(self, attrs): - self.accumulator = '

' - - def end_p(self): - self.first_p = self.accumulator + '

' - raise HTMLHeadDone()