예제 #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
파일: browse.py 프로젝트: moreati/git-cola
 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