}
public SVNLogEntrada getListaLogEntrada(String pathRecibo, long desdeRevisionRecibo)throws SVNException {
SVNEntrada entrada = this.repositorio.getEntry(pathRecibo, desdeRevisionRecibo);
SVNLogEntry logEntry = this.repositorio.log(pathRecibo, desdeRevisionRecibo);
SVNParametro parametroRutaParcial = configuracion.getParametro("RUTA_PARCIAL_DESDE");
String rutaParcial = null;
int indexRutaParcial = 0;
if ((parametroRutaParcial != null) && (parametroRutaParcial.getValor() != null)) // TRUNK
{
rutaParcial = (String) parametroRutaParcial.getValor();
indexRutaParcial = rutaParcial.length();
}
SVNLogEntrada logEntrada = new SVNLogEntrada(entrada, pathRecibo, logEntry);
logEntrada.setTipoEntrada(getLogEntradaTipo(logEntrada));
Iterator it = logEntry.getChangedPaths().keySet().iterator();
ArrayList<SVNLogRutaEntrada> logRutas = new ArrayList<SVNLogRutaEntrada>();
while (it.hasNext()) {
SVNLogEntryPath entryPath = (SVNLogEntryPath) logEntry.getChangedPaths().get(it.next());
SVNLogRutaEntrada logRutaEntrada = new SVNLogRutaEntrada(logEntrada, entryPath);
if ((rutaParcial != null)) // TRUNK
{
int indexFrom = logRutaEntrada.getRutaParcial().toUpperCase().lastIndexOf(rutaParcial);
if (indexFrom != -1)