# | Line 3 | Line 3 | from Framework import webmethod | |
---|---|---|
3 | from os import listdir | |
4 | ||
5 | class Common (Controller): | |
6 | < | def __init__ (self): |
7 | < | Controller.__init__ (self) |
6 | > | def __init__ (self, context): |
7 | > | Controller.__init__ (self, context) |
8 | f = file ("Applications/common.css") | |
9 | self.commonStyle = f.read () | |
10 | print self.commonStyle |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |