1 // TortoiseSVN - a Windows shell extension for easy version control
3 // Copyright (C) 2007-2008 - TortoiseSVN
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "CommitCommand.h"
21 #include "CommonResource.h"
22 #include "CommitDlg.h"
23 //#include "SVNProgressDlg.h"
24 #include "StringUtils.h"
26 #include "MessageBox.h"
29 CString
CommitCommand::LoadLogMessage()
32 if (parser
.HasKey(_T("logmsg")))
34 msg
= parser
.GetVal(_T("logmsg"));
36 if (parser
.HasKey(_T("logmsgfile")))
38 CString logmsgfile
= parser
.GetVal(_T("logmsgfile"));
39 CStringUtils::ReadStringFromTextFile(logmsgfile
, msg
);
44 bool CommitCommand::Execute()
46 CTGitPathList selectedList
;
47 if (parser
.HasKey(_T("logmsg")) && (parser
.HasKey(_T("logmsgfile"))))
49 CMessageBox::Show(hwndExplorer
, IDS_ERR_TWOLOGPARAMS
, IDS_APPNAME
, MB_ICONERROR
);
52 CString sLogMsg
= LoadLogMessage();
53 bool bSelectFilesForCommit
= !!DWORD(CRegStdWORD(_T("Software\\TortoiseGit\\SelectFilesForCommit"), TRUE
));
57 if (CHooks::Instance().StartCommit(pathList
, sLogMsg
, exitcode
, error
))
62 temp
.Format(IDS_ERR_HOOKFAILED
, (LPCTSTR
)error
);
63 CMessageBox::Show(hwndExplorer
, temp
, _T("TortoiseGit"), MB_ICONERROR
);
69 return !!CAppUtils::Commit( parser
.GetVal(_T("bugid")),
70 parser
.HasKey(_T("wholeproject")),
74 bSelectFilesForCommit
);