|
NAMEHTTP::Headers::ActionPack::MediaTypeList - A Priority List customized for Media Types VERSIONversion 0.09 SYNOPSIS use HTTP::Headers::ActionPack::MediaTypeList;
# normal constructor
my $list = HTTP::Headers::ActionPack::MediaTypeList->new(
HTTP::Headers::ActionPack::MediaType->new('audio/*', q => 0.2 ),
HTTP::Headers::ActionPack::MediaType->new('audio/basic', q => 1.0 )
);
# you can also specify the 'q'
# rating independent of the
# media type definition
my $list = HTTP::Headers::ActionPack::MediaTypeList->new(
[ 0.2 => HTTP::Headers::ActionPack::MediaType->new('audio/*', q => 0.2 ) ],
[ 1.0 => HTTP::Headers::ActionPack::MediaType->new('audio/basic' ) ]
);
# or from a string
my $list = HTTP::Headers::ActionPack::MediaTypeList->new_from_string(
'audio/*; q=0.2, audio/basic'
);
DESCRIPTIONThis is a subclass of the HTTP::Headers::ActionPack::PriorityList class with some specific media-type features. It is the default object used to parse most of the "Accept" header since they will often contain more then one media type. 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.
|