Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Oct 2006 12:48:43 +0400
From:      Andrej Zverev <andrey.zverev@electro-com.ru>
To:        =?UTF-8?B?QW5kcsOpIE1hbG8=?= <nd@perlig.de>
Cc:        "Brian J. Creasy" <bcreasy@collaborativefusion.com>, netops@collaborativefusion.com, python@freebsd.org, az@freebsd.org, Tom McLaughlin <tmclaugh@sdf.lonestar.org>, "Brian A. Seklecki" <bseklecki@collaborativefusion.com>
Subject:   Re: [netops] Re: svnmailer issue
Message-ID:  <453498EB.3040400@electro-com.ru>
In-Reply-To: <200610170936.51269.nd@perlig.de>
References:  <4533E49D.2000005@collaborativefusion.com> <1161030243.37174.64.camel@soundwave.pgh.priv.collaborativefusion.com> <1161056944.5141.18.camel@localhost> <200610170936.51269.nd@perlig.de>

next in thread | previous in thread | raw e-mail | index | archive | help
Well, if it's patch is okay, let's ask portmrg to approve it and update
checksum.


André Malo пишет:
> * Tom McLaughlin wrote: 
>
>   
>> I don't use svnmailer and it's a little late here but is the attached
>> patch correct?
>>     
>
> Nope ;-)
> The "unicode" string is the type of the config parameter, which should not 
> be changed. 8bit is one of the values.
>
> I've attached another patch, which should change the default value to 8bit.
>
>   
>> In addition, the 1.0.6 tarball was rerolled.  Anyone have a copy of the
>> old one that can be compared to the new one to see what changes have
>> been made?  Maybe this secondary problem can wait until after freeze
>> since we have a copy of the distfile cached on the FBSD mirrors.
>>     
>
> That would be me. I had to reroll the archived versions after a harddisk 
> crash some months ago (only the current version was backupped). There's no 
> code change between them. Only some date strings in the docs and stuff like 
> that were changed.
>
> nd
>   
> ------------------------------------------------------------------------
>
> diff -Nur svnmailer-1.0.6~/src/lib/svnmailer/notifier/_textmail.py svnmailer-1.0.6/src/lib/svnmailer/notifier/_textmail.py
> --- svnmailer-1.0.6~/src/lib/svnmailer/notifier/_textmail.py	2006-02-04 20:22:10.000000000 +0100
> +++ svnmailer-1.0.6/src/lib/svnmailer/notifier/_textmail.py	2006-10-17 09:29:49.000000000 +0200
> @@ -137,7 +137,7 @@
>              u"base 64" : "B",
>              u"8bit"    : "8",
>              u"8 bit"   : "8",
> -        }.get((self.getTransferEncoding() or u'').lower(), 'Q'))
> +        }.get((self.getTransferEncoding() or u'').lower(), '8'))
>  
>          for mail in mails:
>              mail.update(headers)
>   





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?453498EB.3040400>