File Coverage

blib/lib/NetSDS.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             #===============================================================================
2             #
3             # MODULE: NetSDS
4             #
5             # DESCRIPTION: NetSDS framework
6             #
7             # AUTHOR: Michael Bochkaryov (Rattler),
8             # COMPANY: Net.Style
9             #
10             #===============================================================================
11              
12             package NetSDS;
13              
14 2     2   41366 use 5.8.0;
  2         7  
  2         84  
15 2     2   10 use strict;
  2         4  
  2         67  
16 2     2   11 use warnings;
  2         7  
  2         61  
17              
18 2     2   1564 use version; our $VERSION = '1.301';
  2         4533  
  2         16  
19              
20             1;
21              
22             =head1 NAME
23              
24             B - Service Delivery Suite by Net Style
25              
26             =head1 DESCRIPTION
27              
28             C is a flexible framework for rapid software development using
29             the following technologies:
30              
31             =over
32              
33             =item B - default programming language
34              
35             =item B - default DBMS
36              
37             =item B - message queue manager
38              
39             =item B - HTTP server with FastCGI support
40              
41             =item B - SMS and WAP gateway
42              
43             =item B - VoIP / telephony applications
44              
45             =item B - MMSC and MMS VAS gateway
46              
47             =back
48              
49             =head1 COMPONENTS
50              
51             =over
52              
53             =item * L - abstract class for other NetSDS classes.
54              
55             =item * L - common application framework class.
56              
57             =item * L - FastCGI applicatrion framework
58              
59             =item * L - JSON-RPC server framework
60              
61             =item * L - configuration files management class.
62              
63             =item * L - syslog API.
64              
65             =item * L - DBI wrapper for DBMS integration.
66              
67             =item * L - SQL table data processing API.
68              
69             =item * L - writing event detail records (EDR).
70              
71             =back
72              
73             =head1 SEE ALSO
74              
75             =over
76              
77             =item L - Net Style Ltd. Company that develops NetSDS.
78              
79             =item L - NetSDS page at SourceForge
80              
81             =item L - Asterisk IP PBX
82              
83             =item L - Kannel WAP/SMS gateway
84              
85             =item L - Mbuni MMSC and MMS VAS gateway
86              
87             =item L - PostgreSQL object-relational DBMS
88              
89             =back
90              
91             =head1 AUTHORS
92              
93             Michael Bochkaryov
94              
95             =head1 THANKS
96              
97             Valentyn Solomko - for Wono project
98              
99             =head1 LICENSE
100              
101             Copyright (C) 2008-2009 Net Style Ltd.
102              
103             This program is free software; you can redistribute it and/or modify
104             it under the terms of the GNU General Public License as published by
105             the Free Software Foundation; either version 2 of the License, or
106             (at your option) any later version.
107              
108             This program is distributed in the hope that it will be useful,
109             but WITHOUT ANY WARRANTY; without even the implied warranty of
110             MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
111             GNU General Public License for more details.
112              
113             You should have received a copy of the GNU General Public License
114             along with this program; if not, write to the Free Software
115             Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
116              
117             =cut
118