示例#1
0
def pull():
    """Launch the 'pull' remote dialog."""
    from cola.controllers.remote import remote_action

    return remote_action('pull')
示例#2
0
def fetch():
    """Launch the 'fetch' remote dialog."""
    from cola.controllers.remote import remote_action

    remote_action('fetch')
示例#3
0
def pull(parent):
    """Launch the 'pull' remote dialog."""
    from cola.controllers.remote import remote_action

    remote_action(parent, 'pull')
示例#4
0
 def pull(self):
     """Launch the 'pull' remote dialog."""
     remote_action(self, 'pull')
示例#5
0
 def push(self):
     """Launch the 'push' remote dialog."""
     remote_action(self, 'push')
示例#6
0
 def fetch(self):
     """Launch the 'fetch' remote dialog."""
     remote_action(self, 'fetch')