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

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

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

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