X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS.pm;h=c6ce761e1d7df83db6ff1d17dcba3ce2977c2242;hp=c7defbc7f07e7dd891cf72bd7c5096d6c965734b;hb=324f65798f7e4f28cae94a39a77260c650aa2669;hpb=1e3eae905b861761f93643aa5fce14a8be5d9ed2 diff --git a/FS/FS.pm b/FS/FS.pm index c7defbc7f..c6ce761e1 100644 --- a/FS/FS.pm +++ b/FS/FS.pm @@ -1,51 +1,243 @@ package FS; use strict; -use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); +use vars qw($VERSION); -require Exporter; - -@ISA = qw(Exporter AutoLoader); -# Items to export into callers namespace by default. Note: do not export -# names by default without a very good reason. Use EXPORT_OK instead. -# Do not simply export all your public functions/methods/constants. -@EXPORT = qw( - -); $VERSION = '0.01'; - -# Preloaded methods go here. - -# Autoload methods go after =cut, and are processed by the autosplit program. +#find missing entries in this file with: +# for a in `ls *pm | cut -d. -f1`; do grep 'L' ../FS.pm >/dev/null || echo "missing $a" ; done 1; __END__ -# Below is the stub of documentation for your module. You better edit it! =head1 NAME -FS - Perl extension for blah blah blah +FS - Freeside Perl modules =head1 SYNOPSIS - use FS; - blah blah blah +Freeside perl modules and CLI utilities. + +=head2 Utility classes + +L - Freeside configuration values + +L - Freeside configuration option meta-data. + +L - User class (not yet OO) + +L - Non OO-subroutines for the web interface. + +L - Message catalog + +L - Search cache + +L - RADIUS dictionary + +=head2 Database record classes + +L - Database record base class + +L - POP (Point of Presence, not Post +Office Protocol) class + +L - Local calling area class + +L - Referral class + +L - Locale (tax rate) class + +L - Tax exemption record class + +L - Service base class + +L - Account (shell, RADIUS, POP3) class + +L - External mail account class + +L - RADIUS groups + +L - Domain class + +L - DNS zone entries + +L - Mail forwarding class + +L - Web virtual host class. + +L - DSL, wireless and other broadband class. + +L - Externally tracked service class. + +L - Service definition class + +L - Column constraint class + +L - Class linking service definitions (see L) +with exports (see L) + +L - External provisioning export class + +L - Export option class + +L - Package (billing item) definition class + +L - Class linking package (billing item) +definitions (see L) with service definitions +(see L) + +L - Agent (reseller) class + +L - Agent type class + +L - Class linking agent types (see +L) with package (billing item) definitions +(see L) + +L - Service class + +L - Package (billing item) class + +L - Customer class + +L - Invoice destination +class + +L - Invoice class + +L - Invoice line item class + +L - Invoice line item detail class + +L - Invoice event definition class + +L - Completed invoice event class + +L - Payment class + +L - Voided payment class + +L - Payment application class + +L - Credit class + +L - Refund class + +L - Refund application to credit class + +L - Credit application to invoice class + +L - Refund application to payment class + +L - Credit card transaction queue class + +L - Prepaid "calling card" credit class. + +L - Network Access Server class + +L - NAS port class + +L - User login session class + +L - Job queue + +L - Job arguments + +L - Job dependencies + +L - Message catalogs + +=head1 Remote API modules + +L + +L + +L + +L (deprecated in favor of the self-service server) + +=head2 Command-line utilities + +L + +L + +L + +L + +L + +L + +L + +L + +L + +L + +L + +=head2 User Interface classes (under (stalled) development; not yet usable) + +L - User-interface base class + +L - Gtk user-interface class + +L - CGI (HTML) user-interface class + +L - agent table user-interface class + +=head2 Notes + +To quote perl(1), "If you're intending to read these straight through for the +first time, the suggested order will tend to reduce the number of forward +references." + +If you've never used OO modules before, +http://www.perl.com/doc/FMTEYEWTK/easy_objects.html might help you out. =head1 DESCRIPTION -Stub documentation for FS was created by h2xs. It looks like the -author of the extension was negligent enough to leave the stub -unedited. +Freeside is a billing and administration package for Internet Service +Providers. + +The Freeside home page is at . + +The main documentation is in httemplate/docs. + +=head1 SUPPORT -Blah blah blah. +A mailing list for users is available. Send a blank message to + to subscribe. + +A mailing list for developers is available. It is intended to be lower volume +and higher SNR than the users list. Send a blank message to + to subscribe. + +Commercial support is available; see +. =head1 AUTHOR -A. U. Thor, a.u.thor@a.galaxy.far.far.away +Primarily Ivan Kohler , with help from many kind folks. + +See the CREDITS file in the Freeside distribution for a (hopefully) complete +list and the individal files for details. =head1 SEE ALSO -perl(1). +perl(1), main Freeside documentation in htdocs/docs/ + +=head1 BUGS + +Those modules which would be useful separately should be pulled out, +renamed appropriately and uploaded to CPAN. So far: DBIx::DBSchema, Net::SSH +and Net::SCP... =cut +