[go: up one dir, main page]

Menu

#198 Radmind Transcript Editor - case-insensitive transcripts

CVS Head
open
7
2009-04-18
2009-04-18
No

The Radmind Transcript Editor didn't generate case-insensitive transcripts if the Pref-Option is set and i add manually files to a transcript.
I found out that a Bug is in RXTranscript.m and the "-I" Option is not set in function readFile.

The problem could be fixed with replace the FSDIFF case with following:

case FSDIFF:
if ( recurse ) {
fsdiffType = @"-K/dev/null";
}
args = [ NSArray arrayWithObjects: @"-AExecuteCommand",
[ NSString stringWithFormat: @"-U%@",
[[ self delegate ] sessionUserName ]],
@"--", @"/usr/local/bin/fsdiff", nil ];

if ( [[ NSUserDefaults standardUserDefaults ] integerForKey:
@"RTECaseSensitive" ] == 0 ) {
args = [ args arrayByAddingObject: @"-I" ];
}
args = [ args arrayByAddingObjectsFromArray:
[ NSArray arrayWithObjects: @"-csha1", fsdiffType, arg1, nil ]];
break;

Discussion

  • Erik Lehmann

    Erik Lehmann - 2009-04-18

    Fixed RXTranscript.m

     
  • Erik Lehmann

    Erik Lehmann - 2009-04-18
    • priority: 5 --> 7
     

Log in to post a comment.