Changeset 101


Ignore:
Timestamp:
Oct 17, 2005, 11:33:06 AM (20 years ago)
Author:
arnault
Message:

Fix back compatibility for cvs pluggin protocol see CL 287

Location:
CMT/HEAD
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r100 r101  
     12005-10-17    <arnault@lal.in2p3.fr> 287
     2
     3        * source/cmt_cvs.cxx (class CvsImplementation): Protect agains
     4        empty protocol level (for backward compatibility)
     5
    162005-10-15    <arnault@lal.in2p3.fr> 286
    27
    38        * source/cmt_project.cxx (use_action): Consider empty release for
    4         Windows (apparently dirs with two backslashes are not found??)
     9        Windows (test_directory on Windows does not work with a trailing
     10        backslash)
    511
    6122005-10-11  Christian Arnault  <arnault@lal.in2p3.fr> 285
  • CMT/HEAD/source/cmt_cvs.cxx

    r95 r101  
    336336     However old versions only offer as pattern:
    337337
    338      .cmtcvsinfos/
     338     .cmtcvsinfos
    339339
    340340     In this function we'll detect if the effective protocol level satisifies the
     
    367367    found = false;
    368368
    369     cmt_string pattern = ".cmtcvsinfos/";
    370     pattern += m_protocol_level;
     369    cmt_string pattern = ".cmtcvsinfos";
     370
     371    if (m_protocol_level != "")
     372      {
     373        pattern += "/";
     374        pattern += m_protocol_level;
     375      }
    371376
    372377    cmt_string loginfo;
Note: See TracChangeset for help on using the changeset viewer.