A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

74 lines
1.8 KiB

  1. # -*- coding: utf-8 -*-
  2. """
  3. Uglify plugin
  4. """
  5. from hyde.plugin import CLTransformer
  6. from hyde.fs import File
  7. class UglifyPlugin(CLTransformer):
  8. """
  9. The plugin class for Uglify JS
  10. """
  11. default_app_path = "uglifyjs"
  12. def __init__(self, site):
  13. super(UglifyPlugin, self).__init__(site)
  14. @property
  15. def plugin_name(self):
  16. """
  17. The name of the plugin.
  18. """
  19. return "uglify"
  20. def text_resource_complete(self, resource, text):
  21. """
  22. If the site is in development mode, just return.
  23. Otherwise, save the file to a temporary place
  24. and run the uglify app. Read the generated file
  25. and return the text as output.
  26. """
  27. try:
  28. mode = self.site.config.mode
  29. except AttributeError:
  30. mode = "production"
  31. if not resource.source_file.kind == 'js':
  32. return
  33. if mode.startswith('dev'):
  34. self.logger.debug("Skipping uglify in development mode.")
  35. return
  36. supported = [
  37. ("beautify", "b"),
  38. ("indent", "i"),
  39. ("quote-keys", "q"),
  40. ("mangle-toplevel", "mt"),
  41. ("no-mangle", "nm"),
  42. ("no-squeeze", "ns"),
  43. "no-seqs",
  44. "no-dead-code",
  45. ("no-copyright", "nc"),
  46. "overwrite",
  47. "verbose",
  48. "unsafe",
  49. "max-line-len",
  50. "reserved-names",
  51. "ascii"
  52. ]
  53. uglify = self.app
  54. source = File.make_temp(text)
  55. target = File.make_temp('')
  56. args = [unicode(uglify)]
  57. args.extend(self.process_args(supported))
  58. args.extend(["-o", unicode(target), unicode(source)])
  59. self.call_app(args)
  60. out = target.read_all()
  61. return out