示例#1
0
文件: model.py 项目: moreati/git-cola
 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
示例#2
0
文件: model.py 项目: queer1/git-cola
 def __init__(self, stash_name, keep_index):
     BaseCommand.__init__(self)
     self.stash_name = stash_name
     self.keep_index = keep_index
示例#3
0
文件: model.py 项目: queer1/git-cola
 def __init__(self, stash_sha1):
     BaseCommand.__init__(self)
     self.stash_sha1 = stash_sha1
示例#4
0
文件: model.py 项目: queer1/git-cola
 def __init__(self, selection, index):
     BaseCommand.__init__(self)
     self.selection = selection
     self.index = index
示例#5
0
 def __init__(self, model):
     BaseCommand.__init__(self)
     self.model = model
示例#6
0
文件: browse.py 项目: jmdcal/git-cola
 def __init__(self, model):
     BaseCommand.__init__(self)
     self.model = model
示例#7
0
文件: model.py 项目: mwh/git-cola
 def __init__(self, ref, fmt, prefix, filename):
     BaseCommand.__init__(self)
     self.ref = ref
     self.fmt = fmt
     self.prefix = prefix
     self.filename = filename
示例#8
0
 def __init__(self):
     BaseCommand.__init__(self)
     self.factory = cmdfactory.factory()
示例#9
0
文件: model.py 项目: moreati/git-cola
 def __init__(self, ref, fmt, prefix, filename):
     BaseCommand.__init__(self)
     self.ref = ref
     self.fmt = fmt
     self.prefix = prefix
     self.filename = filename
示例#10
0
 def __init__(self):
     BaseCommand.__init__(self)
     self.factory = cmdfactory.factory()
示例#11
0
 def __init__(self, stash_name, keep_index):
     BaseCommand.__init__(self)
     self.stash_name = stash_name
     self.keep_index = keep_index
示例#12
0
 def __init__(self, stash_sha1):
     BaseCommand.__init__(self)
     self.stash_sha1 = stash_sha1
示例#13
0
 def __init__(self, selection, index):
     BaseCommand.__init__(self)
     self.selection = selection
     self.index = index
示例#14
0
 def __init__(self, revision, no_commit, squash):
     BaseCommand.__init__(self)
     self.revision = revision
     self.no_commit = no_commit
     self.squash = squash
示例#15
0
文件: model.py 项目: moreati/git-cola
 def __init__(self, revision, no_commit, squash):
     BaseCommand.__init__(self)
     self.revision = revision
     self.no_commit = no_commit
     self.squash = squash