Changeset 1288
- Timestamp:
- Nov 9, 2010, 4:56:33 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/File.cc
r1287 r1288 222 222 void File::print_core(const bool verbose) const 223 223 { 224 if (!Configuration::instance().output_blame_information()) 225 return; 224 226 mkdir_p(directory_name(blame_output_file_name())); 225 227 std::ofstream os(blame_output_file_name().c_str()); 226 228 assert(os.good()); 227 229 print_html_start(os, "svndigest", level_+1); 228 if (Configuration::instance().output_blame_information()) 229 print_blame(os); 230 print_blame(os); 230 231 print_footer(os); 231 232 os.close(); … … 265 266 print_author_summary(os, stats_[stats_type], line_type, log); 266 267 os << "\n"; 267 os << "<h3>"268 << anchor(blame_output_file_name(),269 270 << "</h3>\n";268 if (Configuration::instance().output_blame_information()) 269 os << "<h3>" 270 << anchor(blame_output_file_name(), "Blame Information", level_+3) 271 << "</h3>\n"; 271 272 272 273 print_footer(os);
Note: See TracChangeset
for help on using the changeset viewer.