diff options
author | Brian Harring <ferringb@google.com> | 2013-03-13 13:55:30 -0700 |
---|---|---|
committer | Brian Harring <ferringb@google.com> | 2013-03-13 13:55:30 -0700 |
commit | 18cd2c66575aca8de8f24c109867210176185881 (patch) | |
tree | 2ab0731822f96eb973e628c0048d18356874fbef | |
parent | add missing create-git.sh run from the slow pathway (diff) | |
download | git-conversion-tools-18cd2c66575aca8de8f24c109867210176185881.tar.gz git-conversion-tools-18cd2c66575aca8de8f24c109867210176185881.tar.bz2 git-conversion-tools-18cd2c66575aca8de8f24c109867210176185881.zip |
Switch to final/prodcution config: cvs for co (avoids bugs in rcs), and UTF8 decoding as the first attempt
-rw-r--r-- | config | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -147,8 +147,8 @@ ctx.revision_recorder = SimpleFulltextRevisionRecorderAdapter( # how to invoke the "co" executable. # # Uncomment one of the two following lines: - RCSRevisionReader(co_executable=r'co'), - #CVSRevisionReader(cvs_executable=r'cvs'), + #RCSRevisionReader(co_executable=r'co'), + CVSRevisionReader(cvs_executable=r'cvs'), # The file in which to write the git-fast-import stream that # contains the file revision contents: @@ -183,7 +183,7 @@ ctx.trunk_only = True ctx.cvs_author_decoder = CVSTextDecoder( [ #'latin1', - #'utf8', + 'utf8', 'ascii', ], fallback_encoding='latin1' @@ -191,7 +191,7 @@ ctx.cvs_author_decoder = CVSTextDecoder( ctx.cvs_log_decoder = CVSTextDecoder( [ #'latin1', - #'utf8', + 'utf8', 'ascii', ], fallback_encoding='latin1' @@ -201,7 +201,7 @@ ctx.cvs_log_decoder = CVSTextDecoder( ctx.cvs_filename_decoder = CVSTextDecoder( [ #'latin1', - #'utf8', + 'utf8', 'ascii', ], #fallback_encoding='ascii' |