comparison OrthancFramework/Sources/HttpServer/MultipartStreamReader.cpp @ 4476:c1f36fd13730

migrate remaining links to issues in bitbucket to mercurial server
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 26 Jan 2021 18:25:52 +0100
parents 4f8e77c650e8
children 0ad5736c8d62
comparison
equal deleted inserted replaced
4475:a24d2126efd2 4476:c1f36fd13730
352 else if (boost::iequals("type", Toolbox::StripSpaces(items[0]))) 352 else if (boost::iequals("type", Toolbox::StripSpaces(items[0])))
353 { 353 {
354 subType = Toolbox::StripSpaces(items[1]); 354 subType = Toolbox::StripSpaces(items[1]);
355 Toolbox::ToLowerCase(subType); 355 Toolbox::ToLowerCase(subType);
356 356
357 // https://bitbucket.org/sjodogne/orthanc/issues/54/decide-what-to-do-wrt-quoting-of-multipart 357 // https://bugs.orthanc-server.com/show_bug.cgi?id=54
358 // https://tools.ietf.org/html/rfc7231#section-3.1.1.1 358 // https://tools.ietf.org/html/rfc7231#section-3.1.1.1
359 RemoveSurroundingQuotes(subType); 359 RemoveSurroundingQuotes(subType);
360 } 360 }
361 } 361 }
362 } 362 }