From: Oleg Broytman Date: Sun, 9 Jun 2013 23:15:11 +0000 (+0000) Subject: Show publisher and publisher-url if they are available X-Git-Url: https://git.phdru.name/?p=extfs.d.git;a=commitdiff_plain;h=e5b111d6a9c777c1ac23945eaca7fc826a7eee1f Show publisher and publisher-url if they are available git-svn-id: file:///home/phd/archive/SVN/mc-extfs/trunk@63 1a6e6372-1aea-0310-bd00-dc960550e1df --- diff --git a/torrent b/torrent index cfc1caa..6f1d91f 100755 --- a/torrent +++ b/torrent @@ -123,7 +123,8 @@ def mctorrent_list(): meta = [] for name in 'announce', 'announce-list', 'codepage', 'comment', \ - 'created by', 'creation date', 'encoding': + 'created by', 'creation date', 'encoding', \ + 'publisher', 'publisher-url': if name == 'comment' and 'comment.utf-8' in torrent: data = torrent['comment.utf-8'].decode('utf-8').encode(charset, 'replace') meta.append(('.META/' + name, len(data))) @@ -156,7 +157,8 @@ def mctorrent_copyout(): data = None for name in 'announce', 'announce-list', 'codepage', 'comment', \ - 'created by', 'creation date', 'encoding': + 'created by', 'creation date', 'encoding', \ + 'publisher', 'publisher-url': if name == 'comment' and 'comment.utf-8' in torrent: data = torrent['comment.utf-8'].decode('utf-8').encode(charset, 'replace') meta.append(('.META/' + name, len(data))) diff --git a/torrent-ANNOUNCE b/torrent-ANNOUNCE index e7979a3..34f31c4 100644 --- a/torrent-ANNOUNCE +++ b/torrent-ANNOUNCE @@ -7,7 +7,8 @@ Midnight Commander. WHAT'S NEW in version 1.1.0 (2013-06-10) - Use name.utf-8 and path.utf-8 if those are available. + Show publisher and publisher-url if they are available. + Use name.utf-8, path.utf-8 and comment.utf-8 if those are available. Use codepage instead of encoding if codepage is available and encoding is not.