Blame htmlbase.py

Ivan Mahonin b838e2
Ivan Mahonin b838e2
Ivan Mahonin b838e2
class HtmlBase:
Ivan Mahonin b838e2
  def make_link(self, answer, path, title = '', htmlcontent = ''):
Ivan Mahonin b838e2
    assert(not title or not htmlcontent )
Ivan Mahonin b838e2
    return '%s%s' \
Ivan Mahonin b838e2
         % ( answer.request.get_urlpath_escaped(path), answer.te(title), htmlcontent)
Ivan Mahonin b838e2