~bialix/bzr-explorer/debug

111.1.4 by Ian Clatworthy
ini-file version of mapping metadata
1
# This is the mapping of logical commands to actual commands that
2
# Bazaar Explorer should use for the bzr-gtk application suite.
3
#
4
# The following placeholder names are permitted:
5
#
6
# * root - the root of the location (branch, checkout or repository)
7
# * selected - a space separated list of paths (relative to root)
8
# * filename - first selected item filename (relative to root)
9
# * dirname - first selected item directory name (relative to root)
10
# * basename - first selected item basename (relative to dirname)
205 by Ian Clatworthy
Correctly handle options added to the editor setting
11
# * EDITOR - preferred editor path and options
111.1.4 by Ian Clatworthy
ini-file version of mapping metadata
12
# * BZR_LOG - path to .bzr.log file
180 by Ian Clatworthy
Get right branch.conf for checkouts
13
# * branch_root - the root of the branch (for a checkout or branch)
111.1.4 by Ian Clatworthy
ini-file version of mapping metadata
14
#
15
# Placeholders are defined in templates using the format %(name)s.
16
#
17
# Before running local commands, the current working directory should
18
# be set to the root of the location. No assumptions should be made
19
# about the current working directory before running stateless
20
# commands or commands on remote locations.
21
22
[STATELESS]
173.1.1 by Ian Clatworthy
add New Branch and Open buttons
23
branch =             bzr gbranch %(filename)s
24
checkout =           bzr gcheckout %(filename)s
111.1.4 by Ian Clatworthy
ini-file version of mapping metadata
25
init =               bzr ginit
26
# Files
27
config:bazaar.conf = bzr gpreferences
235 by Ian Clatworthy
Show the system log using qviewer, not the user's editor
28
.bzr.log =           'bzr qviewer "%(BZR_LOG)s"'
111.1.4 by Ian Clatworthy
ini-file version of mapping metadata
29
# These aren't supported but ought to be
30
# version =            bzr gversion
31
32
[LOCAL]
33
annotate =  bzr gannotate %(filename)s
34
commit =    bzr gcommit %(selected)s
35
conflicts = bzr gconflicts
117 by Ian Clatworthy
remove editor launching for conflicts for now
36
diff =      bzr gdiff %(filename)s
111.1.4 by Ian Clatworthy
ini-file version of mapping metadata
37
info =      bzr ginfo
38
log =       bzr visualise %(selected)s
39
merge =     bzr gmerge
40
push =      bzr gpush
41
send =      bzr gsend
42
status =    bzr gstatus
43
tag =       bzr gtags
44
# These aren't supported but ought to be
45
# add =      bzr gadd %(selected)s
46
# list =     bzr gbrowse
47
# pull =     bzr qpull
48
# revert =   bzr qrevert %(selected)s
49
# update =   bzr qupdate
50
51
[REMOTE]
52
log =      bzr visualise %(root)s
53
# These aren't supported but ought to be
54
# info =     bzr ginfo %(root)s
55
# push =     bzr gpush -d%(root)s
56
# pull =     bzr gpull -d%(root)s
57
# tag =      bzr gtags %(root)s