tumstech / cc2svn

Automatically exported from code.google.com/p/cc2svn
0 stars 0 forks source link

svn dump file not processed #12

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Checkout branches/windows of cc2svn.py
2. set the paths and tools
3. run cc2svn

What is the expected output? What do you see instead?
generate a correct svndump.txt from cchistory.txt

What version of the product are you using? On what operating system?
latest branch checkout

Please provide any additional information below.
My understanding is that there are variables 
HISTORY_FIELD_SEPARATOR = "@@@"

HISTORY_LINE_SEPARATOR = "___HISTORY___"

specified in the code, and during dump processing, wrong variable is set?
with open(HISTORY_FILE, 'rb') as historyFile:
                for line in rlines(historyFile, HISTORY_LINE_SEPARATOR): # reading lines in reverse order
                    ccRecord = parser.processLine(line)

Original issue reported on code.google.com by Ajith.Th...@gmail.com on 2 Jun 2011 at 7:22

GoogleCodeExporter commented 9 years ago
I added all labels to be processed, and now I get a svndump file generated. Now 
to verify if it is correct.

Original comment by Ajith.Th...@gmail.com on 3 Jun 2011 at 12:31