示例#1
0
文件: utils.py 项目: gaelL/numeter
 def get_css(self):
     """Return a list of CSS files."""
     return [s for s in self._walk() if s.endswith('.css')]
示例#2
0
文件: utils.py 项目: guits/numeter
 def get_css(self):
     """Return a list of CSS files."""
     return [ s for s in self._walk() if s.endswith('.css')]
示例#3
0
文件: utils.py 项目: gaelL/numeter
 def get_js(self):
     """Return a list of JavaScript files."""
     sources = [s for s in self._walk() if s.endswith('.js')]
     sources.sort()
     return sources
示例#4
0
文件: utils.py 项目: guits/numeter
 def get_js(self):
     """Return a list of JavaScript files."""
     sources = [ s for s in self._walk() if s.endswith('.js') ]
     sources.sort()
     return sources