- Timestamp:
- Dec 26, 2007, 2:47:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/svndigest.cc
r522 r532 24 24 #include "Parameter.h" 25 25 26 #include "ClassicStats.h"27 26 #include "Configuration.h" 28 27 #include "css.h" … … 32 31 #include "html_utility.h" 33 32 #include "rmdirhier.h" 33 #include "Stats.h" 34 #include "StatsCollection.h" 34 35 #include "SVN.h" 35 36 #include "SVNinfo.h" … … 150 151 if (option->verbose()) 151 152 std::cout << "Parsing directory tree" << std::endl; 152 ClassicStatsstats(tree->parse(option->verbose()));153 StatsCollection stats(tree->parse(option->verbose())); 153 154 154 155 if (option->report()) { … … 170 171 +tree->name()+"'"); 171 172 print_css("svndigest.css"); 172 print_main_page(tree->name(), tree->log(), stats, tree->url()); 173 const Stats& classic = stats["classic"]; 174 print_main_page(tree->name(), tree->log(), classic, tree->url()); 173 175 // create structure StatsType/Author/LineType 174 create_file_struct("classic/", stats);176 create_file_struct("classic/", classic); 175 177 try { 176 178 tree->print(option->verbose());
Note: See TracChangeset
for help on using the changeset viewer.