Imports initiaux

darcs-hash:20060414194001-d1718-ceecbd9d441a17318a957ec7b4686f85a4aa47b5.gz
This commit is contained in:
bernat 2006-04-14 21:40:01 +02:00
parent 1c6255c1d7
commit 8f2f2247d7
18 changed files with 5116 additions and 0 deletions

24
wiki/theme/ensanime.py Normal file
View file

@ -0,0 +1,24 @@
from crans import ThemeCrans
class Theme(ThemeCrans):
# Standard set of style sheets
stylesheets = (
# media basename
('all', 'common'),
('all', 'common-reverse'),
('screen', 'crans'),
('screen', 'ensanime'),
('print', 'print'),
('projection', 'projection'),
)
def execute(request):
"""
Generate and return a theme object
@param request: the request object
@rtype: MoinTheme
@return: Theme object
"""
return Theme(request)