Page MenuHomeDevCentral

Get accepted languages from HTTP request
ClosedPublic

Authored by dereckson on Apr 30 2018, 12:27.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Dec 13, 12:35
Unknown Object (File)
Fri, Dec 13, 12:35
Unknown Object (File)
Fri, Dec 13, 12:35
Unknown Object (File)
Thu, Dec 12, 14:59
Unknown Object (File)
Thu, Dec 12, 03:43
Unknown Object (File)
Mon, Dec 9, 04:12
Unknown Object (File)
Wed, Dec 4, 10:20
Unknown Object (File)
Tue, Dec 3, 20:18
Subscribers
None

Details

Summary

Allow to parse a list with quality values formatted as strings
per RFC 7231, section 5.3.1.

e.g. "a,b;q=0.1,c;q=0.4" is parsed as a list of WeightedValue:

  • (a, 1.0)
  • (b, 0.1)
  • (c, 0.4)

This is the format used for the ACCEPT_LANGUAGE HTTP header.

Test Plan

Unit tests provided

Diff Detail

Repository
rKOT Keruald OmniTools
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dereckson created this revision.
This revision is now accepted and ready to land.Apr 30 2018, 12:29
This revision was automatically updated to reflect the committed changes.