Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Radmind Transcript Editor - case-insensitive transcripts #216

Open
pdarragh opened this issue Apr 18, 2009 · 2 comments
Open

Radmind Transcript Editor - case-insensitive transcripts #216

pdarragh opened this issue Apr 18, 2009 · 2 comments

Comments

@pdarragh
Copy link
Contributor

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;

Original comment by: reisswolf

@pdarragh
Copy link
Contributor Author

Fixed RXTranscript.m

Original comment by: reisswolf

@pdarragh
Copy link
Contributor Author

- priority: 5 —> 7

Original comment by: reisswolf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant