-
-
18 Jun 2013 18:56:53 UTC
- Distribution: HTTP-Headers-ActionPack
- Module version: 0.09
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Repository
- Issues (1)
- Testers (6793 / 51 / 0)
- Kwalitee
Bus factor: 1- 91.04% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (35.27KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
HTTP::Headers::ActionPack::MediaType - A Media Type
VERSION
version 0.09
SYNOPSIS
use HTTP::Headers::ActionPack::MediaType; # normal constructor my $mt = HTTP::Headers::ActionPack::MediaType->new( 'application/xml' => ( 'q' => 0.5, 'charset' => 'UTF-8' ) ); # construct from string my $mt = HTTP::Headers::ActionPack::MediaType->new_from_string( 'application/xml; q=0.5; charset=UTF-8' );
DESCRIPTION
This is an object which represents an HTTP media type definition. This is most often found as a member of a HTTP::Headers::ActionPack::MediaTypeList object.
METHODS
type
-
Accessor for the type.
major
-
The major portion of the media type name.
minor
-
The minor portion of the media type name.
matches_all
-
A media type matched all if the type is
*/*
and if it has no parameters. equals ( $media_type | $media_type_string )
-
This will attempt to determine if the
$media_type
is exactly the same as itself. If given a$media_type_string
it will parse it into an object.In order for two type to be equal, the types must match exactly and the parameters much match exactly.
exact_match ( $media_type | $media_type_string )
-
This will attempt to determine if the
$media_type
is a match with itself using thetype_matches
method below. If given a$media_type_string
it will parse it into an object.In order for an exact match to occur it the types must be compatible and the parameters much match exactly.
match ( $media_type | $media_type_string )
-
This will attempt to determine if the
$media_type
is a match with itself using thetype_matches
method andparams_match
method below. If given a$media_type_string
it will parse it into an object.In order for an exact match to occur it the types must be compatible and the parameters must be a subset.
type_matches ( $media_type | $media_type_string )
-
This will determine type compatibility, properly handling the
*
types and major and minor elements of the type. params_match ( $parameters )
-
This determines if the
$parameters
are a subset of the invocants parameters.
AUTHOR
Stevan Little <stevan.little@iinteractive.com>
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>
COPYRIGHT AND LICENSE
This 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.
Module Install Instructions
To install HTTP::Headers::ActionPack, copy and paste the appropriate command in to your terminal.
cpanm HTTP::Headers::ActionPack
perl -MCPAN -e shell install HTTP::Headers::ActionPack
For more information on module installation, please visit the detailed CPAN module installation guide.