Changeset 23715
- Timestamp:
- Apr 6, 2009, 1:39:47 PM (17 years ago)
- Location:
- branches/neb_distrib_20081210/Nebulous-Server
- Files:
-
- 3 edited
- 1 moved
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
lib/Nebulous/Key.pm (moved) (moved from branches/neb_distrib_20081210/Nebulous-Server/lib/Nebulous/Keys.pm ) (2 diffs)
-
lib/Nebulous/Server.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/neb_distrib_20081210/Nebulous-Server/Changes
r23708 r23715 8 8 - add email logging of events to nebdiskd 9 9 - attempt to optimize _is_valid_object_key() by eliminating an unused join 10 - rename Nebulous::Keys class -> Nebulous::Key 10 11 11 12 0.16 -
branches/neb_distrib_20081210/Nebulous-Server/MANIFEST
r23537 r23715 19 19 examples/uri_test.pl 20 20 init.d/nebdiskd 21 lib/Nebulous/Key s.pm21 lib/Nebulous/Key.pm 22 22 lib/Nebulous/Server.pm 23 23 lib/Nebulous/Server.pod -
branches/neb_distrib_20081210/Nebulous-Server/lib/Nebulous/Key.pm
r23714 r23715 3 3 # $Id: Keys.pm,v 1.3 2008-09-09 02:18:47 jhoblitt Exp $ 4 4 5 package Nebulous::Key s;5 package Nebulous::Key; 6 6 7 7 use strict; … … 125 125 =head1 NAME 126 126 127 Nebulous::Key s- Nebulous Keys Explained127 Nebulous::Key - Nebulous Keys Explained 128 128 129 129 =head1 DESCRIPTION -
branches/neb_distrib_20081210/Nebulous-Server/lib/Nebulous/Server.pm
r23714 r23715 20 20 use File::Spec; 21 21 use Log::Log4perl; 22 use Nebulous::Key sqw( parse_neb_key parse_neb_volume );22 use Nebulous::Key qw( parse_neb_key parse_neb_volume ); 23 23 use Nebulous::Server::Config; 24 24 use Nebulous::Server::Log; … … 145 145 sub db 146 146 { 147 my ($self, $key) = @_; 147 my $self = shift; 148 149 my ($key) = validate_pos(@_, 150 { 151 isa => 'Nebulous::Key', 152 }, 153 ); 148 154 149 155 my $log = $self->log;
Note:
See TracChangeset
for help on using the changeset viewer.
