Changeset 19


Ignore:
Timestamp:
Mar 30, 2005, 9:40:03 AM (19 years ago)
Author:
arnault
Message:

Accept HEAD as a valid version directory - CL261

Location:
CMT/v1r19
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • CMT/v1r19/ChangeLog

    r18 r19  
     12005-03-30  Christian Arnault  <arnault@lal.in2p3.fr> 261
     2
     3        * source/cmt_system.cxx (is_version_directory): Accept HEAD/head as a valid version directory.
    14
    252005-03-30  Christian Arnault  <arnault@lal.in2p3.fr> 260
  • CMT/v1r19/mgr/cmt_dependencies.make

    r11 r19  
    2424cmt_regexp_cxx_dependencies =  ../source/cmt_regexp.cxx   ../source/cmt_std.h   ../source/cmt_string.h   ../source/cmt_regexp.h   ../source/cmt_vector.h   ../source/cmt_system.h
    2525cmt_model_cxx_dependencies =  ../source/cmt_model.cxx   ../source/cmt_std.h   ../source/cmt_string.h   ../source/cmt_vector.h   ../source/cmt_regexp.h   ../source/cmt_system.h   ../source/cmt_model.h   ../source/cmt.h   ../source/cmt_parser.h   ../source/cmt_fragment.h   ../source/cmt_map.h   ../source/cmt_include.h   ../source/cmt_script.h   ../source/cmt_pattern.h   ../source/cmt_scope_section.h   ../source/cmt_use.h   ../source/cmt_tag.h   ../source/cmt_symbol.h
    26 cmt_project_cxx_dependencies =  ../source/cmt_project.cxx   ../source/cmt_std.h   ../source/cmt_string.h   ../source/cmt_vector.h   ../source/cmt_regexp.h   ../source/cmt_system.h   ../source/cmt.h   ../source/cmt_parser.h   ../source/cmt_awk.h   ../source/cmt_project.h   ../source/cmt_branch.h   ../source/cmt_fragment.h   ../source/cmt_group.h   ../source/cmt_constituent.h   ../source/cmt_language.h   ../source/cmt_map.h   ../source/cmt_pattern.h   ../source/cmt_include.h   ../source/cmt_script.h   ../source/cmt_scope_section.h   ../source/cmt_use.h   ../source/cmt_tag.h   ../source/cmt_symbol.h   ../source/cmt_cmtpath_pattern.h   ../source/cmt_database.h   ../source/cmt_syntax.h
     26cmt_project_cxx_dependencies =  ../source/cmt_project.cxx   ../source/cmt_std.h   ../source/cmt_string.h   ../source/cmt_vector.h   ../source/cmt_regexp.h   ../source/cmt_system.h   ../source/cmt.h   ../source/cmt_parser.h   ../source/cmt_awk.h   ../source/cmt_project.h   ../source/cmt_branch.h   ../source/cmt_fragment.h   ../source/cmt_group.h   ../source/cmt_constituent.h   ../source/cmt_language.h   ../source/cmt_map.h   ../source/cmt_pattern.h   ../source/cmt_include.h   ../source/cmt_script.h   ../source/cmt_scope_section.h   ../source/cmt_use.h   ../source/cmt_tag.h   ../source/cmt_symbol.h   ../source/cmt_cmtpath_pattern.h   ../source/cmt_database.h   ../source/cmt_syntax.h   ../source/cmt_error.h
    2727cmt_syntax_cxx_dependencies =  ../source/cmt_syntax.cxx   ../source/cmt_std.h   ../source/cmt_string.h   ../source/cmt_vector.h   ../source/cmt_map.h   ../source/cmt_regexp.h   ../source/cmt_system.h   ../source/cmt.h   ../source/cmt_parser.h   ../source/cmt_include.h   ../source/cmt_script.h   ../source/cmt_pattern.h   ../source/cmt_scope_section.h   ../source/cmt_use.h   ../source/cmt_awk.h   ../source/cmt_project.h   ../source/cmt_syntax.h   ../source/cmt_tag.h   ../source/cmt_symbol.h   ../source/cmt_fragment.h   ../source/cmt_group.h   ../source/cmt_constituent.h   ../source/cmt_error.h   ../source/cmt_branch.h   ../source/cmt_language.h   ../source/cmt_cmtpath_pattern.h
    2828cmt_install_area_cxx_dependencies =  ../source/cmt_install_area.cxx   ../source/cmt_std.h   ../source/cmt_string.h   ../source/cmt_vector.h   ../source/cmt_regexp.h   ../source/cmt_system.h   ../source/cmt_parser.h   ../source/cmt.h   ../source/cmt_install_area.h   ../source/cmt_map.h   ../source/cmt_include.h   ../source/cmt_script.h   ../source/cmt_pattern.h   ../source/cmt_scope_section.h   ../source/cmt_use.h   ../source/cmt_awk.h   ../source/cmt_project.h   ../source/cmt_syntax.h   ../source/cmt_tag.h   ../source/cmt_symbol.h   ../source/cmt_cmtpath_pattern.h
  • CMT/v1r19/source/cmt_parser.cxx

    r18 r19  
    47194719           << " Me.m_current_tag=" << Me.m_current_tag
    47204720           << " cwd=" << CmtSystem::pwd ()
     4721           << " mode=" << Me.m_current_access
    47214722           << endl;
    47224723    }
  • CMT/v1r19/source/cmt_syntax.cxx

    r16 r19  
    973973  if (use != &(Use::current ()))
    974974    {
     975      if (Cmt::get_debug ())
     976        {
     977          cout << "parse_requirements_text> set UserMode" << endl;
     978        }
     979
    975980      Cmt::set_current_access (UserMode);
    976981    }
    977982  else
    978983    {
     984      if (Cmt::get_debug ())
     985        {
     986          cout << "parse_requirements_text> set DeveloperMode" << endl;
     987        }
     988
    979989      Cmt::set_current_access (DeveloperMode);
    980990    }
  • CMT/v1r19/source/cmt_system.cxx

    r18 r19  
    16021602                                      int& p)
    16031603{
     1604  if ((name == "HEAD") || (name == "head"))
     1605    {
     1606      v = 0;
     1607      r = 0;
     1608      p = 0;
     1609
     1610      return (true);
     1611    }
     1612
    16041613  static const cmt_string numbers = "0123456789";
    16051614
Note: See TracChangeset for help on using the changeset viewer.