def get_refined_output(self, output, **kwargs):
     filtered, css_filtered = output
     return ('js', smart_text(filtered.replace(
         parcel_absolute_url_skip,
         ''))), ('css',
                 smart_text(
                     css_filtered.replace(
                         parcel_absolute_url_skip,
                         ''))) if css_filtered else ('css', css_filtered)
 def get_refined_output(self, output, **kwargs):
     return smart_text(output)
 def get_refined_output(self, output, **kwargs):
     filtered = output.replace(parcel_absolute_url_skip, '')
     return smart_text(filtered)
Beispiel #4
0
 def get_refined_output(self, output, **kwargs):
     filtered = output.replace('///..', '')
     return smart_text(filtered)
Beispiel #5
0
 def get_refined_output(self, output, **kwargs):
     filtered, css_filtered = output
     return ('js', smart_text(filtered)), (
         'css', smart_text(css_filtered.replace(
             '///..', ''))) if css_filtered else ('css', css_filtered)
Beispiel #6
0
    def input(self, **kwargs):

        encoding = self.default_encoding
        options = dict(self.options)

        if self.infile is None and "{infile}" in self.command:
            # create temporary input file if needed
            if self.filename is None:
                self.infile = NamedTemporaryFile(mode='wb')
                self.infile.write(self.content.encode(encoding))
                self.infile.flush()
                options["infile"] = self.infile.name
            else:
                # we use source file directly, which may be encoded using
                # something different than utf8. If that's the case file will
                # be included with charset="something" html attribute and
                # charset will be available as filter's charset attribute
                encoding = self.charset  # or self.default_encoding
                self.infile = open(self.filename)
                options["infile"] = self.filename

        if "{outfile}" in self.command and "outfile" not in options:
            # create temporary output file if needed
            ext = self.type and ".%s" % self.type or ""
            self.outfile = NamedTemporaryFile(mode='r+', suffix=ext)
            options["outfile"] = self.outfile.name
            options["outfile_css"] = self.outfile.name.replace(ext, '.css')

        # Quote infile and outfile for spaces etc.
        if "infile" in options:
            options["infile"] = shell_quote(options["infile"])
        if "outfile" in options:
            options["outfile"] = shell_quote(options["outfile"])
            options["outfile_css"] = shell_quote(options["outfile_css"])

        try:
            command = self.command.format(**options)
            proc = subprocess.Popen(
                command, shell=True, cwd=self.cwd, stdout=self.stdout,
                stdin=self.stdin, stderr=self.stderr)
            if self.infile is None:
                # if infile is None then send content to process' stdin
                filtered, err = proc.communicate(
                    self.content.encode(encoding))
            else:
                filtered, err = proc.communicate()
            filtered, err = filtered.decode(encoding), err.decode(encoding)
        except (IOError, OSError) as e:
            raise FilterError('Unable to apply %s (%r): %s' %
                              (self.__class__.__name__, self.command, e))
        else:
            if proc.wait() != 0:
                # command failed, raise FilterError exception
                if not err:
                    err = ('Unable to apply %s (%s)' %
                           (self.__class__.__name__, self.command))
                    if filtered:
                        err += '\n%s' % filtered
                raise FilterError(err)

            if self.verbose:
                self.logger.debug(err)

            outfile_path = options.get('outfile')
            outfile_path_css = options.get('outfile_css')
            if outfile_path:
                with io.open(outfile_path, 'r', encoding=encoding) as file:
                    filtered = file.read()
            if outfile_path_css:
                with io.open(outfile_path_css, 'r', encoding=encoding) as file:
                    css_filtered = file.read()
                    csas = smart_text(css_filtered)
        finally:
            if self.infile is not None:
                self.infile.close()
            if self.outfile is not None:
                self.outfile.close()
        return smart_text(filtered)