Example #1
0
 def get_css(self):
     """Return a list of CSS files."""
     return [s for s in self._walk() if s.endswith('.css')]
Example #2
0
 def get_css(self):
     """Return a list of CSS files."""
     return [ s for s in self._walk() if s.endswith('.css')]
Example #3
0
 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
Example #4
0
 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