Revision: | 1.2 |
Committed: | Fri Nov 24 10:45:23 2006 UTC (18 years, 5 months ago) by eulisse |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | V00-04-09, V00-04-08, V00-04-07, V00-04-06, V00-04-05, V00-04-04, V00-04-03, V00-04-02, V00-04-01, V00-04-00, V00-03-14, V00-03-13, V00-03-12, V00-03-11, V00-03-10, V00-03-09, V00-03-08, V00-03-07, V00-03-06, V00-03-05, V00-03-04, V00-03-03, V00-03-02, V00-03-01, V00-03-00, V00-02-00, V00-01-00, V00-00-05, V00-00-04, V00-00-03 |
Changes since 1.1: | +1 -0 lines |
Log Message: | Syncronized with svn repository. New features: - Drag and drop workflow creation - Transaction handling with prodmanager - More YUI controls - New, empty administration page. - Javascript top navigation tab. - Uses cherrypy static_filter |
# | Content |
---|---|
1 | from Framework import Controller |
2 | from Framework import webmethod |
3 | from os import listdir |
4 | |
5 | class Common (Controller): |
6 | def __init__ (self): |
7 | Controller.__init__ (self) |
8 | f = file ("Applications/common.css") |
9 | self.commonStyle = f.read () |
10 | print self.commonStyle |
11 | |
12 | def style (self): |
13 | return self.commonStyle |
14 | style.exposed=True |
15 |