Changeset 378 for trunk/lib


Ignore:
Timestamp:
Jun 20, 2007, 11:34:21 PM (16 years ago)
Author:
Jari Häkkinen
Message:

Fixing (closure of) html tags.

Location:
trunk/lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Directory.cc

    r369 r378  
    178178    os << "</h3>";     
    179179    os << "<table class=\"listings\">\n";
    180     os << "<thead>";
     180    os << "<thead>\n";
    181181    os << "<tr>\n";
    182182    os << "<th>Node</th>\n";
     
    188188    os << "<th>Author</th>\n";
    189189    os << "</tr>\n</thead>\n";
    190     os << "<tbody>";
     190    os << "<tbody>\n";
    191191
    192192    std::string color("light");
     
    236236    os << "<td>" << author() << "</td>\n";
    237237    os << "</tr>\n";
     238    os << "</tbody>\n";
    238239    os << "</table>\n";
    239240    print_author_summary(os, line_type, log);
  • trunk/lib/Node.cc

    r370 r378  
    127127  void Node::path_anchor(std::ostream& os) const
    128128  {
    129 
    130129    os << "<h2 class=\"path\">\n";
    131130    std::vector<std::string> words;
     
    180179    os << "<h3>Author Summary</h3>";
    181180    os << "<table class=\"listings\">\n";
    182     os << "<thead>";
     181    os << "<thead>\n";
    183182    os << "<tr>\n";
    184183    os << "<th>Author</th>\n";
     
    190189    os << "<th>Date</th>\n";
    191190    os << "</tr>\n</thead>\n";
    192     os << "<tbody>";
     191    os << "<tbody>\n";
    193192
    194193    std::string color("light");
     
    248247    os << "<td>" << lc.date()(timefmt)<< "</td>\n";
    249248    os << "</tr>\n";
     249    os << "</tbody>\n";
    250250    os << "</table>\n";
    251 
    252251  }
    253252
  • trunk/lib/first_page.cc

    r363 r378  
    9191       << "General Information"
    9292       << "</th></tr></thead>\n"
     93       << "<tbody>\n"
    9394       << "<tr><td>URL:</td><td>"
    9495       << url << "</td></tr>\n"
     
    108109       << "<tr><td>Number of Authors:</td><td>" << nof_authors
    109110       << "</td></tr>\n"
     111       << "</tbody>\n"
    110112       << "</table></div>\n";
    111113  }
Note: See TracChangeset for help on using the changeset viewer.