~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/msgeditor.py

  • Committer: Aaron Bentley
  • Date: 2005-09-21 15:33:23 UTC
  • mto: (1185.1.37)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: abentley@panoramicfeedback.com-20050921153323-5db674d572d7649d
Fixed bug in distance-from-root graph operation

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
"""Commit message editor support."""
21
21
 
22
22
import os
23
 
import errno
24
23
from subprocess import call
25
 
 
26
 
import bzrlib.config as config
27
24
from bzrlib.errors import BzrError
28
25
 
29
26
def _get_editor():
30
27
    """Return a sequence of possible editor binaries for the current platform"""
 
28
    from bzrlib.osutils import _read_config_value
 
29
    
31
30
    try:
32
31
        yield os.environ["BZR_EDITOR"]
33
32
    except KeyError:
34
33
        pass
35
34
 
36
 
    e = config.GlobalConfig().get_editor()
 
35
    e = _read_config_value("editor")
37
36
    if e is not None:
38
37
        yield e
39
38
        
52
51
    """Try to execute an editor to edit the commit message."""
53
52
    for e in _get_editor():
54
53
        edargs = e.split(' ')
55
 
        try:
56
 
            x = call(edargs + [filename])
57
 
        except OSError, e:
58
 
           # ENOENT means no such editor
59
 
           if e.errno == errno.ENOENT:
60
 
               continue
61
 
           raise
 
54
        x = call(edargs + [filename])
62
55
        if x == 0:
63
56
            return True
64
57
        elif x == 127:
86
79
        ignoreline = "-- This line and the following will be ignored --"
87
80
        
88
81
    try:
89
 
        tmp_fileno, msgfilename = tempfile.mkstemp(prefix='bzr_log.', dir=u'.')
 
82
        tmp_fileno, msgfilename = tempfile.mkstemp()
90
83
        msgfile = os.close(tmp_fileno)
91
84
        if infotext is not None and infotext != "":
92
85
            hasinfo = True
121
114
            msg.append(line)
122
115
            
123
116
        if len(msg) == 0:
124
 
            return ""
 
117
            return None
125
118
        # delete empty lines at the end
126
119
        del msg[lastline:]
127
120
        # add a newline at the end, if needed
134
127
        try: os.unlink(msgfilename)
135
128
        except IOError: pass
136
129
 
137
 
 
138
 
def make_commit_message_template(working_tree, specific_files):
139
 
    """Prepare a template file for a commit into a branch.
140
 
 
141
 
    Returns a unicode string containing the template.
142
 
    """
143
 
    # TODO: Should probably be given the WorkingTree not the branch
144
 
    #
145
 
    # TODO: make provision for this to be overridden or modified by a hook
146
 
    #
147
 
    # TODO: Rather than running the status command, should prepare a draft of
148
 
    # the revision to be committed, then pause and ask the user to
149
 
    # confirm/write a message.
150
 
    from StringIO import StringIO       # must be unicode-safe
151
 
    from bzrlib.status import show_status
152
 
    status_tmp = StringIO()
153
 
    show_status(working_tree.branch, specific_files=specific_files, to_file=status_tmp)
154
 
    return status_tmp.getvalue()