Example #1
0
 def __init__(self, source, config, value):
     BaseCommand.__init__(self)
     self.undoable = True
     self.source = source
     self.config = config
     self.value = value
     self.old_value = None
Example #2
0
 def __init__(self, stash_name, keep_index):
     BaseCommand.__init__(self)
     self.stash_name = stash_name
     self.keep_index = keep_index
Example #3
0
 def __init__(self, stash_sha1):
     BaseCommand.__init__(self)
     self.stash_sha1 = stash_sha1
Example #4
0
 def __init__(self, selection, index):
     BaseCommand.__init__(self)
     self.selection = selection
     self.index = index
Example #5
0
 def __init__(self, model):
     BaseCommand.__init__(self)
     self.model = model
Example #6
0
 def __init__(self, model):
     BaseCommand.__init__(self)
     self.model = model
Example #7
0
 def __init__(self, ref, fmt, prefix, filename):
     BaseCommand.__init__(self)
     self.ref = ref
     self.fmt = fmt
     self.prefix = prefix
     self.filename = filename
Example #8
0
 def __init__(self):
     BaseCommand.__init__(self)
     self.factory = cmdfactory.factory()
Example #9
0
 def __init__(self, ref, fmt, prefix, filename):
     BaseCommand.__init__(self)
     self.ref = ref
     self.fmt = fmt
     self.prefix = prefix
     self.filename = filename
Example #10
0
 def __init__(self):
     BaseCommand.__init__(self)
     self.factory = cmdfactory.factory()
Example #11
0
 def __init__(self, stash_name, keep_index):
     BaseCommand.__init__(self)
     self.stash_name = stash_name
     self.keep_index = keep_index
Example #12
0
 def __init__(self, stash_sha1):
     BaseCommand.__init__(self)
     self.stash_sha1 = stash_sha1
Example #13
0
 def __init__(self, selection, index):
     BaseCommand.__init__(self)
     self.selection = selection
     self.index = index
Example #14
0
 def __init__(self, revision, no_commit, squash):
     BaseCommand.__init__(self)
     self.revision = revision
     self.no_commit = no_commit
     self.squash = squash
Example #15
0
 def __init__(self, revision, no_commit, squash):
     BaseCommand.__init__(self)
     self.revision = revision
     self.no_commit = no_commit
     self.squash = squash