# $Id$ # Featurelist of 'My::Project::hotelgate' # Copyright (C) 2005 Jan Kratochvil # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; exactly version 2 of June 1991 is required # # 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. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA package product::hotelgate::Spec; require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; our $CVS_ID=q$Id$; use strict; use warnings; use My::Web; our @Features=( q{Segments control separation}=><<"HERE", Enable/disable Internet access in each network segment (hotel room, building area) separately from the central control point. No need to complicate the clients' access by the usual tickets. HERE q{Plug & Play networking}=><<"HERE", Transparent clients network connectivity. HotelGate automatically adapts to any home or company network settings the client may be using. Both cable and wireless networking uses this technology. HERE q{Centralized control access}=><<"HERE", Central access control over web for both cable and wireless network segments and also the system settings. HERE q{Welcome page redirection}=><<"HERE", Clients get the specified welcome page possibly showing restaurant menu and other facility services offer. HERE q{Staff and administrator control separation}=><<"HERE", Administration separates access to the simple reception personnel operations (tickets printing, hotel room free access permissions) and the full configuration for system installation and administration. HERE q{Optional ISP connectivity bandwidth limitation}=><<"HERE", Possibility to limit the clients connectivity throughput to protect existing Internet performance of your intranet machines. HERE q{Web access acceleration (transparent proxy)}=><<"HERE", Integrated transparent cache both accelerates the client Internet connections and also saves the bandwidth of your ISP link. HERE q{Language localization}=><<"HERE", Web administration interface provided in multiple languages. Translation for your country upon request. HERE ); sub handler { Wrequire 'product::hotelgate::Lib'; my $W=product::hotelgate::Lib->init( "title"=>"HotelGate: Specification", ); print <<"HERE";

HotelGate Specification

Features

HERE my @features_local=@Features; while (@features_local) { my $key=shift @features_local; my $val=shift @features_local; print <<"HERE";
$key
$val
HERE } print <<"HERE";

Specifications

Interfaces

Protocols

Authorization

Web Server storage

Physical Characteristics

HERE exit; } 1;