| CODENOTIFIER | HelpYou are not signed inSign in |
Project: TortoiseSVN
Revision: 13811
Author: steveking
Date: 02 Sep 2008 14:42:12
Changes:Unescape the target folder names when checking out multiple urls.
Files:| ... | ...@@ -1761,8 +1761,11 @@ | |
| 1761 | 1761 | SetWindowText(sWindowTitle); |
| 1762 | 1762 | checkoutdir = m_targetPathList[0]; |
| 1763 | 1763 | if (urls.GetCount() > 1) |
| 1764 | checkoutdir.AppendPathString(urls[i].GetFileOrDirectoryName()); | |
| 1765 | ||
| 1764 | { | |
| 1765 | CString fileordir = urls[i].GetFileOrDirectoryName(); | |
| 1766 | fileordir = CPathUtils::PathUnescape(fileordir); | |
| 1767 | checkoutdir.AppendPathString(fileordir); | |
| 1768 | } | |
| 1766 | 1769 | CString sCmdInfo; |
| 1767 | 1770 | sCmdInfo.Format(IDS_PROGRS_CMD_CHECKOUT, |
| 1768 | 1771 | (LPCTSTR)urls[i].GetSVNPathString(), (LPCTSTR)m_Revision.ToString(), |
| ... | ...@@ -22,6 +22,8 @@ | |
| 22 | 22 | Version 1.5.4 |
| 23 | 23 | - BUG: Applying a patch where a context line had UTF-BOMs |
| 24 | 24 | in it failed. (Stefan) |
| 25 | - BUG: Checking out multiple folders from the repository browser failed | |
| 26 | to unescape the target folder. (Stefan) | |
| 25 | 27 | |
| 26 | 28 | Version 1.5.3 |
| 27 | 29 | - CHG: paths in error messages are nor truncated to 80 chars anymore. (Stefan) |