Changeset 1013
- Timestamp:
- Jan 5, 2010, 8:19:25 PM (13 years ago)
- Location:
- trunk/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Directory.cc
r1012 r1013 150 150 void Directory::print_core(const bool verbose) const 151 151 { 152 mkdir("blame_output/" + local_path _);152 mkdir("blame_output/" + local_path()); 153 153 // print daughter nodes 154 154 for (NodeConstIterator i=daughters_.begin(); i!=daughters_.end(); ++i) … … 164 164 165 165 const Stats& stats = stats_[stats_type]; 166 std::string outdir = stats_type+"/"+user+"/"+line_type+"/"+local_path _;167 if (local_path _=="")166 std::string outdir = stats_type+"/"+user+"/"+line_type+"/"+local_path(); 167 if (local_path()=="") 168 168 outdir = stats_type+"/"+user+"/"+line_type; 169 169 170 170 mkdir(outdir); 171 std::string imagedir = stats_type+"/"+"images/"+line_type+"/"+local_path _;171 std::string imagedir = stats_type+"/"+"images/"+line_type+"/"+local_path(); 172 172 if (user=="all") 173 173 mkdir(imagedir); -
trunk/lib/Node.h
r978 r1013 208 208 209 209 unsigned int level_; 210 std::string local_path_; // path from root211 210 std::string output_dir_; 212 211 std::string path_; // absolute path … … 235 234 bool binary_; 236 235 bool link_; 236 std::string local_path_; // path from root 237 237 mutable SVNlog* log_; 238 238 bool svndigest_ignore_;
Note: See TracChangeset
for help on using the changeset viewer.