Hi,
I'm trying to convert a VSS database for some days now. Here are some
things I've found out so far:
You need automake1.9, libtool and gcc3.3. It does not work with 4.0 or
4.1 yet.
The function TiXmlBase::PutString loops endlessly when it is fed some
odd foreign characters. I was able to solve that with this patch:
===================================================================
--- ssphys/utils/tinyxml.cpp (revision 192)
+++ ssphys/utils/tinyxml.cpp (working copy)
@@ -127,7 +127,7 @@
outString->append( buf, (int)strlen( buf ) );
++i;
}
- else if (isprint (c))
+ else
{
//char realc = (char) c;
//outString->append( &realc, 1 );
The conversion process now runs to completion but I did'nt get a useable
dumpfile. I've seen the following error messages. Especially that last
one looks like there is some issue with slash vs. backslash in
pathnames. Can someone please explain which of these error message are
fatal?
at /usr/local/bin/vss2svn.pl line 625
Attempt to delete unknown item 'QIDAAAAA':
at /usr/local/bin/vss2svn.pl line 625
Attempt to add entry 'TVHAAAAA' with unknown parent
at /usr/local/bin/vss2svn.pl line 625
Could not determine real path for 'LXHAAAAA':
IMPORTSVN:
Can't retrieve revisions from physical file 'QBJAAAAA'; it was either
destroyed or corrupted
Could not open export file './_vss2svn/vssdata/YB\YBAAAAAA.1'
at /usr/local/bin/vss2svn.pl line 755
Could not open export file './_vss2svn/vssdata/ZB\ZBAAAAAA.1'
at /usr/local/bin/vss2svn.pl line 755
_______________________________________________
vss2svn-users mailing list
Project homepage:
http://www.pumacode.org/projects/vss2svn/
Subscribe/Unsubscribe/Admin:
http://lists.pumacode.org/mailman/listinfo/vss2svn-users-lists.pumacode.org