IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 29, 2005, 4:35:06 PM (21 years ago)
Author:
jhoblitt
Message:

rename PS::IPP::IData -> Nebulous

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/scripts/stest.pl

    r2785 r4440  
    66use lib "./lib";
    77
    8 use PS::IPP::IData::Client; # trace => 'debug';
     8use Nebulous::Client; # trace => 'debug';
    99
    10 my $idata = PS::IPP::IData::Client->new(
    11     proxy   => 'http://localhost:80/idata'
     10my $neb = Nebulous::Client->new(
     11    proxy   => 'http://localhost:80/nebulous'
    1212);
    1313
    1414my $fname = shift;
    1515
    16 #my $fh = $idata->create( $fname );
    17 #$idata->unlock( $fname, 'write' );
     16#my $fh = $neb->create( $fname );
     17#$neb->unlock( $fname, 'write' );
    1818
    19 $idata->create( $fname, 1 );
    20 $idata->unlock( $fname, 'write' );
    21 $idata->delete( $fname );
     19$neb->create( $fname, 1 );
     20$neb->unlock( $fname, 'write' );
     21$neb->delete( $fname );
    2222
    2323__END__
     
    2828    print $fh "fooby\n";
    2929    close $fh;
    30     #$idata->unlock( $fname, 'write' );
     30    #$neb->unlock( $fname, 'write' );
    3131    my $filesize =  (stat( $key ))[7];
    3232    print "created file $key, ${filesize}bytes\n";
Note: See TracChangeset for help on using the changeset viewer.