IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12972


Ignore:
Timestamp:
Apr 23, 2007, 3:04:56 PM (19 years ago)
Author:
jhoblitt
Message:

s/URI::file/URI/g

Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/bin/neb-addvol

    r12970 r12972  
    33# Copyright (C) 2005  Joshua Hoblitt
    44#
    5 # $Id: neb-addvol,v 1.2 2007-04-24 00:56:30 jhoblitt Exp $
     5# $Id: neb-addvol,v 1.3 2007-04-24 01:04:55 jhoblitt Exp $
    66
    77use strict;
     
    5151print "Checking URI...";
    5252
    53 my $path = URI::file->new($uri)->file;
     53my $path = URI->new($uri)->file;
    5454unless (-d $path) {
    5555    die "path: $path dirived from URI: $uri does not exist";
  • trunk/Nebulous-Server/docs/setup.txt

    r4943 r12972  
    186186=item * configure Apache to run as the nebulous group.
    187187
     188Make sure mod_perl is being loaded into Apache.  In order to do this on
     189gentoo, you must edit /etc/config.d/apache2 and add C<-DPERL> to
     190C<APACHE2_OTPS>.
     191
    188192    cat <<END >> /etc/apache2/conf/apache2.conf
    189193    <Location /nebulous>
  • trunk/Nebulous-Server/scripts/bench_test.pl

    r4931 r12972  
    1010
    1111my $neb = Nebulous::Client->new(
    12     proxy   => 'http://localhost:80/nebulous'
     12    proxy   => 'http://alala:80/nebulous'
    1313);
    1414
  • trunk/Nebulous-Server/scripts/ptest.pl

    r11564 r12972  
    99
    1010my $neb = Nebulous::Client->new(
    11     proxy   => 'http://localhost:80/nebulous'
     11    proxy   => 'http://alala:80/nebulous'
    1212);
    1313
  • trunk/Nebulous/bin/neb-addvol

    r12970 r12972  
    33# Copyright (C) 2005  Joshua Hoblitt
    44#
    5 # $Id: neb-addvol,v 1.2 2007-04-24 00:56:30 jhoblitt Exp $
     5# $Id: neb-addvol,v 1.3 2007-04-24 01:04:55 jhoblitt Exp $
    66
    77use strict;
     
    5151print "Checking URI...";
    5252
    53 my $path = URI::file->new($uri)->file;
     53my $path = URI->new($uri)->file;
    5454unless (-d $path) {
    5555    die "path: $path dirived from URI: $uri does not exist";
  • trunk/Nebulous/docs/setup.txt

    r4943 r12972  
    186186=item * configure Apache to run as the nebulous group.
    187187
     188Make sure mod_perl is being loaded into Apache.  In order to do this on
     189gentoo, you must edit /etc/config.d/apache2 and add C<-DPERL> to
     190C<APACHE2_OTPS>.
     191
    188192    cat <<END >> /etc/apache2/conf/apache2.conf
    189193    <Location /nebulous>
  • trunk/Nebulous/nebclient/tests/tap/bootstrap.sh

    r12605 r12972  
    22
    33set -x
    4 aclocal19 -I /usr/local/share/aclocal || aclocal || exit 1
    5 autoheader259 || autoheader || exit 1
    6 libtoolize15 -c -f || libtoolize -c -f || glibtoolize -c -f || exit 1
    7 automake19 -a -c || automake -a -c || exit 1
    8 autoconf259 || autoconf || exit 1
     4aclocal -I /usr/local/share/aclocal || aclocal || exit 1
     5autoheader || autoheader || exit 1
     6libtoolize -c -f || libtoolize -c -f || glibtoolize -c -f || exit 1
     7automake -a -c || automake -a -c || exit 1
     8autoconf || autoconf || exit 1
  • trunk/Nebulous/scripts/bench_test.pl

    r4931 r12972  
    1010
    1111my $neb = Nebulous::Client->new(
    12     proxy   => 'http://localhost:80/nebulous'
     12    proxy   => 'http://alala:80/nebulous'
    1313);
    1414
  • trunk/Nebulous/scripts/ptest.pl

    r11564 r12972  
    99
    1010my $neb = Nebulous::Client->new(
    11     proxy   => 'http://localhost:80/nebulous'
     11    proxy   => 'http://alala:80/nebulous'
    1212);
    1313
Note: See TracChangeset for help on using the changeset viewer.