~bialix/bzr-explorer/debug

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
# This is the mapping of logical commands to actual commands that
# Bazaar Explorer should use for the bzr-gtk application suite.
#
# The following placeholder names are permitted:
#
# * root - the root of the location (branch, checkout or repository)
# * selected - a space separated list of paths (relative to root)
# * filename - first selected item filename (relative to root)
# * dirname - first selected item directory name (relative to root)
# * basename - first selected item basename (relative to dirname)
# * EDITOR - preferred editor path and options
# * BZR_LOG - path to .bzr.log file
# * branch_root - the root of the branch (for a checkout or branch)
#
# Placeholders are defined in templates using the format %(name)s.
#
# Before running local commands, the current working directory should
# be set to the root of the location. No assumptions should be made
# about the current working directory before running stateless
# commands or commands on remote locations.

[STATELESS]
branch =             bzr gbranch %(filename)s
checkout =           bzr gcheckout %(filename)s
init =               bzr ginit
# Files
config:bazaar.conf = bzr gpreferences
.bzr.log =           'bzr qviewer "%(BZR_LOG)s"'
# These aren't supported but ought to be
# version =            bzr gversion

[LOCAL]
annotate =  bzr gannotate %(filename)s
commit =    bzr gcommit %(selected)s
conflicts = bzr gconflicts
diff =      bzr gdiff %(filename)s
info =      bzr ginfo
log =       bzr visualise %(selected)s
merge =     bzr gmerge
push =      bzr gpush
send =      bzr gsend
status =    bzr gstatus
tag =       bzr gtags
# These aren't supported but ought to be
# add =      bzr gadd %(selected)s
# list =     bzr gbrowse
# pull =     bzr qpull
# revert =   bzr qrevert %(selected)s
# update =   bzr qupdate

[REMOTE]
log =      bzr visualise %(root)s
# These aren't supported but ought to be
# info =     bzr ginfo %(root)s
# push =     bzr gpush -d%(root)s
# pull =     bzr gpull -d%(root)s
# tag =      bzr gtags %(root)s