/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2007-02-03 15:04:56 UTC
  • Revision ID: jelmer@samba.org-20070203150456-t3ednkxql05rzg0m
Add trivial generic class for storing URL history.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
from bzrlib.plugins.gtk.commit import CommitDialog
47
47
from bzrlib.plugins.gtk.push import PushDialog
48
48
 
49
 
delimiter = ' '
50
 
 
51
49
class OliveGtk:
52
50
    """ The main Olive GTK frontend class. This is called when launching the
53
51
    program. """
212
210
    
213
211
    def on_menuitem_branch_get_activate(self, widget):
214
212
        """ Branch/Get... menu handler. """
215
 
        from branch import BranchDialog
 
213
        from bzrlib.plugins.gtk.branch import BranchDialog
216
214
        branch = BranchDialog(self.get_path(), self.window)
217
215
        response = branch.run()
218
216
        if response != gtk.RESPONSE_NONE:
225
223
    
226
224
    def on_menuitem_branch_checkout_activate(self, widget):
227
225
        """ Branch/Checkout... menu handler. """
228
 
        from checkout import CheckoutDialog
 
226
        from bzrlib.plugins.gtk.checkout import CheckoutDialog
229
227
        checkout = CheckoutDialog(self.get_path(), self.window)
230
228
        response = checkout.run()
231
229
        if response != gtk.RESPONSE_NONE:
251
249
    
252
250
    def on_menuitem_branch_merge_activate(self, widget):
253
251
        """ Branch/Merge... menu handler. """
254
 
        from merge import MergeDialog
 
252
        from bzrlib.plugins.gtk.merge import MergeDialog
255
253
        
256
254
        if self.check_for_changes():
257
255
            error_dialog(_('There are local changes in the branch'),