]> git.phdru.name Git - phdru.name/phdru.name.git/blob - phd.py
Adapted to CheetahTemplate 2.4+ - it's all unicode internally
[phdru.name/phdru.name.git] / phd.py
1 import os, re, time, urllib
2 from Cheetah.Template import Template
3
4
5 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/]"
6
7 def _url2href(match):
8    url = match.group(0)
9    return '<a href="%s">%s</a>' % (url, url)
10
11
12 full_dirs = len(os.getcwd().split('/')) + 2
13
14 class phd(Template):
15    def __init__(self, *args, **kw):
16       if not hasattr(self, "_fileBaseName"):
17          self._fileDirName, self._fileBaseName = os.path.split(os.path.abspath(self._CHEETAH_src))
18       Template.__init__(self, *args, **kw)
19       directories = self._fileDirName.split('/')[full_dirs:] # remove directories up to "./files"
20       dirs_to_root = len(directories)
21       if dirs_to_root:
22          root = "../"*dirs_to_root
23       else:
24          root = ''
25       self.root = root
26       path = '/'.join(directories) + '/' + \
27          self._fileBaseName.replace(".tmpl", ".html")
28       if path[0] <> '/': path = '/' + path
29       self.path = path
30
31    def copyright(self, start_year):
32       this_year = time.localtime()[0]
33       if start_year >= this_year:
34          return this_year
35       if start_year == this_year - 1:
36          return "%s, %s" % (start_year, this_year)
37       return "%s-%s" % (start_year, this_year)
38
39
40    def body(self):
41       if hasattr(self, "body_html"):
42          return self.body_html()
43       if hasattr(self, "body_text"):
44          return self.text2html()
45       if hasattr(self, "body_rst"):
46          return self.rst2html()
47
48    def text2html(self):
49       body = re.sub(url_re, _url2href, self.body_text())
50
51       paragraphs = body.split("\n\n")
52
53       new_paras = []
54       for p in paragraphs:
55          parts = p.split("\n   ")
56          parts[0] = parts[0].strip()
57          new_paras.append('\n</p>\n<p>\n'.join(parts))
58
59       if self.Title:
60          title = "<h1>%s</h1>\n\n" % self.Title
61       else:
62          title = ''
63
64       body = '\n</p>\n\n<p class="head">\n'.join(new_paras)
65       return "%s<p>%s</p>" % (title, body)
66
67    def rst2html(self):
68       from docutils.core import publish_parts
69       from m_lib.defenc import default_encoding as encoding
70
71       parts = publish_parts(self.body_rst(), writer_name="html")
72
73       title = parts["title"].encode(encoding) or self.Title
74       if title:
75          title = "<h1>%s</h1>" % title
76
77       subtitle = parts["subtitle"].encode(encoding)
78       if subtitle:
79          subtitle = "<h2>%s</h2>" % subtitle
80
81       body = parts["body"].encode(encoding)
82       parts = [part for part in (title, subtitle, body) if part]
83       return "\n\n".join(parts)
84
85
86    def img_thumbnail_800_1024(self, img_name):
87       return """\
88 <img src="%(img_name)s-thumbnail.jpg" alt="%(img_name)s-thumbnail.jpg" /><br />
89 <a href="%(img_name)s-800x600.jpg">800x600</a>, <a href="%(img_name)s-1024x800.jpg">1024x800</a>""" % {"img_name": img_name}
90
91    def wikipedia(self, query):
92       return "http://en.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',')
93
94    def wikipedia_ru(self, query):
95       return "http://ru.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',')
96
97    def nigma(self, query):
98        return "http://www.nigma.ru/index.php?s=%s" % quote_string(query)
99
100    search = nigma
101
102    def yandex(self, query):
103       return "http://www.yandex.ru/yandsearch?text=%s&rpt=rad" % quote_string(query, "cp1251")
104
105    def google(self, query):
106       return "http://www.google.com/search?hl=en&ie=utf-8&oe=utf-8&q=%s" % quote_string(query)
107
108    def google_ru(self, query):
109       return "http://www.google.ru/search?hl=ru&ie=utf-8&oe=utf-8&q=%s" % quote_string(query)
110
111 def quote_string(s, to_encoding="utf-8", ext_safe=''):
112    return urllib.quote(unicode(s, "utf-8").encode(to_encoding), '/' + ext_safe)