logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

HTTP::Headers::ActionPack::AcceptLanguage - A Priority List customized for Media Types

Author

Contributors

       •   Andrew Nelson <anelson@cpan.org>

       •   Dave Rolsky <autarch@urth.org>

       •   Florian Ragwitz <rafl@debian.org>

       •   Jesse Luehrs <doy@tozt.net>

       •   Karen Etheridge <ether@cpan.org>

Description

       This is a subclass of the HTTP::Headers::ActionPack::PriorityList class with some language specific
       features.

Methods

       "canonicalize_choice"
           This takes a string containing a locale code and returns the canonical version of that code.

           This  is  incomplete,  as  it  simply lower cases the language piece ("en", "zh") and upper cases the
           country ("US", "TW"). It does not attempt to canonicalize scripts or variants in the locale code.

Name

       HTTP::Headers::ActionPack::AcceptLanguage - A Priority List customized for Media Types

Synopsis

         use HTTP::Headers::ActionPack::AcceptLanguage;

         # normal constructor
         my $list = HTTP::Headers::ActionPack::AcceptLanguage->new(
             [ 1.0 => 'en-US' ],
             [ 0.7 => 'en-GB' ],
         );

         # or from a string
         my $list = HTTP::Headers::ActionPack::AcceptLanguageList->new_from_string(
             'en-US; q=1.0, en-GB; q=0.7'
         );

Version

       version 0.09

See Also