|
NAMEHTTP::Headers::ActionPack::AcceptCharset - A Priority List customized for Media Types VERSIONversion 0.09 SYNOPSIS use HTTP::Headers::ActionPack::AcceptCharset;
# normal constructor
my $list = HTTP::Headers::ActionPack::AcceptCharset->new(
[ 1.0 => 'UTF-8' ],
[ 0.7 => 'ISO-8859-1' ],
);
# or from a string
my $list = HTTP::Headers::ActionPack::AcceptCharsetList->new_from_string(
'UTF-8; q=1.0, ISO-8859-1; q=0.7'
);
DESCRIPTIONThis is a subclass of the HTTP::Headers::ActionPack::PriorityList class with some charset specific features. METHODS
AUTHORStevan Little <stevan.little@iinteractive.com> CONTRIBUTORS
COPYRIGHT AND LICENSEThis software is copyright (c) 2012 by Infinity Interactive, Inc.. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|