~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/export/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-20 05:08:48 UTC
  • mfrom: (4171.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090320050848-c1wdgzf5kkfdt1ys
Content filters (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
    When requesting a specific type of export, load the respective path.
57
57
    """
58
 
    def _loader(tree, dest, root, subdir):
 
58
    def _loader(tree, dest, root, subdir, filtered):
59
59
        mod = __import__(module, globals(), locals(), [funcname])
60
60
        func = getattr(mod, funcname)
61
 
        return func(tree, dest, root, subdir)
 
61
        return func(tree, dest, root, subdir, filtered=filtered)
62
62
    register_exporter(scheme, extensions, _loader)
63
63
 
64
64
 
65
 
def export(tree, dest, format=None, root=None, subdir=None):
 
65
def export(tree, dest, format=None, root=None, subdir=None, filtered=False):
66
66
    """Export the given Tree to the specific destination.
67
67
 
68
68
    :param tree: A Tree (such as RevisionTree) to export
79
79
    :param subdir: A starting directory within the tree. None means to export
80
80
        the entire tree, and anything else should specify the relative path to
81
81
        a directory to start exporting from.
 
82
    :param filtered: If True, content filtering is applied to the
 
83
                     files exported.
82
84
    """
83
85
    global _exporters, _exporter_extensions
84
86
 
97
99
        raise errors.NoSuchExportFormat(format)
98
100
    tree.lock_read()
99
101
    try:
100
 
        return _exporters[format](tree, dest, root, subdir)
 
102
        return _exporters[format](tree, dest, root, subdir, filtered=filtered)
101
103
    finally:
102
104
        tree.unlock()
103
105