Page MenuHomeDevCentral

Get accepted languages from HTTP request
ClosedPublic

Authored by dereckson on Apr 30 2018, 12:27.
Tags
None
Referenced Files
F2829010: D1634.id4173.diff
Fri, Apr 19, 06:41
F2826559: D1634.diff
Thu, Apr 18, 20:32
Unknown Object (File)
Thu, Apr 18, 16:41
Unknown Object (File)
Wed, Apr 17, 08:12
Unknown Object (File)
Sun, Apr 14, 22:18
Unknown Object (File)
Sun, Apr 14, 06:31
Unknown Object (File)
Sat, Apr 13, 06:29
Unknown Object (File)
Sat, Apr 13, 05:22
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.