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.
 
 
 

75 lines
2.3 KiB

  1. # -*- coding: utf-8 -*-
  2. """
  3. Contains classes to combine files into one
  4. """
  5. from fnmatch import fnmatch
  6. from hyde.model import Expando
  7. from hyde.plugin import Plugin
  8. class CombinePlugin(Plugin):
  9. """
  10. To use this combine, the following configuration should be added
  11. to meta data::
  12. combine:
  13. files:
  14. - ns1.*.js
  15. - ns2.*.js
  16. where: top
  17. `files` is a list of resources (or just a resource) that should be
  18. combined. Globbing is performed. `where` indicate where the
  19. combination should be done. This could be `top` or `bottom` of the
  20. file.
  21. """
  22. def __init__(self, site):
  23. super(CombinePlugin, self).__init__(site)
  24. def begin_text_resource(self, resource, text):
  25. """
  26. When generating a resource, add combined file if needed.
  27. """
  28. # Grab configuration
  29. try:
  30. config = resource.meta.combine
  31. except AttributeError:
  32. return
  33. # Grab file list
  34. try:
  35. files = config.files
  36. except AttributeError:
  37. raise "No resources to combine for [%s]" % resource
  38. if type(files) is str:
  39. files = [ files ]
  40. where = "bottom"
  41. try:
  42. where = config.where
  43. except AttributeError:
  44. pass
  45. if where not in [ "top", "bottom" ]:
  46. raise ValueError("%r should be either `top` or `bottom`" % where)
  47. resources = []
  48. for r in resource.node.resources:
  49. for f in files:
  50. if fnmatch(r.name, f):
  51. resources.append(r)
  52. break
  53. if not resources:
  54. self.logger.debug("No resources to combine for [%s]" % resource)
  55. return
  56. self.logger.debug(
  57. "Combining %d resources for [%s]" % (len(resources),
  58. resource))
  59. if not hasattr(resource, 'depends'):
  60. resource.depends = []
  61. resource.depends.extend([r.relative_path for r in resources
  62. if r.relative_path not in resource.depends])
  63. if where == "top":
  64. return "".join([r.source.read_all() for r in resources] + [text])
  65. else:
  66. return "".join([text] + [r.source.read_all() for r in resources])