From 18cd2c66575aca8de8f24c109867210176185881 Mon Sep 17 00:00:00 2001 From: Brian Harring Date: Wed, 13 Mar 2013 13:55:30 -0700 Subject: Switch to final/prodcution config: cvs for co (avoids bugs in rcs), and UTF8 decoding as the first attempt --- config | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config b/config index 58d398b..57cd15f 100644 --- a/config +++ b/config @@ -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' -- cgit v1.2.3-65-gdbad