NAME

Flyball - Basic Flyball Routines


SYNOPSIS

  use Flyball;
  $title_abbr = nafa_title(points) 
  returns "FD" given a point value of 78
  $title_name = nafa_title_name(points)
  returns "Flyball Dog" given a point value of 78
  $title_abbr = nafa_next_title(points)
  returns "FDX" given a point value of 78
  $title_name = nafa_next_title_name(points)
  returns "Flyball Dog Excellent" given a point value of 78
  $next_points = nafa_next_points(points)
  returns "100" (the point total needed for next title), given a point value of 78
  $href = nafa_dog(crn)
  returns a hash ref including crn, name, breed, points, & owner as listed in the NAFA database.
  This operation pulls down a webpage from the nafa database each time you run it.
  Please be kind to the NAFA database, save the results in a local file or database instead of pounding the NAFA site.


DESCRIPTION

Flyball.pm was created to provide access to basic flyball functions that may be of use to other flyball clubs. It currently only serves NAFA but I've chosen a naming convention that will allow for other organizations.

EXPORT

All by default.


AUTHOR

Andrew McBride, <andy@godoggo.org>


COPYRIGHT AND LICENSE

Copyright (C) 2005 by Andrew McBride

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available.