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

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

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

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