Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2605

Show
Ignore:
Timestamp:
10/03/07 01:44:30 (1 year ago)
Author:
kris
Message:

updated some old references

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/install/snapshot/srcsnapshot.d

    r2164 r2605  
    129129    auto bld = new Process(buildcmd, null); 
    130130    bld.execute(); 
    131     Stderr.conduit.copy(bld.stderr); 
     131    Stderr.stream.copy(bld.stderr); 
    132132    result = bld.wait(); 
    133133    if (result.reason != Process.Result.Exit) { 
     
    143143    auto chmod = new Process("chmod 644 " ~ chmodfiles, null); 
    144144    chmod.execute(); 
    145     Stderr.conduit.copy(chmod.stderr); 
     145    Stderr.stream.copy(chmod.stderr); 
    146146    result = chmod.wait(); 
    147147    if (result.reason != Process.Result.Exit) { 
     
    154154    auto rm = new Process("rm -rf " ~ rmpaths, null); 
    155155    rm.execute(); 
    156     Stderr.conduit.copy(rm.stderr); 
     156    Stderr.stream.copy(rm.stderr); 
    157157    result = rm.wait(); 
    158158    if (result.reason != Process.Result.Exit) { 
     
    168168    auto targz = new Process("tar czf " ~ packdirdate ~ ".tar.gz " ~ packdirdate, null); 
    169169    targz.execute(); 
    170     Stderr.conduit.copy(targz.stderr); 
     170    Stderr.stream.copy(targz.stderr); 
    171171    result = targz.wait(); 
    172172    if (result.reason != Process.Result.Exit) { 
     
    178178    auto zip = new Process("zip -r " ~ packdirdate ~ " " ~ packdirdate, null); 
    179179    zip.execute(); 
    180     Stderr.conduit.copy(zip.stderr); 
     180    Stderr.stream.copy(zip.stderr); 
    181181    result = zip.wait(); 
    182182    if (result.reason != Process.Result.Exit) { 
  • trunk/install/windows/build_tango.d

    r2465 r2605  
    9393    Stdout( '\n' ); 
    9494    proc.execute(); 
    95     Stdout.conduit.copy( proc.stdout ); 
    96     Stdout.conduit.copy( proc.stderr ); 
     95    Stdout.stream.copy( proc.stdout ); 
     96    Stdout.stream.copy( proc.stderr ); 
    9797    auto result = proc.wait(); 
    9898    if( result.reason != Process.Result.Exit ) 
  • trunk/tango/io/model/IBuffer.d

    r2542 r2605  
    141141        legitimate on Stdout and Stderr. For example: 
    142142        --- 
    143         Stdout.conduit.copy (new FileConduit ("readme.txt")); 
     143        Stdout.stream.copy (new FileConduit ("readme.txt")); 
    144144        --- 
    145145