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

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

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

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