]> git.phdru.name Git - mimedecode.git/history - mimedecode.py
Fix: Recode text from mailcap command from default encoding to charset
[mimedecode.git] / mimedecode.py
2017-08-27 Oleg BroytmanFix: Recode text from mailcap command from default...
2017-08-23 Oleg BroytmanUse subprocess.Popen instead of os.popen
2017-05-13 Oleg BroytmanFix(Python2): Do not decode bytes to unicode
2017-05-12 Oleg BroytmanReplace email.message._formatparam with _formatparam...
2016-08-03 Oleg BroytmanTest and report mailcap filter's errors
2016-08-03 Oleg BroytmanConvert body to the current charset for mailcap filter
2016-08-01 Oleg BroytmanDecode parameters on output
2016-08-01 Oleg BroytmanRefactor _decode_header
2016-08-01 Oleg BroytmanEncode/decode str/bytes for compatibility with Python 3
2016-08-01 Oleg BroytmanRemove excessive indent
2016-07-28 Oleg BroytmanUse bytes.decode() for Python 3 compatibility
2016-07-28 Oleg BroytmanImport email.header for Python 3 compatibility
2016-07-28 Oleg BroytmanUse 'key in dict' for Python 3 compatibility
2016-07-28 Oleg BroytmanUse raise Exception() for Python 3 compatibility
2016-07-28 Oleg BroytmanUse != instead of <> for Python 3 compatibility
2015-01-05 Oleg BroytmanMake options --save-* to save multipart subparts
2014-06-08 Oleg BroytmanAdd option -I to completely ignore a part
2014-06-08 Oleg BroytmanMake option -e to work with multipart messages
2014-06-08 Oleg BroytmanMake option -i to work with multipart messages
2014-06-08 Oleg BroytmanAllow saving a message or a subpart to more than one...
2014-05-25 Oleg BroytmanOpen all files in binary mode
2014-03-17 Oleg BroytmanAvoid calling get_content_maintype, just split ctype...
2014-03-17 Oleg BroytmanGuess filename extension for --save-* from the content...
2014-03-15 Oleg BroytmanDo not recode filename if it isn't recoded yet
2014-03-15 Oleg BroytmanCheck filenames for --save-* for forbidden characters
2014-03-13 Oleg BroytmanCreate the directory for the output files
2014-03-13 Oleg Broytmanopen_output_file
2014-03-13 Oleg BroytmanUse set_header to replace header's value in-place
2014-03-13 Oleg BroytmanInline _decode_header_param
2014-03-13 Oleg BroytmanInline recode
2014-03-12 Oleg BroytmanRaise error after saving the part
2014-03-12 Oleg BroytmanAllow -t 'text/*' -b 'image/*' -B '*/*'
2014-03-11 Oleg BroytmanReport actual content type; do not use quotes
2014-03-11 Oleg BroytmanAdd options --save-headers/body/message
2014-03-10 Oleg BroytmanAdd option -O to set the destination directory
2014-03-10 Oleg BroytmanRename gopts to g
2014-03-10 Oleg BroytmanRename get_opt to get_opts
2014-03-10 Oleg BroytmanFix a minor bug
2014-03-10 Oleg BroytmanRemove str() calls
2014-03-10 Oleg BroytmanAdd option -B to skip content-transfer-decoding
2014-03-10 Oleg BroytmanThe header for --set-param must exist
2014-03-09 Oleg BroytmanAdd option --set-param=header:param=value
2014-03-09 Oleg BroytmanAdd option --set-header=header:value
2014-03-08 Oleg BroytmanChange option -R to accept lists of headers and parameters
2014-03-08 Oleg BroytmanRemove option --remove-params
2014-03-08 Oleg BroytmanChange option -r to accept a list of headers; * is...
2014-03-08 Oleg BroytmanRefactor common code into _decode_headers_params
2014-03-08 Oleg BroytmanAllow * and exceptions for -p in the parameters lists
2014-03-08 Oleg BroytmanAllow * and exceptions for -p in the headers list
2014-03-08 Oleg BroytmanChange option -p to accept lists
2014-03-08 Oleg BroytmanChange option -d to decode all headers with exceptions
2014-03-08 Oleg BroytmanChange option -d to accept a list of headers
2014-03-02 Oleg BroytmanAdd a few comments
2014-02-26 Oleg BroytmanVersion 2.3.8 v2.3.8
2014-02-23 Oleg BroytmanUpdate usage help
2014-02-23 Oleg BroytmanRemove headers and parameters before decoding
2014-02-23 Oleg BroytmanAdd option -R to remove header's parameters
2014-02-23 Oleg BroytmanAdd option -r to remove headers
2014-02-21 Oleg BroytmanUse list/tuple directly instead of using types module
2014-02-19 Oleg BroytmanAdd "Mail-Followup-To" header to the list of headers...
2014-02-19 Oleg BroytmanAdd "Reply-To" header to the list of headers to decode...
2014-02-19 Oleg BroytmanAdd "Cc" header to the list of headers to decode by...
2014-02-19 Oleg BroytmanRevert "Fix a bug: compare real value from the tuple"
2014-02-18 Oleg BroytmanDecode "To" header by default
2014-02-18 Oleg BroytmanChange type guessing
2014-02-14 Oleg BroytmanFix a bug: compare real value from the tuple
2014-02-12 Oleg BroytmanDo not test if the message is multipart
2014-02-12 Oleg BroytmanSplit decode_message into decode_multipart
2014-02-10 Oleg BroytmanRefactor else+if to elif
2014-02-10 Oleg BroytmanRefactor decode_file
2014-02-05 Oleg BroytmanRefactoring: move subpart decoding inside decode_file
2014-02-05 Oleg BroytmanMinor refactoring: move 'boundary' inside 'if'
2014-02-05 Oleg BroytmanClose infile and outfile even after an exception
2014-02-05 Oleg BroytmanMake 'output' an alias for outfile.write
2014-02-02 Oleg BroytmanFix a bug: option -o without any parameters
2014-02-02 Oleg BroytmanTest stdin only
2014-02-01 Oleg BroytmanFix a bug - do not generate 'From ' headers in subparts
2014-02-01 Oleg BroytmanRename recode2 => recode_if_needed
2014-02-01 Oleg BroytmanAdd option --host
2014-01-30 Oleg BroytmanForbid filtering from console to console - show usage...
2014-01-30 Oleg BroytmanPrint more descriptive error messages
2014-01-30 Oleg BroytmanAdd option -o output_file
2014-01-30 Oleg BroytmanAdd an optional output file argument
2014-01-30 Oleg BroytmanCreate an alias gopts for GlobalOptions
2014-01-23 Oleg BroytmanUse \n instead of os.linesep
2014-01-23 Oleg BroytmanMinor refactoring
2014-01-23 Oleg BroytmanMake indent 4 spaces
2014-01-23 Oleg BroytmanMinor refactoring
2013-12-20 Oleg BroytmanRename __version__.py -> mimedecode_version.py
2013-12-18 Oleg BroytmanAllow installation without m_lib
2013-12-10 Oleg BroytmanVersion 2.1.4: add installation instruction in INSTALL.txt
2013-12-10 Oleg BroytmanVersion 2.1.3: minor bugfix
2013-07-26 Oleg BroytmanVersion 2.1.2: minor fix in Makefile
2012-05-01 Oleg BroytmanFixed version.
2012-04-15 Oleg BroytmanRemoved svn:keywords. Version 2.2.1.
2011-01-01 Oleg BroytmanVersion 2.2.0. BZipped archive.
2010-12-26 Oleg Broytmanphd.pp.ru => phdru.name.
2009-09-28 Oleg Broytman"BroytMann" => "Broytman".
2008-01-13 Oleg BroytmanEncoding => charset.
2006-04-27 Oleg BroytmanIgnore case comparing charsets.
next