Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

synch: correct comments

Changeset a5f16c349e1a

Parent 723a79127189

by Yuki KODAMA

Changes to one file · Browse files at a5f16c349e1a Showing diff from parent 723a79127189 Diff from another changeset...

Change 1 of 5 Show Entire File hggtk/​synch.py Stacked
 
103
104
105
106
 
107
108
109
 
115
116
117
118
 
119
120
121
 
154
155
156
 
157
158
159
 
167
168
169
 
170
171
172
 
214
215
216
 
217
218
219
 
103
104
105
 
106
107
108
109
 
115
116
117
 
118
119
120
121
 
154
155
156
157
158
159
160
 
168
169
170
171
172
173
174
 
216
217
218
219
220
221
222
@@ -103,7 +103,7 @@
  self.add(vbox)   vbox.pack_start(self.tbar, False, False, 2)   - # sync target info + # sync target selection buttons   targethbox = gtk.HBox()   lbl = gtk.Button(_('Repo:'))   lbl.unset_flags(gtk.CAN_FOCUS) @@ -115,7 +115,7 @@
  lbl.connect('clicked', self.btn_bundlepath_clicked)   targethbox.pack_start(lbl, False, False)   - # revisions combo box + # target path combobox   self.pathlist = gtk.ListStore(str, str)   self.pathbox = gtk.ComboBoxEntry(self.pathlist, 0)   self.pathtext = self.pathbox.get_child() @@ -154,6 +154,7 @@
  else:   self.use_proxy.set_sensitive(False)   + # groupbox for 'Post pull operation'   frame = gtk.Frame(_('Post pull operation'))   ppvbox = gtk.VBox()   self.nothingradio = gtk.RadioButton(None, _('Nothing')) @@ -167,6 +168,7 @@
  frame.add(ppvbox)   frame.set_border_width(2)   + # expandable group for 'Advanced options'   self.expander = expander = gtk.Expander(_('Advanced Options'))   expander.set_expanded(False)   expander.connect_after('activate', self.expanded) @@ -214,6 +216,7 @@
  revvbox.pack_start(cmdeventbox, True, True, 2)   hbox.pack_start(revvbox, True, True, 4)   + # groupbox for 'Incoming/Outgoing'   frame = gtk.Frame(_('Incoming/Outgoing'))   hbox.pack_start(frame, False, False, 2)