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)
Sat, Apr 20, 06:45
Unknown Object (File)
Fri, Apr 19, 06:41
Unknown Object (File)
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
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 Passed
Unit
Tests Passed
Branch
AcceptedLanguages (branched from master)
Build Status
Buildable 2564
Build 2812: arc lint + arc unit

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.