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

merge

Changeset c7fdbcb8e4f4

Parents 5a9659cbbf55

Parents 28698bc869d2

by Steve Borho

Changes to 11 files · Browse files at c7fdbcb8e4f4 Showing diff from parent 5a9659cbbf55 28698bc869d2 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgignore.py Stacked
 
16
17
18
19
 
20
21
22
 
16
17
18
 
19
20
21
22
@@ -16,7 +16,7 @@
  def __init__(self, root='', fileglob=''):   'Initialize the Dialog'   gtk.Window.__init__(self, gtk.WINDOW_TOPLEVEL) - set_tortoise_icon(self, 'general.ico') + set_tortoise_icon(self, 'ignore.ico')     self.root = root   self.set_title('Ignore filter for ' + os.path.basename(root))
Change 1 of 1 Show Entire File hggtk/​rename.py Stacked
 
42
43
44
45
 
46
47
48
 
42
43
44
 
45
46
47
48
@@ -42,7 +42,7 @@
  def __init__(self, root=''):   'Initialize the Dialog'   gtk.Window.__init__(self, gtk.WINDOW_TOPLEVEL) - set_tortoise_icon(self, 'general.ico') + set_tortoise_icon(self, 'detect_rename.ico')     self.root = root   self.notify_func = None
 
43
44
45
46
 
47
48
49
 
43
44
45
 
46
47
48
49
@@ -43,7 +43,7 @@
  return ' '.join([root, 'shelve'])     def get_icon(self): - return 'menucommit.ico' + return 'shelve.ico'     def auto_check(self):   if self.test_opt('check'):
Added image
Added image
Added image
Change 1 of 1 Show Entire File icons/​tortoise/​svg/​detect_rename.svg Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
@@ -0,0 +1,474 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docname="detect_rename.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="C:\src\thg\new-icons\icons\tortoise\commit-32.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docbase="E:\src\thg\thg-icons\icons\tortoise" + style="display:inline"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 16 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="32 : 16 : 1" + inkscape:persp3d-origin="16 : 10.666667 : 1" + id="perspective2425" /> + <linearGradient + id="linearGradient3258"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3262" /> + <stop + id="stop3264" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3258" + id="linearGradient3277" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9294606,0,0,0.9470405,124.13397,334.79144)" + x1="18.748869" + y1="13.0625" + x2="14.660361" + y2="13.046666" /> + <linearGradient + id="linearGradient3244"> + <stop + style="stop-color:#fce94f;stop-opacity:1;" + offset="0" + id="stop3246" /> + <stop + id="stop3252" + offset="0.5" + style="stop-color:#fffce0;stop-opacity:1;" /> + <stop + style="stop-color:#fceb50;stop-opacity:1;" + offset="1" + id="stop3248" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3244" + id="linearGradient3280" + gradientUnits="userSpaceOnUse" + x1="10" + y1="13.0625" + x2="4.4375" + y2="13" + gradientTransform="translate(123.42857,334.07648)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5209"> + <stop + style="stop-color:#babdb6;stop-opacity:1;" + offset="0" + id="stop5211" /> + <stop + style="stop-color:#babdb6;stop-opacity:0;" + offset="1" + id="stop5213" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient5217" + x1="11.5" + y1="13" + x2="11.5" + y2="20" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3258" + id="linearGradient2796" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7244979,0,0,0.7360207,66.759522,97.151414)" + x1="18.748869" + y1="13.0625" + x2="14.660361" + y2="13.046666" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3244" + id="linearGradient2799" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7771798,0,0,0.7771798,66.216582,96.595762)" + x1="10" + y1="13.0625" + x2="4.4375" + y2="13" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3244" + id="linearGradient2806" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7771798,0,0,0.7771798,66.216582,96.595762)" + x1="10" + y1="13.0625" + x2="4.4375" + y2="13" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3258" + id="linearGradient2808" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7244979,0,0,0.7360207,66.759522,97.151414)" + x1="18.748869" + y1="13.0625" + x2="14.660361" + y2="13.046666" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient2429" + gradientUnits="userSpaceOnUse" + x1="11.5" + y1="13" + x2="11.5" + y2="20" + gradientTransform="matrix(0.5555556,0,0,0.625,47.976189,108.12111)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient5072" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5555556,0,0,0.625,47.976189,108.12111)" + x1="11.5" + y1="13" + x2="11.5" + y2="20" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient2456" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5555556,0,0,0.625,47.976189,108.12111)" + x1="11.5" + y1="13" + x2="11.5" + y2="20" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient2460" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5555556,0,0,0.625,47.976189,108.12111)" + x1="11.5" + y1="13" + x2="11.5" + y2="20" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient3255" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5555556,0,0,0.625,47.976189,108.12111)" + x1="11.5" + y1="13" + x2="11.5" + y2="20" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient3270" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5555556,0,0,0.625,47.976189,108.12111)" + x1="11.5" + y1="13" + x2="11.5" + y2="20" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + gridtolerance="3" + guidetolerance="10" + objecttolerance="10" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="22.226609" + inkscape:cy="5.8582992" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:snap-nodes="true" + inkscape:window-width="1024" + inkscape:window-height="719" + inkscape:window-x="22" + inkscape:window-y="22" + inkscape:snap-global="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:grid-bbox="false" + inkscape:bbox-paths="false"> + <inkscape:grid + type="xygrid" + id="grid2898" + visible="true" + enabled="true" + empspacing="2" + dotted="false" + spacingx="0.5px" + spacingy="0.5px" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Status</dc:title> + <dc:date>2008-04-16</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Peer Sommerlund</dc:title> + </cc:Agent> + </dc:creator> + <dc:description>Icon for TortoiseHg dialog &quot;File Status&quot;</dc:description> + </cc:Work> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Bitmap" + style="display:none"> + <image + y="0" + x="0" + id="image2738" + height="32" + width="32" + sodipodi:absref="C:\src\thg\new-icons\icons\tortoise\menushowchanged.ico" + xlink:href="menushowchanged.ico" /> + </g> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Document" + style="display:inline"> + <g + style="display:inline" + id="g3247" + transform="matrix(2.8311352,0,0,2.4632823,-139.50305,-277.2711)"> + <path + style="fill:#eeeeec;stroke:#204a87;stroke-width:0.50375551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + d="M 50.894735,114.18549 L 55.921434,114.18549 L 58.390979,116.66779 L 58.390979,123.68173 L 50.894735,123.68173 L 50.894735,114.18549 z" + id="path3249" + sodipodi:nodetypes="cccccc" /> + <rect + style="fill:url(#linearGradient3270);fill-opacity:1;stroke:none;stroke-width:1.04799998;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect3251" + width="5.0000005" + height="5" + x="52.142857" + y="115.93361" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:#204a87;stroke-width:0.52666515;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 55.90619,114.19694 L 58.379524,116.67028 L 55.90619,116.67028 L 55.90619,114.19694 z" + id="path3253" + sodipodi:nodetypes="cccc" /> + </g> + </g> + <g + inkscape:label="Version0" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-49.142857,-92.933609)" + style="display:inline"> + <g + id="g2801" + transform="matrix(0.8599658,0,0,0.8599658,42.548877,23.546225)"> + <path + sodipodi:nodetypes="ccsccc" + id="path3239" + d="M 68.135245,99.291604 C 68.136442,103.7721 68.135245,108.6232 68.135245,112.91654 C 68.135245,113.9958 70.764102,114.88377 73.98838,114.88377 C 77.212658,114.88377 79.841516,113.9958 79.841516,112.91654 L 79.841516,99.291604 L 68.135245,99.291604 z" + style="fill:url(#linearGradient2806);fill-opacity:1;stroke:#c4a000;stroke-width:0.75272214;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccsccc" + id="path3254" + d="M 68.548122,99.704481 C 68.549244,103.94769 68.548122,108.54189 68.548122,112.60785 C 68.548122,113.62995 70.998782,114.4709 74.004496,114.4709 C 77.458047,114.4709 79.426426,113.69864 79.460872,112.88262 L 79.460872,99.704481 L 68.548122,99.704481 z" + style="opacity:0.52999998;fill:url(#linearGradient2808);fill-opacity:1;stroke:none;stroke-width:0.96853024;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(0.7684215,0,0,0.7373436,66.245556,97.09995)" + d="M 17.67767,2.4782917 A 7.601398,2.6516504 0 1 1 2.474874,2.4782917 A 7.601398,2.6516504 0 1 1 17.67767,2.4782917 z" + sodipodi:ry="2.6516504" + sodipodi:rx="7.601398" + sodipodi:cy="2.4782917" + sodipodi:cx="10.076272" + id="path2266" + style="fill:#fff08b;fill-opacity:1;stroke:#c4a000;stroke-width:1;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + </g> + <g + id="g5331" + transform="matrix(1.3628204,0,0,1.1944633,-22.22362,-25.118443)"> + <path + sodipodi:nodetypes="cccsssccsssc" + id="path5314" + d="M 65.642857,115.43361 L 70.642857,115.43361 L 70.642857,113.43361 C 70.642857,112.2514 71.480435,111.66205 72.642857,110.43361 C 73.806191,109.2042 74.642857,108.43361 74.642857,105.93361 C 74.642857,102.43361 71.634672,100.43361 68.642857,100.43361 C 64.142857,100.43361 61.642857,102.43361 61.642857,108.43361 L 65.642857,108.43361 C 65.642857,107.46769 66.142857,104.93361 68.142857,104.93361 C 69.642857,104.93361 70.142857,105.43361 70.142857,106.93361 C 70.142857,108.43361 67.064811,110.5897 66.142857,112.43361 C 65.642857,113.43361 65.689956,113.54853 65.642857,115.43361 z" + style="fill:#8ae234;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + transform="matrix(0.9277078,0,0,0.923249,50.784482,95.274515)" + d="M 22.5,27.75 A 3.25,2.75 0 1 1 16,27.75 A 3.25,2.75 0 1 1 22.5,27.75 z" + sodipodi:ry="2.75" + sodipodi:rx="3.25" + sodipodi:cy="27.75" + sodipodi:cx="19.25" + id="path5316" + style="opacity:1;fill:#8ae234;fill-opacity:1;stroke:#2e3436;stroke-width:1.04799998;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" /> + </g> + <rect + style="opacity:1;fill:#888a85;fill-opacity:1;stroke:#2e3436;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5056" + width="7.999999" + height="3" + x="51.642857" + y="105.43361" /> + <g + id="g2444" + transform="matrix(0.5294118,0,0,0.4285714,25.86134,83.176352)"> + <rect + style="opacity:1;fill:#888a85;fill-opacity:1;stroke:#2e3436;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect2434" + width="8.5" + height="4" + x="75.14286" + y="132.43361" /> + <rect + y="138.93361" + x="75.14286" + height="4" + width="8.5" + id="rect2436" + style="opacity:1;fill:#888a85;fill-opacity:1;stroke:#2e3436;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="translate(40,9)" + id="g2448"> + <path + sodipodi:nodetypes="cccccc" + id="path2450" + d="M 50.894735,114.18549 L 55.921434,114.18549 L 58.390979,116.66779 L 58.390979,123.68173 L 50.894735,123.68173 L 50.894735,114.18549 z" + style="fill:#eeeeec;stroke:#204a87;stroke-width:0.50375551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" /> + <rect + y="115.93361" + x="52.142857" + height="5" + width="5.0000005" + id="rect2452" + style="fill:url(#linearGradient2456);fill-opacity:1;stroke:none;stroke-width:1.04799998;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + id="path2454" + d="M 55.90619,114.19694 L 58.379524,116.67028 L 55.90619,116.67028 L 55.90619,114.19694 z" + style="fill:#d3d7cf;fill-opacity:1;stroke:#204a87;stroke-width:0.52666515;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <rect + y="111.43361" + x="51.642857" + height="3" + width="7.999999" + id="rect3245" + style="opacity:1;fill:#888a85;fill-opacity:1;stroke:#2e3436;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + inkscape:groupmode="layer" + id="layer3" + inkscape:label="Version1" + style="display:none"> + <g + style="display:inline" + transform="matrix(0.468981,0,0,0.4158704,-17.188515,-34.671552)" + id="g2438"> + <path + style="fill:#8ae234;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 65.642857,115.43361 L 70.642857,115.43361 L 70.642857,113.43361 C 70.642857,112.2514 71.480435,111.66205 72.642857,110.43361 C 73.806191,109.2042 74.642857,108.43361 74.642857,105.93361 C 74.642857,102.43361 71.634672,100.43361 68.642857,100.43361 C 64.142857,100.43361 61.642857,102.43361 61.642857,108.43361 L 65.642857,108.43361 C 65.642857,107.46769 66.142857,104.93361 68.142857,104.93361 C 69.642857,104.93361 70.142857,105.43361 70.142857,106.93361 C 70.142857,108.43361 67.064811,110.5897 66.142857,112.43361 C 65.642857,113.43361 65.689956,113.54853 65.642857,115.43361 z" + id="path2440" + sodipodi:nodetypes="cccsssccsssc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#8ae234;fill-opacity:1;stroke:#2e3436;stroke-width:1.04799998;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2442" + sodipodi:cx="19.25" + sodipodi:cy="27.75" + sodipodi:rx="3.25" + sodipodi:ry="2.75" + d="M 22.5,27.75 A 3.25,2.75 0 1 1 16,27.75 A 3.25,2.75 0 1 1 22.5,27.75 z" + transform="matrix(0.9277078,0,0,0.923249,50.784482,95.274515)" /> + </g> + <g + style="display:inline" + id="g5067" + transform="translate(-30.642857,-100.93361)"> + <path + style="fill:#eeeeec;stroke:#204a87;stroke-width:0.50375551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + d="M 50.894735,114.18549 L 55.921434,114.18549 L 58.390979,116.66779 L 58.390979,123.68173 L 50.894735,123.68173 L 50.894735,114.18549 z" + id="path2816" + sodipodi:nodetypes="cccccc" /> + <rect + style="fill:url(#linearGradient5072);fill-opacity:1;stroke:none;stroke-width:1.04799998;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2818" + width="5.0000005" + height="5" + x="52.142857" + y="115.93361" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:#204a87;stroke-width:0.52666515;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 55.90619,114.19694 L 58.379524,116.67028 L 55.90619,116.67028 L 55.90619,114.19694 z" + id="path2820" + sodipodi:nodetypes="cccc" /> + </g> + <g + style="display:inline" + transform="translate(-47.642857,-100.93361)" + id="g2424"> + <path + style="fill:#eeeeec;stroke:#204a87;stroke-width:0.50375551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + d="M 50.894733,114.18549 C 52.5703,114.18549 54.245866,114.18549 55.921432,114.18549 C 56.744615,115.01293 57.567797,115.84036 58.39098,116.66779 C 58.39098,119.00577 58.39098,121.34375 58.39098,123.68173 C 55.892231,123.68173 53.393482,123.68173 50.894733,123.68173 C 50.894733,120.51632 50.894733,117.35091 50.894733,114.18549 z" + id="path2426" /> + <path + style="fill:url(#linearGradient2460);fill-opacity:1;stroke:none;stroke-width:1.04799998;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 52.142857,115.93361 C 53.809523,115.93361 55.47619,115.93361 57.142857,115.93361 C 57.142857,117.60028 57.142857,119.26694 57.142857,120.93361 C 55.47619,120.93361 53.809523,120.93361 52.142857,120.93361 C 52.142857,119.26694 52.142857,117.60028 52.142857,115.93361 z" + id="rect2428" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:#204a87;stroke-width:0.52666515;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 55.906189,114.19694 C 56.730634,115.02139 57.555079,115.84583 58.379524,116.67028 C 57.555079,116.67028 56.730634,116.67028 55.906189,116.67028 C 55.906189,115.84583 55.906189,115.02139 55.906189,114.19694 z" + id="path2430" /> + </g> + </g> +</svg>
Change 1 of 1 Show Entire File icons/​tortoise/​svg/​ignore.svg Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@@ -0,0 +1,191 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docname="ignore.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3178"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop3180" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop3182" /> + </linearGradient> + <linearGradient + id="linearGradient3162"> + <stop + style="stop-color:#0c7704;stop-opacity:1;" + offset="0" + id="stop3164" /> + <stop + style="stop-color:#152a01;stop-opacity:1;" + offset="1" + id="stop3166" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective10" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3162" + id="radialGradient3168" + cx="7.9865141" + cy="16.43379" + fx="7.9865141" + fy="16.43379" + r="7.8457492" + gradientTransform="matrix(1.1057099,9.443177e-2,-6.3894102e-2,0.7481418,0.1186391,3.6821519)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3178" + id="radialGradient3184" + cx="4.9979715" + cy="15.967546" + fx="4.9979715" + fy="15.967546" + r="0.45436105" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3178" + id="radialGradient3188" + gradientUnits="userSpaceOnUse" + cx="4.9979715" + cy="15.967546" + fx="4.9979715" + fy="15.967546" + r="0.45436105" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + gridtolerance="10000" + guidetolerance="10" + objecttolerance="10" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="21.787728" + inkscape:cx="4.8790666" + inkscape:cy="14.860554" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="981" + inkscape:window-height="705" + inkscape:window-x="44" + inkscape:window-y="44"> + <inkscape:grid + type="xygrid" + id="grid3174" + visible="true" + enabled="true" + empspacing="2" /> + <inkscape:grid + type="xygrid" + id="grid3176" + visible="true" + enabled="true" + spacingx="0.5px" + spacingy="0.5px" + empspacing="4" + color="#ff00fd" + opacity="0.1254902" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <cc:license + rdf:resource="http://creativecommons.org/licenses/publicdomain/" /> + <dc:title>Ignore</dc:title> + <dc:date>2009-02-28</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Peer Sommerlund</dc:title> + </cc:Agent> + </dc:creator> + <dc:description>&quot;Ignore&quot; icon for TortoiseHg</dc:description> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/publicdomain/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + id="path2383" + style="fill:url(#radialGradient3168);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 21.117339,21.514948 C 21,23.5 16,24 13,23.5 C 12,23 12,19.5 10.499085,18.999107 C 8.5425067,18.346148 9,22.5 8,22.5 C 3.2527158,21.253198 2.7985053,19.264251 2.5,17 L 2.6600506,13.167993 C 4.7790548,14.833072 8.3875147,16.418618 10.086337,16.784157 C 12.059285,17.291451 15.314308,17.65767 20.658797,17.7369 C 20.633274,18.82332 21.13767,20.889095 21.117339,21.514948 z" + sodipodi:nodetypes="cczcccccc" /> + <path + style="fill:#555753;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 20.5,18 C 23.046256,15.743183 25.653269,13.270899 27,10.5 L 27.5,13.5 L 27,15.5 L 27,11 C 25.512309,13.63386 22.761853,16.848887 20.765091,18.973676" + id="path2389" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#555753;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 2.4924745,13.821903 C 4.0994869,10.206606 6,8 8,6.5 L 9,8.5 L 8.5,9 L 7.2847922,7.1626742 C 5.0995989,8.7858042 3.8040756,10.696083 2.47639,12.833717" + id="path2391" + sodipodi:nodetypes="cccccc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient3184);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path3170" + sodipodi:cx="4.9979715" + sodipodi:cy="15.967546" + sodipodi:rx="0.45436105" + sodipodi:ry="0.45436105" + d="M 5.4523326,15.967546 A 0.45436105,0.45436105 0 1 1 4.5436105,15.967546 A 0.45436105,0.45436105 0 1 1 5.4523326,15.967546 z" + transform="matrix(1.6506697,0,0,1.6004464,-3.7500002,-9.2823828)" /> + <path + transform="matrix(1.65067,0,0,1.6506691,4.9999983,-7.6071358)" + d="M 5.4523326,15.967546 A 0.45436105,0.45436105 0 1 1 4.5436105,15.967546 A 0.45436105,0.45436105 0 1 1 5.4523326,15.967546 z" + sodipodi:ry="0.45436105" + sodipodi:rx="0.45436105" + sodipodi:cy="15.967546" + sodipodi:cx="4.9979715" + id="path3186" + style="opacity:1;fill:url(#radialGradient3188);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + </g> +</svg>
Change 1 of 1 Show Entire File icons/​tortoise/​svg/​shelve.svg Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@@ -0,0 +1,278 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docname="shelve.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="C:\src\thg\new-icons\icons\tortoise\commit-32.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docbase="E:\src\thg\thg-icons\icons\tortoise" + style="display:inline"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 16 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="32 : 16 : 1" + inkscape:persp3d-origin="16 : 10.666667 : 1" + id="perspective2425" /> + <linearGradient + id="linearGradient3258"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3262" /> + <stop + id="stop3264" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3258" + id="linearGradient3277" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9294606,0,0,0.9470405,124.13397,334.79144)" + x1="18.748869" + y1="13.0625" + x2="14.660361" + y2="13.046666" /> + <linearGradient + id="linearGradient3244"> + <stop + style="stop-color:#fce94f;stop-opacity:1;" + offset="0" + id="stop3246" /> + <stop + id="stop3252" + offset="0.5" + style="stop-color:#fffce0;stop-opacity:1;" /> + <stop + style="stop-color:#fceb50;stop-opacity:1;" + offset="1" + id="stop3248" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3244" + id="linearGradient3280" + gradientUnits="userSpaceOnUse" + x1="10" + y1="13.0625" + x2="4.4375" + y2="13" + gradientTransform="translate(123.42857,334.07648)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5209"> + <stop + style="stop-color:#babdb6;stop-opacity:1;" + offset="0" + id="stop5211" /> + <stop + style="stop-color:#babdb6;stop-opacity:0;" + offset="1" + id="stop5213" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient5217" + x1="11.5" + y1="13" + x2="11.5" + y2="20" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3258" + id="linearGradient2796" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7244979,0,0,0.7360207,66.759522,97.151414)" + x1="18.748869" + y1="13.0625" + x2="14.660361" + y2="13.046666" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3244" + id="linearGradient2799" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7771798,0,0,0.7771798,66.216582,96.595762)" + x1="10" + y1="13.0625" + x2="4.4375" + y2="13" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3244" + id="linearGradient2806" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7771798,0,0,0.7771798,66.216582,96.595762)" + x1="10" + y1="13.0625" + x2="4.4375" + y2="13" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3258" + id="linearGradient2808" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7244979,0,0,0.7360207,66.759522,97.151414)" + x1="18.748869" + y1="13.0625" + x2="14.660361" + y2="13.046666" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3244" + id="linearGradient2657" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7771798,0,0,0.7771798,66.216582,96.595762)" + x1="10" + y1="13.0625" + x2="4.4375" + y2="13" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3258" + id="linearGradient2659" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7244979,0,0,0.7360207,66.759522,97.151414)" + x1="18.748869" + y1="13.0625" + x2="14.660361" + y2="13.046666" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient2661" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5555556,0,0,0.625,47.976189,108.12111)" + x1="11.5" + y1="13" + x2="11.5" + y2="20" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5209" + id="linearGradient2671" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5555556,0,0,0.625,47.976189,108.12111)" + x1="11.5" + y1="13" + x2="11.5" + y2="20" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + gridtolerance="3" + guidetolerance="10" + objecttolerance="10" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="2.164109" + inkscape:cy="7.4001473" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:snap-nodes="true" + inkscape:window-width="1024" + inkscape:window-height="719" + inkscape:window-x="100" + inkscape:window-y="132" + inkscape:snap-global="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:grid-bbox="false" + inkscape:bbox-paths="false"> + <inkscape:grid + type="xygrid" + id="grid2898" + visible="true" + enabled="true" + empspacing="2" + dotted="false" + spacingx="0.5px" + spacingy="0.5px" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Status</dc:title> + <dc:date>2008-04-16</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Peer Sommerlund</dc:title> + </cc:Agent> + </dc:creator> + <dc:description>Icon for TortoiseHg dialog &quot;File Status&quot;</dc:description> + </cc:Work> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Vector" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-49.142857,-92.933609)" + style="display:inline"> + <g + id="g2665" + transform="matrix(2.1249993,0,0,2.1,-55.470017,-143.33011)"> + <g + id="g2637"> + <path + style="fill:#eeeeec;stroke:#204a87;stroke-width:0.50375551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + d="M 50.894733,114.18549 C 52.5703,114.18549 54.245866,114.18549 55.921432,114.18549 C 56.744613,115.01293 57.567795,115.84036 58.39098,116.66779 C 58.39098,119.00577 58.39098,121.34375 58.39098,123.68173 C 55.892231,123.68173 53.393482,123.68173 50.894733,123.68173 C 50.894733,120.51632 50.894732,117.35089 50.894733,114.18549 z" + id="path2816" /> + <path + style="fill:url(#linearGradient2671);fill-opacity:1;stroke:none;stroke-width:1.04799998;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 52.142857,115.93361 C 53.809523,115.93361 55.47619,115.93361 57.142857,115.93361 C 57.142857,117.60028 57.142857,119.26694 57.142857,120.93361 C 55.47619,120.93361 53.809524,120.93361 52.142857,120.93361 C 52.142857,119.26694 52.142858,117.60028 52.142857,115.93361 z" + id="rect2818" /> + </g> + <path + id="path2820" + d="M 55.906189,114.19694 C 56.730632,115.02139 57.55508,115.84583 58.379524,116.67028 C 57.555079,116.67028 56.730634,116.67028 55.906189,116.67028 C 55.906189,115.84583 55.906189,115.02139 55.906189,114.19694 z" + style="fill:#d3d7cf;fill-opacity:1;stroke:#204a87;stroke-width:0.52666515;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="1.1943898" + inkscape:original="M 62.8125 96.21875 L 62.8125 97.6875 L 70.78125 97.6875 L 62.625 107.78125 L 62.625 109.09375 L 73.15625 109.09375 L 73.15625 107.625 L 64.8125 107.625 L 72.9375 97.5625 L 72.9375 96.21875 L 62.8125 96.21875 z " + style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" + id="path2680" + d="M 62.6875,95.03125 C 62.082488,95.098524 61.624843,95.610009 61.625,96.21875 L 61.625,97.6875 C 61.628828,98.341746 62.158254,98.871172 62.8125,98.875 L 68.28125,98.875 L 61.6875,107.03125 C 61.521455,107.24563 61.43329,107.51012 61.4375,107.78125 L 61.4375,109.09375 C 61.441328,109.748 61.970754,110.27742 62.625,110.28125 L 73.15625,110.28125 C 73.810496,110.27742 74.339922,109.748 74.34375,109.09375 L 74.34375,107.625 C 74.339922,106.97075 73.810496,106.44133 73.15625,106.4375 L 67.3125,106.4375 L 73.875,98.3125 C 74.041045,98.098123 74.12921,97.833629 74.125,97.5625 L 74.125,96.21875 C 74.121172,95.564504 73.591746,95.035078 72.9375,95.03125 L 62.8125,95.03125 C 62.770862,95.029068 62.729138,95.029068 62.6875,95.03125 z" + transform="matrix(1,0,0,1.0132275,1.924107,9.8585116)" /> + </g> +</svg>
Show Entire File tortoise/​contextmenu.py Stacked
(No changes)
 
156
157
158
159
 
160
161
162
 
163
164
165
 
167
168
169
170
 
171
172
173
 
176
177
178
179
 
180
181
182
 
183
184
185
 
156
157
158
 
159
160
161
 
162
163
164
165
 
167
168
169
 
170
171
172
173
 
176
177
178
 
179
180
181
 
182
183
184
185
@@ -156,10 +156,10 @@
  if f.endswith('.hgignore'):   hashgignore = True   - if hashgignore: # needs ico + if hashgignore:   menu.append(TortoiseMenu(_("Edit Ignore Filter"),   _("Edit repository ignore filter"), - 'hgignore', icon="general.ico")) + 'hgignore', icon="ignore.ico"))     menu.append(TortoiseMenu(_("View File Status"),   _("Repository status"), @@ -167,7 +167,7 @@
    menu.append(TortoiseMenu(_("Shelve Changes"),   _("Shelve or unshelve repository changes"), - 'shelve', icon="general.ico")) # needs ico + 'shelve', icon="shelve.ico"))     # Visual Diff (any extdiff command)   has_vdiff = repo.ui.config('tortoisehg', 'vdiff', '') != '' @@ -176,10 +176,10 @@
  _("View changes using GUI diff tool"),   'vdiff', icon="TortoiseMerge.ico"))   - if len(files) == 0: # needs ico + if len(files) == 0:   menu.append(TortoiseMenu(_("Guess Renames"),   _("Detect renames and copies"), - 'guess', icon="general.ico")) + 'guess', icon="detect_rename.ico"))   elif len(files) == 1: # needs ico   menu.append(TortoiseMenu(_("Rename File"),   _("Rename file or directory"),