IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13209


Ignore:
Timestamp:
May 3, 2007, 2:48:08 PM (19 years ago)
Author:
jhoblitt
Message:

VERSION to 0.05

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/lib/Nebulous/Server.pm

    r13203 r13209  
    11# Copyright (c) 2004  Joshua Hoblitt
    22#
    3 # $Id: Server.pm,v 1.34 2007-05-03 22:10:13 jhoblitt Exp $
     3# $Id: Server.pm,v 1.35 2007-05-04 00:47:42 jhoblitt Exp $
    44
    55package Nebulous::Server;
     
    88use warnings FATAL => qw( all );
    99
    10 our $VERSION = '0.04';
     10our $VERSION = '0.05';
    1111
    1212use base qw( Class::Accessor::Fast );
     
    206206    # actual on disk file name we can't try to create the file until after
    207207    # we've create both a new storage_storage object and instance.
     208    my $filename = $key;
     209    # mange '/'s into ':'
     210    $key =~ s|/|:|g;
    208211    my $uri = URI::file->new("$vol_path/$key.$ins_id");
    209212    $log->debug("generated uri $uri");
  • trunk/Nebulous/lib/Nebulous/Server.pm

    r13203 r13209  
    11# Copyright (c) 2004  Joshua Hoblitt
    22#
    3 # $Id: Server.pm,v 1.34 2007-05-03 22:10:13 jhoblitt Exp $
     3# $Id: Server.pm,v 1.35 2007-05-04 00:47:42 jhoblitt Exp $
    44
    55package Nebulous::Server;
     
    88use warnings FATAL => qw( all );
    99
    10 our $VERSION = '0.04';
     10our $VERSION = '0.05';
    1111
    1212use base qw( Class::Accessor::Fast );
     
    206206    # actual on disk file name we can't try to create the file until after
    207207    # we've create both a new storage_storage object and instance.
     208    my $filename = $key;
     209    # mange '/'s into ':'
     210    $key =~ s|/|:|g;
    208211    my $uri = URI::file->new("$vol_path/$key.$ins_id");
    209212    $log->debug("generated uri $uri");
  • trunk/Nebulous/nebclient/configure.ac

    r13204 r13209  
    11dnl Copyright (C) 2005  Joshua Hoblitt
    22dnl
    3 dnl $Id: configure.ac,v 1.15 2007-05-03 23:53:09 jhoblitt Exp $
     3dnl $Id: configure.ac,v 1.16 2007-05-04 00:48:08 jhoblitt Exp $
    44
    55AC_PREREQ(2.59)
    66
    7 AC_INIT([nebclient], [0.0.3], [jhoblitt@cpan.org])
     7AC_INIT([nebclient], [0.05], [jhoblitt@cpan.org])
    88AC_CONFIG_SRCDIR([nebulous.wsdl])
    99
Note: See TracChangeset for help on using the changeset viewer.