Created Codestriker topic at:
  
http://codestriker.sourceforge.net/cgi-bin/codestriker.pl?topic=5211135&action=view

  User: sits    
  Date: 05/06/19 03:56:08

  Modified:    .        CHANGELOG
               doc      codestriker.sgml
               lib/Codestriker/FileParser Parser.pm
  Log:
  * Filenames ending in ++, for example, filename.c++ could not be
    loaded into the system, due to a bug introduced in 1.8.5.
  
  
  
  Index: CHANGELOG
  ===================================================================
  RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v
  retrieving revision 1.171
  retrieving revision 1.172
  diff -u -r1.171 -r1.172
  --- CHANGELOG 22 May 2005 22:26:01 -0000      1.171
  +++ CHANGELOG 19 Jun 2005 10:55:54 -0000      1.172
  @@ -93,6 +93,9 @@
     "xbinary".  Also handled Perforce diffs which contain unidiff style
     '---' and '+++' header lines.  From Hope Duryea <[EMAIL PROTECTED]>.
   
  +* Filenames ending in ++, for example, filename.c++ could not be
  +  loaded into the system, due to a bug introduced in 1.8.5.
  +
   Version 1.8.5
   
   * Complete support for VSS repositories.  Topics linked to a VSS
  
  
  
  
  
  Index: codestriker.sgml
  ===================================================================
  RCS file: /cvsroot/codestriker/codestriker/doc/codestriker.sgml,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- codestriker.sgml  9 Jun 2005 23:33:15 -0000       1.49
  +++ codestriker.sgml  19 Jun 2005 10:56:00 -0000      1.50
  @@ -550,6 +550,10 @@
          slashes.</emphasis>
        </para>
        <para>
  +      If you are using Subversion, make sure the
  +      <varname>$svn</varname> setting is set to the correct path.
  +     </para>
  +     <para>
         If you are using Perforce, make sure the
         <varname>$p4</varname> setting is set to the correct path.
        </para>
  
  
  
  
  
  Index: Parser.pm
  ===================================================================
  RCS file: 
/cvsroot/codestriker/codestriker/lib/Codestriker/FileParser/Parser.pm,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- Parser.pm 16 Nov 2004 21:40:19 -0000      1.18
  +++ Parser.pm 19 Jun 2005 10:56:07 -0000      1.19
  @@ -170,8 +170,9 @@
       my @trimmed_diffs = ();
       foreach my $curr (@diffs) {
        if ($curr->{filename} =~ /\.([^\.]+)(,v)?$/o) {
  +         my $ext = $1;
            push @trimmed_diffs, $curr
  -             unless grep(/^$1$/, @Codestriker::exclude_file_types);
  +             unless grep { $_ eq $ext } @Codestriker::exclude_file_types;
        } else {
            # No extension on this file, add the diff in.
            push @trimmed_diffs, $curr;
  
  
  


-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
Codestriker-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/codestriker-commits

Reply via email to