def _urls(self, env, extra_filters, *args, **kwargs): # Resolve debug: see whether we have to merge the contents debug = self.debug if self.debug is not None else env.debug if debug == 'merge': supposed_to_merge = True elif debug is True: supposed_to_merge = False elif debug is False: supposed_to_merge = True else: raise BundleError('Invalid debug value: %s' % debug) if supposed_to_merge and (self.filters or self.output): # We need to build this bundle, unless a) the configuration # tells us not to ("supposed_to_merge"), or b) this bundle # isn't actually configured to be built, that is, has no # filters and no output target. hunk = self._build(env, extra_filters=extra_filters, *args, **kwargs) return [make_url(env, self.output)] else: # We either have no files (nothing to build), or we are # in debug mode: Instead of building the bundle, we # source all contents instead. urls = [] for c, _ in self.resolve_contents(env): if isinstance(c, Bundle): urls.extend(c.urls(env, *args, **kwargs)) else: urls.append(make_url(env, c, expire=False)) return urls
def _urls(self, env, *args, **kwargs): env = self._get_env(env) supposed_to_merge, do_filter = self.determine_action(env) if supposed_to_merge and (self.filters or self.output): # We need to build this bundle, unless a) the configuration # tells us not to ("determine_action"), or b) this bundle # isn't actually configured to be built, that is, has no # filters and no output target. hunk = self.build(env, no_filters=not do_filter, *args, **kwargs) return [make_url(env, self.output)] else: # We either have no files (nothing to build), or we are # in debug mode: Instead of building the bundle, we # source all contents instead. urls = [] for c in self.resolve_contents(env): if isinstance(c, Bundle): urls.extend(c.urls(env, *args, **kwargs)) else: urls.append(make_url(env, c, expire=False)) return urls
def _urls(self, env, *args, **kwargs): env = self._get_env(env) supposed_to_merge, do_filter = self.determine_action(env) if supposed_to_merge: # If this bundle has an output target, then we want to build # it, if it has files, then we need to build it, at least # as long as were not explicitely allowed to not build at all, # e.g. in debug mode. hunk = self.build(env, no_filters=not do_filter, *args, **kwargs) return [make_url(env, self.output)] else: # We either have no files (nothing to build), or we are # in debug mode: Instead of building the bundle, we # source all contents instead. urls = [] for c in self.resolve_contents(env): if isinstance(c, Bundle): urls.extend(c.urls(env, *args, **kwargs)) else: urls.append(make_url(env, c, expire=False)) return urls