IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18457


Ignore:
Timestamp:
Jul 9, 2008, 4:40:33 PM (18 years ago)
Author:
jhoblitt
Message:

VERSION 0.13

Location:
trunk/Nebulous-Server
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/Changes

    r18451 r18457  
    11Revision history for Nebulous
    22
    3 0.13
     30.13 Wed Jul  9 16:36:27 HST 2008
    44    - create a Nebulous::Keys object to represent a parsed neb key and
    55      impliment other changes to abstract out the handling of keys in order to
  • trunk/Nebulous-Server/bin/neb-admin

    r18407 r18457  
    33# Copyright (C) 2005-2008  Joshua Hoblitt
    44#
    5 # $Id: neb-admin,v 1.7 2008-07-02 23:20:38 jhoblitt Exp $
     5# $Id: neb-admin,v 1.8 2008-07-10 02:40:33 jhoblitt Exp $
    66
    77use strict;
     
    1919use Pod::Usage qw( pod2usage );
    2020
    21 my ($db, $dbhost, $dbuser, $dbpass, $pending, $limit);
     21my ($db, $dbhost, $dbuser, $dbpass, $pending, $limit, $verbose);
    2222
    2323$db     = $ENV{'NEB_DB'};
     
    3333    'pendingreplicate|r'    => \$pending,
    3434    'limit|l=i'             => \$limit,
     35    'verbose|v'             => \$verbose,
    3536) || pod2usage( 2 );
    3637
     
    7677
    7778foreach my $obj (@rows) {
    78 #    use Data::Dumper;
    79 #    print Dumper($obj);
     79    if (defined $verbose) {
     80        require Data::Dumper;
     81        print Data::Dumper::Dumper($obj);
     82    }
     83
    8084    my $so_id = $obj->{so_id};
    8185    my $key = $obj->{ext_id};
  • trunk/Nebulous-Server/lib/Nebulous/Server.pm

    r18451 r18457  
    11# Copyright (c) 2004-2008  Joshua Hoblitt
    22#
    3 # $Id: Server.pm,v 1.80 2008-07-09 23:32:35 jhoblitt Exp $
     3# $Id: Server.pm,v 1.81 2008-07-10 02:40:33 jhoblitt Exp $
    44
    55package Nebulous::Server;
     
    99no warnings qw( uninitialized );
    1010
    11 our $VERSION = '0.12';
     11our $VERSION = '0.13';
    1212
    1313use base qw( Class::Accessor::Fast );
Note: See TracChangeset for help on using the changeset viewer.