Changeset 251


Ignore:
Timestamp:
Apr 29, 2007, 1:43:02 AM (16 years ago)
Author:
Peter Johansson
Message:

added some columns in author summary. Still we need to fill the table with values, and title to the tables, refs #163

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Node.cc

    r235 r251  
    130130    os << "<th>Code</th>\n";
    131131    os << "<th>Comments</th>\n";
     132    os << "<th>Other</th>\n";
     133    os << "<th>Revision</th>\n";
     134    os << "<th>Date</th>\n";
    132135    os << "</tr>\n</thead>\n";
    133136    os << "<tbody>";
     
    153156         << "</td><td>" << stats_.code(*i)
    154157         << "</td><td>" << stats_.comments(*i)
     158         << "</td><td>" << stats_.empty(*i)
     159         << "</td><td>"
     160         << "</td><td>"
    155161         << "</td></tr>\n";
    156162      if (color=="dark")
     
    172178    os << "<td>" << stats_.code() << "</td>\n";
    173179    os << "<td>" << stats_.comments() << "</td>\n";
     180    os << "<td>" << stats_.empty() << "</td>\n";
     181    os << "<td>" << "" << "</td>\n";
     182    os << "<td>" << "" << "</td>\n";
    174183    os << "</tr>\n";
    175184    os << "</table>\n";
Note: See TracChangeset for help on using the changeset viewer.