rFilter.add( "daterange" );
rFilter.add( "'" + RLOG_DATEFORMAT.format( startDate ) + "'-'" + RLOG_DATEFORMAT.format( endDate ) + "'" );
siRlog.addOption( new Option( "rfilter", rFilter ) );
siRlog.addOption( new Option( "cwd", sandboxDir ) );
// Execute the si rlog command
Response response = api.runCommand( siRlog );
for ( WorkItemIterator wit = response.getWorkItems(); wit.hasNext(); )
{
WorkItem wi = wit.next();
String memberName = wi.getContext();
// We're going to have to do a little dance to get the correct server file name
memberName = memberName.substring( 0, memberName.lastIndexOf( '/' ) );