1 """
2 Tutorial - Object inheritance
3
4 You are free to derive your request handler classes from any base
5 class you wish. In most real-world applications, you will probably
6 want to create a central base class used for all your pages, which takes
7 care of things like printing a common page header and footer.
8 """
9
10 import cherrypy
11
12
14
15 title = 'Untitled Page'
16
18 return '''
19 <html>
20 <head>
21 <title>%s</title>
22 <head>
23 <body>
24 <h2>%s</h2>
25 ''' % (self.title, self.title)
26
28 return '''
29 </body>
30 </html>
31 '''
32
33
34
35
36
37
38
39
40 -class HomePage(Page):
41
42 title = 'Tutorial 5'
43
45
46 self.another = AnotherPage()
47
49
50
51 return self.header() + '''
52 <p>
53 Isn't this exciting? There's
54 <a href="./another/">another page</a>, too!
55 </p>
56 ''' + self.footer()
57 index.exposed = True
58
59
60 -class AnotherPage(Page):
61 title = 'Another Page'
62
64 return self.header() + '''
65 <p>
66 And this is the amazing second page!
67 </p>
68 ''' + self.footer()
69 index.exposed = True
70
71
72 import os.path
73 tutconf = os.path.join(os.path.dirname(__file__), 'tutorial.conf')
74
75 if __name__ == '__main__':
76
77
78
79 cherrypy.quickstart(HomePage(), config=tutconf)
80 else:
81
82 cherrypy.tree.mount(HomePage(), config=tutconf)
83