Changeset 310
- Timestamp:
- 05/11/2007 01:44:41 PM
- Files:
-
- trunk/script/Vss2Svn/Dumpfile.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/script/Vss2Svn/Dumpfile.pm
r309 r310 408 408 return 0; 409 409 } 410 410 411 my $success = $self->{repository}->exists_parent ($newpath); 412 if(!defined($success)) { 413 $self->add_error("Attempt to move item '$itempath' to '$newpath' at " 414 . "revision $data->{revision_id}, but path consistency failure at dest"); 415 return 0; 416 } 417 elsif ($success == 0) { 418 $self->add_error("Parent path missing while trying to move " 419 . "item '$itempath' to '$newpath' at " 420 . "revision $data->{revision_id}: adding missing parents"); 421 $self->_create_svn_path ($nodes, $newpath); 422 } 423 411 424 my $node = Vss2Svn::Dumpfile::Node->new(); 412 425 $node->set_initial_props($itempath, $data);
