]> Creatis software - bbtk.git/commitdiff
comment out cout s
authorjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Tue, 29 Jan 2008 14:01:31 +0000 (14:01 +0000)
committerjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Tue, 29 Jan 2008 14:01:31 +0000 (14:01 +0000)
kernel/src/bbtkFactory.cxx
kernel/src/bbtkInterpreter.cxx
kernel/src/bbtkUtilities.h

index 4991eccd505802ec5ac513ed348e21521009d0fe..5c060075c20806d05dde4e55871ac1d4b24841b8 100644 (file)
@@ -4,8 +4,8 @@ Program:   bbtk
 Module:    $RCSfile: bbtkFactory.cxx,v $
 Language:  C++
 
-Date:      $Date: 2008/01/29 10:56:03 $
-Version:   $Revision: 1.5 $
+Date:      $Date: 2008/01/29 14:01:31 $
+Version:   $Revision: 1.6 $
                                                                                 
 
 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
@@ -298,7 +298,6 @@ namespace bbtk
       return;
     }
 
-
 // =================================================
 // The following structure was checked to work
 // with any type of relative/absolute path.
index 39f1cbec9dcc62e39d4252bbef4f697ff0e68eea..eba8ce61bdabd685df899382fc17e925f7c35361 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkInterpreter.cxx,v $ $
   Language:  C++
-  Date:      $Date: 2008/01/29 13:54:47 $
-  Version:   $Revision: 1.10 $
+  Date:      $Date: 2008/01/29 14:01:31 $
+  Version:   $Revision: 1.11 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -792,9 +792,6 @@ verbose = true;
         }
         foundFile = true;
 
-        std::cout << "recherche tous les .bbs du directory" << std::endl;
-        std::cout << "pour chacun, LoadScript" << std::endl; 
-
         std::vector<std::string> Filenames;
         int nbFiles = Utilities::Explore(fullDirectoryName, false, Filenames);
 // std::cout << "=================nbFiles " << nbFiles << std::endl;
@@ -859,17 +856,14 @@ verbose = true;
       
       // =============================================================== iterate on the paths
       {
-       std::cout << "iterate"<<std::endl;
       std::string path;
       std::vector<std::string>::iterator i;
       for (i=script_paths.begin();i!=script_paths.end();++i)
       {
 
         path = *i;
-       std::cout << "CUR=["<<path<<"]"<<std::endl;
        // we *really* want '.' to be the current working directory
         if (path == ".") {
-         std::cout << "PATH IS CURRENT"<<std::endl;
           char buf[2048]; // for getcwd
           char * currentDir = getcwd(buf, 2048);
           std::string cwd(currentDir);
@@ -878,9 +872,9 @@ verbose = true;
 
        // fullPathScriptName = Utilities::MakePkgnameFromPath(path, name, true); //pkgname);
 
-       fullPathScriptName = Utilities::MakePkgnameFromPath(path, /*pkgnam*/ name, true);
-       std::cout << "FULL PATH = "<<fullPathScriptName<<std::endl;
-       
+           fullPathScriptName = Utilities::MakePkgnameFromPath(path, pkgname, true);
+//std::cout << "FULL PATH = "<<fullPathScriptName<<std::endl;
+
       // Check if library exists
         if ( ! Utilities::FileExists(fullPathScriptName) )
         {
@@ -891,6 +885,8 @@ verbose = true;
             std::cout <<"   [" <<fullPathScriptName <<"] : doesn't exist" <<std::endl;
           continue;  // try next path
         }
+        if (verbose)
+           std::cout <<"   [" <<fullPathScriptName <<"] : found" <<std::endl;        
         foundFile = true;
         break; // a script was found; we stop iterating
 
index e88bfd528a76ffd17a95597f5d3922f1a9a20e1f..7895935aaaa530fc382ddf0724d7f91ea2fcfecd 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkUtilities.h,v $
   Language:  C++
-  Date:      $Date: 2008/01/29 12:05:05 $
-  Version:   $Revision: 1.7 $
+  Date:      $Date: 2008/01/29 14:01:31 $
+  Version:   $Revision: 1.8 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See doc/license.txt or
@@ -179,7 +179,7 @@ namespace bbtk
     // tooHigh : true is user supplies a library pathname with too many "../"
     bool tooHigh = false;
     
-//std::cout << "------------------cwd ["  << cwd << "]" << std::endl;
+//std::cout << "------------------cwd ["  << cwd << "] name [" << name << "]" << std::endl;
  
     if ( name[0] == '/' ||  name[1] == ':' ) // Linux or Windows absolute name
     {