예제 #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