Animal Shelter Manager 2.3.4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Animal Shelter Manager 2.3.4 (Default branch)
# 1  
Old 10-28-2008
Animal Shelter Manager 2.3.4 (Default branch)

Image Animal Shelter Manager is a complete computer solution for animal sanctuaries, rescue shelters, and veterinary surgery clinics. It features complete animal and owner management, document generation, flexible reporting, charts, Internet Web site publishing, and more. License: GNU General Public License (GPL) Changes:
This release fixes the last of the Mac issues. Additional permissions are now supported and a new Web build allows ASM to run from a Web server as a Java applet. Finally, a much-needed splash screen shows startup progress. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
moniker(3pm)						User Contributed Perl Documentation					      moniker(3pm)

NAME
UNIVERSAL::moniker - Nicer names for your Perl modules/classes SYNOPSIS
use UNIVERSAL::moniker; DESCRIPTION
Class names in Perl often don't sound great when spoken, or look good when written in prose. For this reason, we tend to say things like "customer" or "basket" when we are referring to "My::Site::User::Customer" or "My::Site::Shop::Basket". We thought it would be nice if our classes knew what we would prefer to call them. This module will add a "moniker" (and "plural_moniker") method to "UNIVERSAL", and so to every class or module. moniker $ob->moniker; Returns the moniker for $ob. So, if $ob->isa("Big::Scary::Animal"), "moniker" will return "animal". plural_moniker $ob->plural_moniker; Returns the plural moniker for $ob. So, if $ob->isa("Cephalopod::Octopus"), "plural_moniker" will return "octopuses". (You need to install Lingua::EN::Inflect for this to work.) AUTHORS
Marty Pauley <marty+perl@kasei.com>, Tony Bowden <tony@kasei.com>, Elizabeth Mattijsen <liz@dijkmat.nl> (Yes, 3 authors for such a small module!) COPYRIGHT
Copyright (C) 2004 Kasei This program is free software; you can redistribute it under the same terms as Perl. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. perl v5.10.0 2009-06-09 moniker(3pm)