Module: $RCSfile: bbtkFactory.cxx,v $
Language: C++
-Date: $Date: 2008/02/04 13:51:30 $
-Version: $Revision: 1.10 $
+Date: $Date: 2008/02/04 14:12:47 $
+Version: $Revision: 1.11 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
std::vector<std::string> keys;
if (type==Packages)
{
- keys.push_back(pack->GetName());
- title = "Index by packages";
+ std::string k("");
+ k += pack->GetName();
+ keys.push_back(k);
+ title = "Index by package";
}
else if (type==Initials)
{
// {
// keys.push_back(*si);
// }
- title = "Index by keywords";
+ title = "Index by keyword";
}
std::vector<std::string>::const_iterator k;
//----------------------
// Html body
s << "<body>\n";
+ s << "<a name=\"Top\"></a>\n";
s << "<h1 class=\"settitle\">"<<title<<"</h1>\n";
-
+ s << "<p>\n";
IndexType::iterator ii;
for (ii=index.begin();ii!=index.end();++ii)
{
+ s << "<a href=\"#"<<ii->first<<"\">"<<ii->first<<"</a> ";
+ }
+
+ for (ii=index.begin();ii!=index.end();++ii)
+ {
+ s << "<p><hr>\n";
+ s << "<p><a href=\"#Top\">Top</a>";
+ s << "<a name=\""<<ii->first<<"\"></a>\n";
s << "<p><b>"<<ii->first<<"</b>\n";
s << "<ul>\n";