Changeset 4440 for trunk/Nebulous-Server/lib/Nebulous/Server
- Timestamp:
- Jun 29, 2005, 4:35:06 PM (21 years ago)
- Location:
- trunk/Nebulous-Server/lib/Nebulous/Server
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous-Server/lib/Nebulous/Server/Apache.pm
r2918 r4440 3 3 # $Id 4 4 5 package PS::IPP::IData::Server::Apache;5 package Nebulous::Server::Apache; 6 6 7 7 use strict; … … 10 10 our $VERSION = 0.01; 11 11 12 use PS::IPP::IData::Server::SOAP;12 use Nebulous::Server::SOAP; 13 13 use SOAP::Transport::HTTP; 14 14 15 15 my $server = SOAP::Transport::HTTP::Apache 16 ->dispatch_to( ' PS::IPP::IData::Server::SOAP' )16 ->dispatch_to( 'Nebulous::Server::SOAP' ) 17 17 ->options({ compress_threshold => 10 * 1024 }); 18 18 -
trunk/Nebulous-Server/lib/Nebulous/Server/Log.pm
r2898 r4440 1 1 # Copyright (c) 2004 Joshua Hoblitt 2 2 # 3 # $Id: Log.pm,v 1. 2 2005-01-05 02:44:54jhoblitt Exp $3 # $Id: Log.pm,v 1.3 2005-06-30 02:35:06 jhoblitt Exp $ 4 4 5 package PS::IPP::IData::Server::Log;5 package Nebulous::Server::Log; 6 6 7 7 use strict; … … 13 13 14 14 my $conf = q( 15 log4perl.category. PS.IPP.IData.Server = DEBUG, SERVERLOGFILE15 log4perl.category.Nebulous.Server = DEBUG, SERVERLOGFILE 16 16 17 17 log4perl.appender.SERVERLOGFILE = Log::Log4perl::Appender::File 18 log4perl.appender.SERVERLOGFILE.filename = /tmp/ idata_server.log18 log4perl.appender.SERVERLOGFILE.filename = /tmp/nebulous_server.log 19 19 log4perl.appender.SERVERLOGFILE.mode = append 20 20 log4perl.appender.SERVERLOGFILE.layout = Log::Log4perl::Layout::PatternLayout -
trunk/Nebulous-Server/lib/Nebulous/Server/SOAP.pm
r2917 r4440 1 1 # Copyright (c) 2004 Joshua Hoblitt 2 2 # 3 # $Id: SOAP.pm,v 1. 1 2005-01-06 03:56:43jhoblitt Exp $3 # $Id: SOAP.pm,v 1.2 2005-06-30 02:35:06 jhoblitt Exp $ 4 4 5 package PS::IPP::IData::Server::SOAP;5 package Nebulous::Server::SOAP; 6 6 7 7 use strict; … … 10 10 our $VERSION = '0.01'; 11 11 12 use PS::IPP::IData::Server;12 use Nebulous::Server; 13 13 use SOAP::Lite; 14 14 import SOAP::Data 'name'; … … 22 22 return undef if $method eq 'DESTROY'; 23 23 24 return name( result => PS::IPP::IData::Server->$method( @_ ) );24 return name( result => Nebulous::Server->$method( @_ ) ); 25 25 } 26 26 -
trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm
r3016 r4440 1 1 # Copyright (c) 2004 Joshua Hoblitt 2 2 # 3 # $Id: SQL.pm,v 1. 4 2005-01-15 04:02:12jhoblitt Exp $3 # $Id: SQL.pm,v 1.5 2005-06-30 02:35:06 jhoblitt Exp $ 4 4 5 package PS::IPP::IData::Server::SQL;5 package Nebulous::Server::SQL; 6 6 7 7 use strict;
Note:
See TracChangeset
for help on using the changeset viewer.
