Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

cmenu: better relative path algorithm

Changeset 0272052c9684

Parent a93ecb406a4b

by Steve Borho

Changes to 2 files · Browse files at 0272052c9684 Showing diff from parent a93ecb406a4b Diff from another changeset...

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
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
168
 
 
 
 
 
 
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
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
 
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
 # TortoiseHg plugin for Nautilus  #  # Copyright (C) 2007-9 Steve Borho  #  # Stolen mercilessly from nautilus-bzr, thanks guys  # Copyright (C) 2006 Jeff Bailey  # Copyright (C) 2006 Wouter van Heyst  # Copyright (C) 2006 Jelmer Vernooij  #  # Published under the GNU GPL    import gtk  import gobject  import os  import nautilus  import subprocess  import sys  import tempfile  import urllib    try:   from mercurial import hg, ui, match, util  except ImportError:   # workaround to use user's local python libs   userlib = os.path.expanduser('~/lib/python')   if os.path.exists(userlib) and userlib not in sys.path:   sys.path.append(userlib)   from mercurial import hg, ui, match, util  try:   from mercurial.error import RepoError  except ImportError:   from mercurial.repo import RepoError  from mercurial.node import short    TORTOISEHG_PATH = '~/tools/tortoisehg-dev'  nofilecmds = 'about serve synch repoconfig userconfig merge unmerge'.split()  nocachecmds = 'about serve repoconfig userconfig'.split()    class HgExtension(nautilus.MenuProvider,   nautilus.ColumnProvider,   nautilus.InfoProvider,   nautilus.PropertyPageProvider):     def __init__(self):   self.cacherepo = None   self.cacheroot = None     # check if nautilus-thg.py is a symlink first   pfile = __file__   if pfile.endswith('.pyc'):   pfile = pfile[:-1]   path = os.path.dirname(os.path.realpath(pfile))   thgpath = os.path.normpath(os.path.join(path, '..'))   testpath = os.path.join(thgpath, 'tortoise')   if os.path.isdir(testpath):   if thgpath not in sys.path:   sys.path.insert(0, thgpath)   else:   # try environment or hard-coded path   thgpath = os.environ.get('TORTOISEHG_PATH', TORTOISEHG_PATH)   thgpath = os.path.normpath(os.path.expanduser(thgpath))   if os.path.exists(thgpath) and thgpath not in sys.path:   sys.path.insert(0, thgpath)   # else assume tortoise is already in PYTHONPATH   try:   import tortoise.thgutil   import tortoise.menuthg   except ImportError, e:   # if thgutil is not found, then repository cannot be found   # if menuthg is not found, you have an older version in sys.path   print e   self.menu = None   return     self.env = os.environ   self.env['PYTHONPATH'] = ':'.join(sys.path)   self.env['TORTOISEHG_PATH'] = thgpath   self.env['THG_ICON_PATH'] = os.path.join(thgpath, 'icons')     self.hgproc = os.path.join(thgpath, 'hgproc.py')   self.ipath = os.path.join(thgpath, 'icons', 'tortoise')   self.menu = tortoise.menuthg.menuThg()     def icon(self, iname):   return os.path.join(self.ipath, iname)     def get_path_for_vfs_file(self, vfs_file):   if vfs_file.get_uri_scheme() != 'file':   return None   return urllib.unquote(vfs_file.get_uri()[7:])     def get_repo_for_path(self, path):   '''   Find mercurial repository for vfs_file   Returns hg.repo   '''   p = os.path.isdir(path) and path or os.path.dirname(path)   while not os.path.isdir(os.path.join(p, ".hg")):   oldp = p   p = os.path.dirname(p)   if p == oldp:   return None     if p == self.cacheroot:   return self.cacherepo   # Keep one repo cached   try:   self.cacheroot = p   self.cacherepo = hg.repository(ui.ui(), path=p)   return self.cacherepo   except RepoError:   self.cacheroot = None   self.cacherepo = None   return None    #start dialogs   def run_dialog(self, menuitem, hgcmd):   '''   hgcmd - hgproc subcommand   '''   cwd = self.cwd   repo = self.get_repo_for_path(cwd)     if hgcmd == 'vdiff':   diffcmd = repo.ui.config('tortoisehg', 'vdiff', None)   if diffcmd is None:   hgcmd = 'diff'   else:   cmdline = ['hg', diffcmd]   cmdline.extend(self.files)   subprocess.Popen(cmdline, shell=False, env=self.env, cwd=cwd)   return     cmdopts = [sys.executable, self.hgproc]   cmdopts += ['--command', hgcmd]     if hgcmd not in nofilecmds and self.files:   # Use temporary file to store file list (avoid shell command   # line limitations)   fd, tmpfile = tempfile.mkstemp(prefix="tortoisehg_filelist_")   os.write(fd, "\n".join(self.files))   os.close(fd)   cmdopts += ['--listfile', tmpfile, '--deletelistfile']     subprocess.Popen(cmdopts, cwd=cwd, env=self.env, shell=False)     if hgcmd not in nocachecmds:   # Remove cached repo object, dirstate may change   self.cacherepo = None   self.cacheroot = None     def buildMenu(self, vfs_files, bg):   '''Build menu'''   self.pos = 0   self.files = []   files = [self.get_path_for_vfs_file(f) for f in vfs_files]   if bg:   cwd = files[0]   files = []   repo = self.get_repo_for_path(cwd)   else:   f = files[0]   cwd = os.path.isdir(f) and f or os.path.dirname(f)   repo = self.get_repo_for_path(cwd)   if repo:   menus = self.menu.get_commands(repo, cwd, files)   for f in files: - self.files.append(util.canonpath(repo.root, cwd, f)) + cpath = util.canonpath(repo.root, cwd, f) + if cpath.startswith(cwd): + cpath = cpath[len(cwd+os.sep):] + self.files.append(cpath) + else: + self.files.append(f)   else:   menus = self.menu.get_norepo_commands(cwd, files)   self.cwd = cwd   return self._buildMenu(menus)     def _buildMenu(self, menus):   '''Build menu'''   items = []   for menu_info in menus:   idstr = 'HgNautilus::%02d' % self.pos   self.pos += 1   if menu_info.isSep():   # can not insert a separator till now   pass   elif menu_info.isSubmenu():   if nautilus.__dict__.get('Menu'):   item = nautilus.MenuItem(idstr, menu_info.menutext,   menu_info.helptext)   submenu = nautilus.Menu()   item.set_submenu(submenu)   for subitem in self._buildMenu(menu_info.get_menus()):   submenu.append_item(subitem)   items.append(item)   else: #submenu not suported   for subitem in self._buildMenu(menu_info.get_menus()):   items.append(subitem)   else:   if menu_info.state:   item = nautilus.MenuItem(idstr,   menu_info.menutext,   menu_info.helptext,   self.icon(menu_info.icon))   item.connect('activate', self.run_dialog, menu_info.hgcmd)   items.append(item)   return items     def get_background_items(self, window, vfs_file):   '''Build context menu for current directory'''   if vfs_file and self.menu:   return self.buildMenu([vfs_file], True)     def get_file_items(self, window, vfs_files):   '''Build context menu for selected files/directories'''   if vfs_files and self.menu:   return self.buildMenu(vfs_files, False)     def get_columns(self):   return nautilus.Column("HgNautilus::80hg_status",   "hg_status",   "HG Status",   "Version control status"),     def _get_file_status(self, repo, localpath):   emblem = None   status = '?'     # This is not what the API is optimized for, but this appears   # to work efficiently enough   matcher = match.always(repo.root, localpath)   changes = repo.dirstate.status(matcher, True, True, True)   (lookup, modified, added, removed, deleted, unknown,   ignored, clean) = changes     if localpath in clean:   emblem = 'default'   status = 'clean'   elif localpath in modified:   emblem = 'cvs-modified'   status = 'modified'   elif localpath in added:   emblem = 'cvs-aded'   status = 'added'   elif localpath in unknown:   emblem = 'new'   status = 'unrevisioned'   elif localpath in ignored:   status = 'ignored'   elif localpath in deleted:   # Should be hard to reach this state   emblem = 'stockmail-priority-high'   status = 'deleted'   return emblem, status       def update_file_info(self, file):   '''Return emblem and hg status for this file'''   path = self.get_path_for_vfs_file(file)   if path is None or file.is_directory():   return   repo = self.get_repo_for_path(path)   if repo is None:   return   localpath = path[len(repo.root)+1:]   emblem, status = self._get_file_status(repo, localpath)   if emblem is not None:   file.add_emblem(emblem)   file.add_string_attribute('hg_status', status)     # property page borrowed from http://www.gnome.org/~gpoo/hg/nautilus-hg/   def __add_row(self, row, label_item, label_value):   label = gtk.Label(label_item)   label.set_use_markup(True)   label.set_alignment(1, 0)   self.table.attach(label, 0, 1, row, row + 1, gtk.FILL, gtk.FILL, 0, 0)   label.show()     label = gtk.Label(label_value)   label.set_use_markup(True)   label.set_alignment(0, 1)   label.show()   self.table.attach(label, 1, 2, row, row + 1, gtk.FILL, 0, 0, 0)     def get_property_pages(self, vfs_files):   if len(vfs_files) != 1:   return   file = vfs_files[0]   path = self.get_path_for_vfs_file(file)   if path is None or file.is_directory():   return   repo = self.get_repo_for_path(path)   if repo is None:   return   localpath = path[len(repo.root)+1:]   emblem, status = self._get_file_status(repo, localpath)     # Get the information from Mercurial   ctx = repo.changectx(None).parents()[0]   try:   fctx = ctx.filectx(localpath)   rev = fctx.filelog().linkrev(fctx.filerev())   except:   rev = ctx.rev()   ctx = repo.changectx(rev)   node = short(ctx.node())   date = util.datestr(ctx.date(), '%Y-%m-%d %H:%M:%S %1%2')   parents = '\n'.join([short(p.node()) for p in ctx.parents()])   description = ctx.description()   user = ctx.user()   user = gobject.markup_escape_text(user)   tags = ', '.join(ctx.tags())   branch = ctx.branch()     self.property_label = gtk.Label('Mercurial')     self.table = gtk.Table(7, 2, False)   self.table.set_border_width(5)   self.table.set_row_spacings(5)   self.table.set_col_spacings(5)     self.__add_row(0, '<b>Status</b>:', status)   self.__add_row(1, '<b>Last-Commit-Revision</b>:', str(rev))   self.__add_row(2, '<b>Last-Commit-Description</b>:', description)   self.__add_row(3, '<b>Last-Commit-Date</b>:', date)   self.__add_row(4, '<b>Last-Commit-User</b>:', user)   if tags:   self.__add_row(5, '<b>Tags</b>:', tags)   if branch != 'default':   self.__add_row(6, '<b>Branch</b>:', branch)     self.table.show()   return nautilus.PropertyPage("MercurialPropertyPage::status",   self.property_label, self.table),
 
210
211
212
213
 
 
 
 
 
 
214
215
216
 
210
211
212
 
213
214
215
216
217
218
219
220
221
@@ -210,7 +210,12 @@
  # Convert filenames to be relative to cwd   files = []   for f in self.fnames: - files.append(util.canonpath(self.repo.root, cwd, f)) + cpath = util.canonpath(self.repo.root, cwd, f) + if cpath.startswith(cwd): + cpath = cpath[len(cwd+os.sep):] + files.append(cpath) + else: + files.append(f)   self.fnames = files   gpopts = "--command %s " % hgcmd   if filelist: