GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTTP::Headers::ActionPack::PriorityList(3) User Contributed Perl Documentation HTTP::Headers::ActionPack::PriorityList(3)

HTTP::Headers::ActionPack::PriorityList - A Priority List

version 0.09

  use HTTP::Headers::ActionPack::PriorityList;

  # simple constructor
  my $plist = HTTP::Headers::ActionPack::PriorityList->new(
      [ 1.0 => 'foo' ],
      [ 0.5 => 'bar' ],
      [ 0.2 => 'baz' ],
  );

  # from headers
  my $plist = HTTP::Headers::ActionPack::PriorityList->new_from_string(
      'foo; q=1.0, bar; q=0.5, baz; q=0.2'
  );

This is a simple priority list implementation, this is used to handle the Accept-* headers as they typically will contain values along with a "q" value to indicate quality.

"new"
"new_from_string ( $header_string )"
This accepts a HTTP header string which get parsed and loaded accordingly.
"index"
"items"
"add ( $quality, $choice )"
Add in a new $choice with a given $quality.
"get ( $quality )"
Given a certain $quality, it returns the various choices available.
"priority_of ( $choice )"
Given a certain $choice this returns the associated quality of it.
"iterable"
This returns a list of two item ARRAY refs with the quality as the first item and the associated choice as the second item. These are sorted accordingly.

When two items have the same priority, they are returned in the order that they were found in the header.

"canonicalize_choice"
By default, this does nothing. It exists so that subclasses can override it.

Stevan Little <stevan.little@iinteractive.com>

  • 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>

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.

2013-06-18 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.