]> git.phdru.name Git - m_lib.git/blob - m_lib/net/www/dtml.py
Remove wrong copyright lines, fix module docstrings
[m_lib.git] / m_lib / net / www / dtml.py
1 """DTML utilities"""
2
3 class standard_html: # Base class for using with ZTemplates
4    def __init__(self, title):
5       self.standard_html_header = """<HTML>
6    <HEAD>
7       <TITLE>
8          %s
9       </TITLE>
10    </HEAD>
11
12 <BODY>""" % title
13
14       self.standard_html_footer = """</BODY>
15 </HTML>"""
16
17       self.title = title