- Timestamp:
- Jun 20, 2007, 11:34:21 PM (16 years ago)
- Location:
- trunk/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Directory.cc
r369 r378 178 178 os << "</h3>"; 179 179 os << "<table class=\"listings\">\n"; 180 os << "<thead> ";180 os << "<thead>\n"; 181 181 os << "<tr>\n"; 182 182 os << "<th>Node</th>\n"; … … 188 188 os << "<th>Author</th>\n"; 189 189 os << "</tr>\n</thead>\n"; 190 os << "<tbody> ";190 os << "<tbody>\n"; 191 191 192 192 std::string color("light"); … … 236 236 os << "<td>" << author() << "</td>\n"; 237 237 os << "</tr>\n"; 238 os << "</tbody>\n"; 238 239 os << "</table>\n"; 239 240 print_author_summary(os, line_type, log); -
trunk/lib/Node.cc
r370 r378 127 127 void Node::path_anchor(std::ostream& os) const 128 128 { 129 130 129 os << "<h2 class=\"path\">\n"; 131 130 std::vector<std::string> words; … … 180 179 os << "<h3>Author Summary</h3>"; 181 180 os << "<table class=\"listings\">\n"; 182 os << "<thead> ";181 os << "<thead>\n"; 183 182 os << "<tr>\n"; 184 183 os << "<th>Author</th>\n"; … … 190 189 os << "<th>Date</th>\n"; 191 190 os << "</tr>\n</thead>\n"; 192 os << "<tbody> ";191 os << "<tbody>\n"; 193 192 194 193 std::string color("light"); … … 248 247 os << "<td>" << lc.date()(timefmt)<< "</td>\n"; 249 248 os << "</tr>\n"; 249 os << "</tbody>\n"; 250 250 os << "</table>\n"; 251 252 251 } 253 252 -
trunk/lib/first_page.cc
r363 r378 91 91 << "General Information" 92 92 << "</th></tr></thead>\n" 93 << "<tbody>\n" 93 94 << "<tr><td>URL:</td><td>" 94 95 << url << "</td></tr>\n" … … 108 109 << "<tr><td>Number of Authors:</td><td>" << nof_authors 109 110 << "</td></tr>\n" 111 << "</tbody>\n" 110 112 << "</table></div>\n"; 111 113 }
Note: See TracChangeset
for help on using the changeset viewer.