~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/msgeditor.py

  • Committer: Jonathan Lange
  • Date: 2007-04-23 01:30:35 UTC
  • mto: This revision was merged to the branch mainline in revision 2446.
  • Revision ID: jml@canonical.com-20070423013035-zuqiamuro8h1hba9
Can also set the bug config options in branch.conf

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 by Canonical Ltd
2
 
 
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
 
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
 
 
7
#
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
 
 
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
26
import bzrlib
27
27
import bzrlib.config as config
28
28
from bzrlib.errors import BzrError
 
29
from bzrlib.trace import warning, mutter
29
30
 
30
31
 
31
32
def _get_editor():
40
41
        yield e
41
42
        
42
43
    for varname in 'VISUAL', 'EDITOR':
43
 
        if os.environ.has_key(varname):
 
44
        if varname in os.environ:
44
45
            yield os.environ[varname]
45
46
 
46
47
    if sys.platform == 'win32':
56
57
    for e in _get_editor():
57
58
        edargs = e.split(' ')
58
59
        try:
 
60
            ## mutter("trying editor: %r", (edargs +[filename]))
59
61
            x = call(edargs + [filename])
60
62
        except OSError, e:
61
63
           # We're searching for an editor, so catch safe errors and continue
69
71
        else:
70
72
            break
71
73
    raise BzrError("Could not start any editor.\nPlease specify one with:\n"
72
 
                   " - $BZR_EDITOR\n - editor=/some/path in %s\n - $EDITOR" % \
 
74
                   " - $BZR_EDITOR\n - editor=/some/path in %s\n"
 
75
                   " - $VISUAL\n - $EDITOR" % \
73
76
                    config.config_filename())
74
77
 
75
78
 
77
80
    { 'bar' : '-' * 14, 'msg' : 'This line and the following will be ignored' }
78
81
 
79
82
 
80
 
def edit_commit_message(infotext, ignoreline=DEFAULT_IGNORE_LINE):
 
83
def edit_commit_message(infotext, ignoreline=DEFAULT_IGNORE_LINE,
 
84
                        start_message=None):
81
85
    """Let the user edit a commit message in a temp file.
82
86
 
83
87
    This is run if they don't give a message or
87
91
        Text to be displayed at bottom of message for
88
92
        the user's reference; currently similar to
89
93
        'bzr status'.
 
94
 
 
95
    ignoreline:
 
96
        The separator to use above the infotext.
 
97
 
 
98
    start_message:
 
99
        The text to place above the separator, if any. This will not be
 
100
        removed from the message after the user has edited it.
90
101
    """
91
102
    import tempfile
92
103
 
93
104
    msgfilename = None
94
105
    try:
95
106
        tmp_fileno, msgfilename = tempfile.mkstemp(prefix='bzr_log.', dir=u'.')
96
 
        msgfile = os.close(tmp_fileno)
97
 
        if infotext is not None and infotext != "":
98
 
            hasinfo = True
99
 
            msgfile = file(msgfilename, "w")
100
 
            msgfile.write("\n\n%s\n\n%s" % (ignoreline,
101
 
                infotext.encode(bzrlib.user_encoding, 'replace')))
 
107
        msgfile = os.fdopen(tmp_fileno, 'w')
 
108
        try:
 
109
            if start_message is not None:
 
110
                msgfile.write("%s\n" % start_message.encode(
 
111
                                           bzrlib.user_encoding, 'replace'))
 
112
 
 
113
            if infotext is not None and infotext != "":
 
114
                hasinfo = True
 
115
                msgfile.write("\n\n%s\n\n%s" % (ignoreline,
 
116
                              infotext.encode(bzrlib.user_encoding,
 
117
                                                    'replace')))
 
118
            else:
 
119
                hasinfo = False
 
120
        finally:
102
121
            msgfile.close()
103
 
        else:
104
 
            hasinfo = False
105
122
 
106
123
        if not _run_editor(msgfilename):
107
124
            return None
142
159
            try:
143
160
                os.unlink(msgfilename)
144
161
            except IOError, e:
145
 
                mutter("failed to unlink %s: %s; ignored", msgfilename, e)
 
162
                warning("failed to unlink %s: %s; ignored", msgfilename, e)
146
163
 
147
164
 
148
165
def make_commit_message_template(working_tree, specific_files):