summaryrefslogtreecommitdiff
path: root/src/mime
Commit message (Expand)AuthorAgeFilesLines
* mime/quotedprintable: accept bytes >= 0x80Ian Lance Taylor2018-06-272-1/+7
* mime/multipart: restore 1.9 handling of missing/empty form-data file nameIan Lance Taylor2018-06-263-16/+3
* mime: change *.js mime type to application/javascript, not x-javascriptBrad Fitzpatrick2018-06-201-1/+1
* mime: add .wasm for builtinYasuhiro Matsumoto2018-06-151-0/+1
* mime/multipart: return error from NextPart if boundary is emptyConstantin Konstantinidis2018-06-142-1/+11
* all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper2018-06-012-3/+3
* mime: do a pre-allocation in encodeWordisharipo2018-05-151-0/+4
* mime: add wasm architectureRichard Musiol2018-04-131-1/+1
* all: use strings.Builder instead of bytes.Buffer where appropriateBrad Fitzpatrick2018-03-262-43/+20
* mime/multipart: test for presence of filename instead of content-typeHenry Clifford2018-03-103-2/+35
* all: unindent some if bodies by exiting earlyDaniel Martí2017-10-311-9/+9
* mime/multipart: permit empty file nameNils Larsgård2017-10-242-1/+28
* all: revert "all: prefer strings.IndexByte over strings.Index"Marvin Stenger2017-10-052-4/+4
* all: prefer strings.IndexByte over strings.IndexMarvin Stenger2017-09-252-4/+4
* mime: ignore key on ParseMediaType when value don't pass RFC 2231 checkGuilherme Rezende2017-08-292-10/+198
* mime/multipart: parse boundary with spaces properlyMichael Fraenkel2017-05-232-7/+15
* mime/multipart: Allow ReadForm to process large non-file partsSteven Hartland2017-05-222-9/+57
* mime: re-accept empty encoded-textHiroshi Ioka2017-04-292-4/+5
* mime: use sync.Map instead of RWMutex for type lookupsBryan C. Mills2017-04-281-52/+56
* mime: fix panic parsing 'encoded-word'Hiroshi Ioka2017-04-092-3/+4
* mime/multipart: add Size to FileHeaderJamie Stackhouse2017-04-012-1/+7
* mime: handling invalid mime media parametersAlexey Neganov2017-03-172-6/+22
* mime: fix panic parsing 'encoded-word', be stricterHiroshi Ioka2017-03-072-5/+14
* all: remove the the duplicate wordsEitan Adler2017-03-061-1/+1
* mime: add benchmarks for TypeByExtension and ExtensionsByTypeBryan C. Mills2017-02-141-0/+40
* mime/multipart: allow boundary len <= 70Patrick Pelletier2017-02-012-4/+4
* mime/multipart: test for overreading on a streamQuentin Smith2016-11-071-0/+67
* all: sprinkle t.Parallel on some slow testsBrad Fitzpatrick2016-11-041-0/+2
* mime/multipart: simplify Part.ReadRuss Cox2016-10-281-111/+108
* mime/quotedprintable: accept = not followed by 2 hex digits as literal equalsRuss Cox2016-10-283-10/+14
* mime: preserve unnecessary backslash escapes as literalsRuss Cox2016-10-272-19/+32
* net/http: multipart ReadForm close file after copyMichael Fraenkel2016-10-051-1/+3
* mime/quotedprintable: accept trailing soft line-break at the end of messageShenghou Ma2016-09-112-1/+8
* mime/quotedprintable: add examplesCarlos C2016-08-291-0/+37
* mime/multipart: sort header keys to ensure reproducible outputSimon Thulbourn2016-05-162-4/+39
* mime: fix mime type file name on Plan 9David du Colombier2016-05-151-1/+1
* all: standardize RFC mention formatDan Peterson2016-04-121-1/+1
* mime: fix maximum length of encoded-wordsAlexandre Cesaro2016-03-292-4/+33
* mime/multipart: don't call Read on io.Reader after an error is seenBrad Fitzpatrick2016-03-072-1/+55
* all: single space after period.Brad Fitzpatrick2016-03-023-8/+8
* all: remove public named return values when uselessBrad Fitzpatrick2016-02-291-1/+5
* mime: Fix BenchmarkQDecodeHeader to call DecodeHeaderJustin Nuß2016-02-281-1/+1
* all: fix typosShawn Smith2016-02-231-2/+2
* all: replace strings.Index with strings.Contains where possibleNathan VanBenschoten2016-02-191-1/+1
* mime: fix parsing of empty string attribute valueRuss Cox2015-12-052-2/+7
* mime: let FormatMediaType format slash-less media types, to mirror ParseMedia...Brad Fitzpatrick2015-12-012-12/+15
* mime: don't accept single-quoted strings in media type parameter valuesBrad Fitzpatrick2015-12-012-8/+8
* mime: Remove an allocation in word decoding.Justin Nuß2015-10-181-4/+16
* mime: limit UTF-8 encoded-word length to 75 charactersAlexandre Cesaro2015-10-152-22/+124
* mime/multipart: fix peekBufferSeparatorIndex edge casempl2015-10-092-1/+80