[imp] desactivated stupid hello module

bzr revid: nicolas.vanhoren@openerp.com-20110707084415-6or8nj1mrt9pql7e
This commit is contained in:
niv-openerp 2011-07-07 10:44:15 +02:00
parent 00c300a07b
commit ea9b60393e
2 changed files with 3 additions and 2 deletions

View File

@ -124,14 +124,14 @@ class Session(openerpweb.Controller):
def jslist(self, req, mods='base'):
return {'files': self.manifest_glob(mods.split(','), 'js')}
def css(self, req, mods='base,base_hello'):
def css(self, req, mods='base'):
files = self.manifest_glob(mods.split(','), 'css')
concat = self.concat_files(files)[0]
# TODO request set the Date of last modif and Etag
return concat
css.exposed = True
def js(self, req, mods='base,base_hello'):
def js(self, req, mods='base'):
files = self.manifest_glob(mods.split(','), 'js')
concat = self.concat_files(files)[0]
# TODO request set the Date of last modif and Etag

View File

@ -4,4 +4,5 @@
"depends": [],
"js": ["static/*/*.js", "static/*/js/*.js"],
"css": [],
'active': False,
}