Example #1
0
 def define_revision(
     self, revision, timestamp, author, state, branches, next
     ):
     if destroy['metadata']:
         author = self.author_substituter.get_substitution(author)
     FilterSink.define_revision(
         self, revision, timestamp, author, state, branches, next
         )
Example #2
0
 def define_revision(self, revision, timestamp, author, state, branches,
                     next):
     revision = self.transform_rev(revision)
     branches = [self.transform_rev(b) for b in branches]
     if next is not None:
         next = self.transform_rev(next)
     FilterSink.define_revision(self, revision, timestamp, author, state,
                                branches, next)
Example #3
0
 def define_revision(
         self, revision, timestamp, author, state, branches, next
         ):
     revision = self.transform_rev(revision)
     branches = [self.transform_rev(b) for b in branches]
     if next is not None:
         next = self.transform_rev(next)
     FilterSink.define_revision(
         self, revision, timestamp, author, state, branches, next
         )
Example #4
0
 def define_revision(self, revision, timestamp, author, state, branches,
                     next):
     if destroy['metadata']:
         author = self.author_substituter.get_substitution(author)
     FilterSink.define_revision(self, revision, timestamp, author, state,
                                branches, next)