Changeset 533
- Timestamp:
- Dec 26, 2007, 3:07:46 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/svndigest.cc
r532 r533 174 174 print_main_page(tree->name(), tree->log(), classic, tree->url()); 175 175 // create structure StatsType/Author/LineType 176 create_file_struct("classic/", classic); 176 for (std::map<std::string, Stats*>::const_iterator i(stats.stats().begin()); 177 i!=stats.stats().end(); ++i) 178 create_file_struct(i->first+std::string("/"), *i->second); 177 179 try { 178 180 tree->print(option->verbose()); -
trunk/lib/BlameStats.h
r531 r533 46 46 47 47 private: 48 /// using compiler generated copy49 50 ///51 /// @brief adding a line to user from revision to the stats52 ///53 void add(const std::string& user, const u_int& revision,54 const Parser::line_type&);55 56 48 void do_parse(const std::string&); 57 49 -
trunk/lib/StatsCollection.cc
r532 r533 24 24 #include "StatsCollection.h" 25 25 26 #include "BlameStats.h" 26 27 #include "ClassicStats.h" 27 28 #include "Stats.h" … … 42 43 { 43 44 stats_["classic"] = new ClassicStats(path); 45 stats_["blame"] = new BlameStats(path); 44 46 } 45 47
Note: See TracChangeset
for help on using the changeset viewer.