/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/frontend/gtk/__init__.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-08-09 12:20:51 UTC
  • mto: (0.14.1 main) (93.1.1 win32.bialix)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060809122051-f912e25c7d8755ac
Implemented pull functionality.

2006-08-09  Szilveszter Farkas <Szilveszter.Farkas@gmail.com>

    * olive/backend/update.py: added NotBranchError support to pull()
    * olive/backend/__init__.py: added Branch/Pull signal
    * olive/backend/handler.py: implemented Branch/Pull signal handler

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
                "on_menuitem_branch_checkout_activate": handler.on_menuitem_branch_checkout_activate,
70
70
                "on_menuitem_branch_commit_activate": handler.on_menuitem_branch_commit_activate,
71
71
                "on_menuitem_branch_push_activate": handler.on_menuitem_branch_push_activate,
72
 
                "on_menuitem_branch_pull_activate": handler.not_implemented,
 
72
                "on_menuitem_branch_pull_activate": handler.on_menuitem_branch_pull_activate,
73
73
                "on_menuitem_branch_status_activate": handler.on_menuitem_branch_status_activate,
74
74
                "on_menuitem_stats_diff_activate": handler.on_menuitem_stats_diff_activate,
75
75
                "on_menuitem_stats_log_activate": handler.not_implemented,
76
76
                "on_menuitem_stats_infos_activate": handler.not_implemented,
77
77
                "on_toolbutton_update_clicked": handler.not_implemented,
78
78
                "on_toolbutton_commit_clicked": handler.on_menuitem_branch_commit_activate,
79
 
                "on_toolbutton_pull_clicked": handler.not_implemented,
 
79
                "on_toolbutton_pull_clicked": handler.on_menuitem_branch_pull_activate,
80
80
                "on_toolbutton_push_clicked": handler.on_menuitem_branch_push_activate,
81
81
                "on_treeview_right_button_press_event": handler.on_treeview_right_button_press_event,
82
82
                "on_treeview_right_row_activated": handler.on_treeview_right_row_activated,