Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.3rc1, 0.3, and 0.4rc1

hggtk/synch: Add tooltips to --rev and --force

Changeset 96ff576b69e0

Parent cbdbd3024b30

by Steve Borho

Changes to one file · Browse files at 96ff576b69e0 Showing diff from parent cbdbd3024b30 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​synch.py Stacked
 
137
138
139
 
 
 
140
141
 
 
 
 
 
 
 
 
 
 
 
 
 
142
 
 
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
 
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
 
 
 
 
 
 
 
 
 
165
166
167
@@ -137,22 +137,31 @@
  expander.set_expanded(False)   hbox = gtk.HBox()   expander.add(hbox) + + revvbox = gtk.VBox() + revhbox = gtk.HBox()   self._reventry = gtk.Entry()   self._force = gtk.CheckButton('Force pull or push') + self.tips.set_tip(self._force, 'Run even when remote repository' + ' is unrelated.') + + revhbox.pack_start(gtk.Label('Target Revision:'), False, False, 2) + revhbox.pack_start(self._reventry, True, True, 2) + eventbox = gtk.EventBox() + eventbox.add(revhbox) + self.tips.set_tip(eventbox, 'A specific revision up to which you' + ' would like to push or pull.') + revvbox.pack_start(eventbox, True, True, 8) + revvbox.pack_start(self._force, False, False, 2) + hbox.pack_start(revvbox, True, True, 4) +   frame = gtk.Frame('Incoming/Outgoing') + hbox.pack_start(frame, False, False, 2) +   self._showpatch = gtk.CheckButton('Show Patches')   self._newestfirst = gtk.CheckButton('Show Newest First')   self._nomerge = gtk.CheckButton('Show No Merges')   - revvbox = gtk.VBox() - revhbox = gtk.HBox() - revhbox.pack_start(gtk.Label('Target Revision:'), False, False, 2) - revhbox.pack_start(self._reventry, True, True, 2) - revvbox.pack_start(revhbox, True, True, 8) - revvbox.pack_start(self._force, False, False, 2) - hbox.pack_start(revvbox, True, True, 4) - hbox.pack_start(frame, False, False, 2) -   hbox = gtk.HBox()   hbox.pack_start(self._showpatch, False, False, 2)   hbox.pack_start(self._newestfirst, False, False, 2)