This file is indexed.

/usr/share/gps/plug-ins/subversion.xml is in gnat-gps-common 5.3dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
<?xml version="1.0"?>
<!--  Provides support for the Subversion configuration management system.

      It integrates into GPS's VCS support, and uses the same menus
      as all other VCS systems supported by GPS.
      You can easily edit this file if you would like to customize
      the svn commands that are sent for each of the menus.
-->

<GPS>

   <!-- SVN status -->

   <action name="generic_svn_status" show-command="false" output="none" category="">
      <shell>pwd</shell>
      <shell output="">echo "Querying status for files in %1"</shell>
      <external check-password="true">svn --non-interactive status -N -u -v $2-</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>VCS.status_parse "Subversion" "%1" "$1" FALSE "%3"</shell>
   </action>

   <!-- SVN status dir -->

   <action name="generic_svn_status_dir" show-command="false" output="none" category="">
      <shell>pwd</shell>
      <shell output="">echo "Querying status for %1"</shell>
      <external check-password="true">svn --non-interactive status --non-recursive -u -v .</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>VCS.status_parse "Subversion" "%1" "$1" FALSE "%3"</shell>
   </action>

   <!-- SVN status dir recursive -->

   <action name="generic_svn_status_dir_recursive" show-command="false" output="none" category="">
      <shell>pwd</shell>
      <shell output="">echo "Querying status for %1"</shell>
      <external check-password="true">svn --non-interactive status -u -v .</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>VCS.status_parse "Subversion" "%1" "$1" FALSE "%3"</shell>
   </action>

   <!-- SVN tag/branch -->

   <action name="generic_svn_create_tag" show-command="false" output="" category="">
      <shell output="none">VCS.repository_dir /tags/$2</shell>
      <shell output="none">VCS.repository_dir /tags/$2/$1</shell>
      <shell output="">echo "Create tag on %1"</shell>
      <external check-password="true" output="none">svn mkdir -m "New tag directory" "%3"</external>
      <external check-password="true" output="none">svn copy -m "New tag" "../$1" "%3"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
   </action>

   <action name="generic_svn_create_branch" show-command="false" output="" category="">
      <shell output="none">VCS.repository_dir /branches/$2</shell>
      <shell output="none">VCS.repository_dir /branches/$2/$1</shell>
      <shell>echo "Create branch on %1"</shell>
      <external check-password="true" output="none">svn mkdir -m "New branch directory" "%3"</external>
      <external check-password="true" output="none">svn copy -m "New branch" "../$1" "%3"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
   </action>

   <!-- SVN switch -->

   <action name="generic_svn_switch" show-command="false" output="" category="">
      <shell output="none">VCS.repository_dir $2</shell>
      <shell output="">echo "Switch to %1"</shell>
      <external check-password="true" output="none">svn switch %2</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
   </action>

   <!-- SVN annotate -->

   <action name="generic_svn_annotate" show-command="false" output="" category="">
      <shell>echo "Querying annotations for $1"</shell>
      <external check-password="true" output="none">svn --non-interactive annotate -v "$1"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell output="none">VCS.annotations_parse "Subversion" "$1" "%1"</shell>
   </action>

   <!-- SVN local status -->

   <action name="generic_svn_local_status" show-command="false" output="none" category="">
      <shell>pwd</shell>
      <external check-password="true">svn --non-interactive status --non-recursive -v .</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>VCS.status_parse "Subversion" "%1" FALSE TRUE "%2"</shell>
   </action>

   <!-- SVN commit -->

   <action name="generic_svn_commit" show-command="false" output="none" category="">
      <shell output="">echo "Committing file(s) $2-"</shell>
      <shell>dump "$1" TRUE</shell>
      <external check-password="true">svn --non-interactive commit --non-recursive -F "%1" $2-</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>delete "%2"</shell>
      <shell>dump "%2" TRUE</shell>
      <shell lang="python" output="">import subversion; subversion.status_from_commit("%1")</shell>
      <shell>delete "%2"</shell>
      <shell>Hook "file_changed_on_disk"</shell>
      <shell>Hook.run %1 null</shell>
   </action>

   <!-- SVN add -->

   <action name="generic_svn_add" show-command="false" output="none" category="">
      <shell output="">echo "adding file(s) $2-"</shell>
      <external check-password="true">svn add $2-</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>dump "$1" TRUE</shell>
      <external check-password="true">svn commit -F "%1" $2-</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>delete "%2"</shell>
   </action>

   <!-- SVN add (no commit) -->

   <action name="generic_svn_add_no_commit" show-command="false" output="none" category="">
      <shell output="">echo "adding (no commit) file(s) $2-"</shell>
      <external check-password="true">svn add --non-recursive $2-</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
   </action>

   <!-- SVN remove -->

   <action name="generic_svn_remove" show-command="false" output="none" category="">
      <shell output="">echo "removing file(s) $2-"</shell>
      <external check-password="true">svn --non-interactive remove $2-</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>dump "$1" TRUE</shell>
      <external check-password="true">svn commit -F "%1" $2-</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>delete "%2"</shell>
   </action>

   <!-- SVN remove (no commit) -->

   <action name="generic_svn_remove_no_commit" show-command="false" output="none" category="">
      <shell output="">echo "removing file(s) $2-"</shell>
      <external check-password="true">svn --non-interactive remove $2-</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
   </action>

   <!-- SVN history -->

   <action name="generic_svn_history" show-command="false" output="none" category="">
      <shell output="">echo "Querying history for $1"</shell>
      <external check-password="true">svn --non-interactive -v log --revision HEAD:0 "$1"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>VCS.revision_parse "Subversion" "$1" "%1"</shell>
      <shell>VCS.log_parse "Subversion" "$1" "%2"</shell>
   </action>

   <action name="generic_svn_history_text" show-command="false" output="none" category="">
      <shell output="">echo "Querying history for $1"</shell>
      <external check-password="true">svn --non-interactive log --revision HEAD:0 "$1"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>base_name "$1"</shell>
      <shell>dump "%2" TRUE</shell>
      <shell>Editor.edit "%1"</shell>
      <shell>Editor.set_title "%2" "Log for %3"</shell>
      <shell>Editor.set_writable "%3" FALSE</shell>
      <shell>MDI.split_vertically TRUE</shell>
      <shell>delete "%5"</shell>
   </action>

   <action name="generic_svn_history_rev" show-command="false" output="none" category="">
      <shell output="">echo "Querying history for $2"</shell>
      <external check-password="true">svn --non-interactive log -r$1 "$2"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>VCS.revision_parse "Subversion" "$2" "%1"</shell>
      <shell>VCS.log_parse "Subversion" "$2" "%2"</shell>
   </action>

   <!-- SVN update -->

   <action name="generic_svn_update" show-command="false" output="none" category="">
      <shell>pwd</shell>
      <external check-password="true" output="">svn --non-interactive update $*</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>Hook "file_changed_on_disk"</shell>
      <shell>Hook.run %1 null</shell>
      <shell>VCS.update_parse "Subversion" "%3" "%4"</shell>
   </action>

   <!-- SVN merge -->

   <action name="generic_svn_merge" show-command="false" output="none" category="">
      <shell>VCS.repository_path "$2"</shell>
      <shell>VCS.repository_path "$2" "$1"</shell>
      <external check-password="true" output="">svn --non-interactive merge "%2" "%1"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>Hook "file_changed_on_disk"</shell>
      <shell>Hook.run %1 null</shell>
   </action>

   <!-- SVN resolved -->

   <action name="generic_svn_resolved" show-command="false" output="none" category="">
      <external check-password="true" output="">svn resolved $*</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
   </action>

   <!-- SVN diff -->

   <action name="generic_svn_diff_patch" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison for $2 ..."</shell>
      <external check-password="true">svn --non-interactive diff --diff-cmd diff -x -c "$2"</external>
      <shell>dump_file "%1" "$1" FALSE</shell>
   </action>

   <action name="generic_svn_diff_head" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison for $1 ..."</shell>
      <external check-password="true">svn --non-interactive diff --diff-cmd diff -x --normal -rHEAD "$1"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>base_name "$1"</shell>
      <shell>dump "%2" TRUE</shell>
      <shell>File "%1"</shell>
      <shell>File "$1"</shell>
      <shell>Hook "diff_action_hook"</shell>
      <shell>Hook.run %1 "$1" null %2 %3 "%5 [HEAD]"</shell>
      <shell>delete "%5"</shell>
   </action>

   <action name="generic_svn_diff" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison for revision $1 of $2 ..."</shell>
      <external check-password="true">svn --non-interactive diff --diff-cmd diff -x --normal -r $1 "$2"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>base_name "$2"</shell>
      <shell>dump "%2" TRUE</shell>
      <shell>File "%1"</shell>
      <shell>File "$2"</shell>
      <shell>Hook "diff_action_hook"</shell>
      <shell>Hook.run %1 "$2" null %2 %3 "%5 [r$1]"</shell>
      <shell>delete "%5"</shell>
   </action>

   <action name="generic_svn_diff2" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison between revisions $1:$2 of $3 ..."</shell>
      <external check-password="true">svn --non-interactive cat -r$2 "$3"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>base_name "$3"</shell>
      <shell>dump_file "%2" "%1.[r$2]" FALSE</shell>
      <shell>File "%1"</shell>
      <shell>Editor.edit "%2"</shell>
      <shell>Editor.set_title %3 "%4 [r$2]" "%4 [r$2]"</shell>
      <shell>Editor.set_writable %4 FALSE</shell>
      <shell>VCS.set_reference %5 "$3"</shell>
      <external check-password="true">svn --non-interactive diff --diff-cmd diff -x --normal -r$1:$2 "$3"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>dump "%1" TRUE</shell>
      <shell>File "%1"</shell>
      <shell>Hook "diff_action_hook"</shell>
      <shell>Hook.run %1 "$3" null %9 %2 "%11 [r$1]"</shell>
      <shell>delete "%4"</shell>
      <shell>delete "%12"</shell>
   </action>

   <action name="generic_svn_diff_base_head" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison between revisions BASE:HEAD of $1 ..."</shell>
      <external check-password="true">svn --non-interactive cat -rHEAD "$1"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>base_name "$1"</shell>
      <shell>dump_file "%2" "%1.[rHEAD]" FALSE</shell>
      <shell>File "%1"</shell>
      <shell>Editor.edit "%2"</shell>
      <shell>Editor.set_title %3 "%4 [rHEAD]" "%4 [rHEAD]"</shell>
      <shell>VCS.set_reference %4 "$1"</shell>
      <external check-password="true">svn --non-interactive diff --diff-cmd diff -x --normal -rBASE:HEAD "$1"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>dump "%1" TRUE</shell>
      <shell>File "%1"</shell>
      <shell>Hook "diff_action_hook"</shell>
      <shell>Hook.run %1 "$1" null %8 %2 "%10 [rBASE]"</shell>
      <shell>delete "%4"</shell>
      <shell>delete "%11"</shell>
      <shell>Editor.set_writable %12 FALSE</shell>
   </action>

   <action name="generic_svn_diff_tag" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison for revision $1 of $2 ..."</shell>
      <shell output="">VCS.repository_path "$2"</shell>
      <shell output="">VCS.repository_path "$2" "$1"</shell>
      <external check-password="true">svn --non-interactive diff --diff-cmd diff -x --normal "%2" "%1"</external>

      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>base_name "$2"</shell>
      <shell>dump "%2" TRUE</shell>
      <shell>File "%1"</shell>
      <shell>File "$2"</shell>
      <shell>Hook "diff_action_hook"</shell>
      <shell>Hook.run %1 "$2" null %2 %3 "%5 [$1]"</shell>
      <shell>delete "%5"</shell>
   </action>

   <!-- SVN revert -->

   <action name="generic_svn_revert" show-command="false" output="none" category="">
      <external check-password="true" output="">svn revert $*</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>Hook "file_changed_on_disk"</shell>
      <shell>Hook.run %1 null</shell>
   </action>

   <!-- SVN revision -->

   <action name="generic_svn_revision" show-command="false" output="none" category="">
      <shell output="">echo "Getting $2 at revision $1"</shell>
      <external check-password="true" output="none">svn cat -r "$1" "$2"</external>
      <on-failure>
         <shell output="">echo_error "SVN error:"</shell>
         <shell output="">echo_error "%2"</shell>
         <shell lang="python" output="">ignored=[m.remove() for m in GPS.Message.list(category="Subversion errors")]</shell>
         <shell output="">Locations.parse "%4" "Subversion errors"</shell>
      </on-failure>
      <shell>base_name "$2"</shell>
      <shell>dump "%2"</shell>
      <shell>Editor.edit "%1"</shell>
      <shell>Editor.set_title "%2" "%3 [r$1]" "%3 [r$1]"</shell>
      <shell>Editor.set_writable "%3" FALSE</shell>
      <shell>delete "%4"</shell>
   </action>

   <!-- SVN -->

   <vcs name="Subversion"
        path_style="System_Default"
        group_queries_by_directory="TRUE"
        absolute_names="TRUE" atomic_commands="TRUE"
        commit_directory="TRUE"
        prev_revision="PREV"
	head_revision="HEAD"
	administrative_directory=".svn">
      <status_files       action="generic_svn_status"           label="Query status"/>
      <status_dir         action="generic_svn_status_dir"       label="Query status for directory"/>
      <status_dir_recursive
                action="generic_svn_status_dir_recursive"
                label="Query status for directory recursively"/>
      <local_status_files action="generic_svn_local_status"     label="Local status"/>
      <create_tag         action="generic_svn_create_tag"       label="Create tag"/>
      <create_branch      action="generic_svn_create_branch"    label="Create branch"/>
      <switch             action="generic_svn_switch"           label="Switch tag/branch"/>
      <update             action="generic_svn_update"           label="Update"/>
      <merge              action="generic_svn_merge"            label="Merge"/>
      <resolved           action="generic_svn_resolved"         label="Resolved"/>
      <commit             action="generic_svn_commit"           label="Commit"/>
      <history            action="generic_svn_history"          label="View entire revision history"/>
      <history_text       action="generic_svn_history_text"     label="View entire revision history (as text)"/>
      <history_revision   action="generic_svn_history_rev"      label="View specific revision history"/>
      <annotate           action="generic_svn_annotate"         label="Annotations"/>
      <add                action="generic_svn_add"              label="Add"/>
      <add_no_commit      action="generic_svn_add_no_commit"    label="Add, no commit"/>
      <remove             action="generic_svn_remove"           label="Remove"/>
      <remove_no_commit   action="generic_svn_remove_no_commit" label="Remove, no commit"/>
      <revert             action="generic_svn_revert"           label="Revert"/>
      <revision           action="generic_svn_revision"         label="View revision"/>
      <diff_patch         action="generic_svn_diff_patch"       label="Compare against head revision for building a patch file"/>
      <diff_head          action="generic_svn_diff_head"        label="Compare against head revision"/>
      <diff_base_head     action="generic_svn_diff_base_head"   label="Compare base against head"/>
      <diff               action="generic_svn_diff"             label="Compare against other revision"/>
      <diff_tag           action="generic_svn_diff_tag"         label="Compare against a tag/branch"/>
      <diff2              action="generic_svn_diff2"            label="Compare two revisions"/>

      <status label="Up to date" stock="gps-vcs-up-to-date" />
      <status label="Locally modified" stock="gps-vcs-modified" />
      <status label="Property modified" stock="gps-vcs-modified" />
      <status label="Needs merge" stock="gps-vcs-needs-merge" />
      <status label="Needs update" stock="gps-vcs-needs-update" />
      <status label="Contains merge conflicts" stock="gps-vcs-has-conflicts" />
      <status label="Removed" stock="gps-vcs-removed" />
      <status label="Added" stock="gps-vcs-added" />

      <status_parser>
         <regexp>(^|\n)([^\?S]........)\s+([0-9]+)\s+([0-9?]+)\s+([^\s]+)\s+([^\n]+)</regexp>

         <file_index>6</file_index>
         <status_index>2</status_index>
         <local_revision_index>3</local_revision_index>

         <status_matcher label="Up to date">(  .....[^\*][^\*])</status_matcher>
         <status_matcher label="Locally modified">(M......  )</status_matcher>
         <status_matcher label="Property modified">( M.......)</status_matcher>
         <status_matcher label="Needs update">([^M]......)(\*.|.\*)</status_matcher>
         <status_matcher label="Added">A........</status_matcher>
         <status_matcher label="Removed">D........</status_matcher>
         <status_matcher label="Needs merge">(M......)(\*.|.\*)</status_matcher>
         <status_matcher label="Contains merge conflicts">C........</status_matcher>
      </status_parser>

      <local_status_parser>
         <regexp>(^|\n)([^\?S]........)\s+([0-9]+)\s+([0-9?]+)\s+([^\s]+)\s+([^\n]+)</regexp>

         <file_index>6</file_index>
         <status_index>2</status_index>
         <local_revision_index>3</local_revision_index>

         <status_matcher label="Up to date">(  .....[^\*][^\*])</status_matcher>
         <status_matcher label="Locally modified">(M......  )</status_matcher>
         <status_matcher label="Property modified">( M.......)</status_matcher>
         <status_matcher label="Needs update">([^M]......)(\*.|.\*)</status_matcher>
         <status_matcher label="Added">A........</status_matcher>
         <status_matcher label="Removed">D........</status_matcher>
         <status_matcher label="Needs merge">(M......)(\*.|.\*)</status_matcher>
         <status_matcher label="Contains merge conflicts">C........</status_matcher>
      </local_status_parser>

      <update_parser>
         <regexp>(^|\n)([ADUCG])\s+([^\n]+)</regexp>

         <file_index>3</file_index>
         <status_index>2</status_index>

         <status_matcher label="Up to date">U</status_matcher>
         <status_matcher label="Locally modified">G</status_matcher>
         <status_matcher label="Added">A</status_matcher>
         <status_matcher label="Removed">D</status_matcher>
         <status_matcher label="Contains merge conflicts">C</status_matcher>
      </update_parser>

      <annotations_parser>
         <regexp>(\d[^\s]*)\s*([^ ]+)\s*([^ ]+)\s+([^ ]+)[^\(]+\(([^\)]+)\) (.*)(\n|$)</regexp>

         <repository_revision_index>1</repository_revision_index>
	 <author_index>2</author_index>
	 <date_index>3</date_index>
         <file_index>6</file_index>
	 <tooltip_pattern>Revision \1 on \5 \4, Author \2</tooltip_pattern>
      </annotations_parser>

      <log_parser>
         <regexp>----------\nr([^ ]+) \| ([^\|]+)\| (....-..-.. ..:..:..)[^\n]+\n((\n|[^-\n]+\n|.?.?.?.?.?[^-][^-][^-][^-][^-][^\n]*\n)*)</regexp>

         <repository_revision_index>1</repository_revision_index>
	 <author_index>2</author_index>
	 <date_index>3</date_index>
	 <log_index>4</log_index>
      </log_parser>

      <revision_parser>
         <regexp>----------\nr([^ ]+) [^\n]+\nChanged paths:\n   A ([^ ]+) \(from </regexp>
	 <sym_index>2</sym_index>
	 <repository_revision_index>1</repository_revision_index>
      </revision_parser>
   </vcs>
</GPS>