l = snprintf(line, 4096,
"<TITLE>Select URL for %s</TITLE>\n"
"<H2>Select URL for %s</H2>\n"
- "<UL>\n", storeUrl(e), storeUrl(e));
+ "<TABLE BORDER=0 WIDTH=\"100%%\">\n", storeUrl(e), storeUrl(e));
stringAppend(S, line, l);
for (w = urls; w; w = w->next) {
request_t *tmpr=urlParse(urnState->request->method, w->key);
const cache_key *tmpk=storeKeyPublic(w->key,urnState->request->method);
tmpentry=storeGet(tmpk);
- l = snprintf(line, 4096, "<LI><A HREF=\"%s\">%s</A>", w->key, w->key);
if (tmpr && tmpr->host && (tmprtt=netdbHostRtt(tmpr->host)))
- l= snprintf(line, 4096, "<LI><A HREF=\"%s\">%s</A> %4.2f %s\n",
- w->key,w->key,tmprtt, tmpentry?"[cached]":" " );
+ l= snprintf(line, 4096, "<TR><TD><A HREF=\"%s\">%s</A></TD><TD align=right>%4.0f </it>ms</it></TD><TD>%s</TD></TR>\n",
+ w->key,w->key,tmprtt, tmpentry?" [cached]":" " );
else
- l = snprintf(line, 4096, "<LI><A HREF=\"%s\">%s</A>", w->key, w->key);
+ l = snprintf(line, 4096, "<TR><TD><A HREF=\"%s\">%s</A></TD></TR>", w->key, w->key);
stringAppend(S, line, l);
}
l = snprintf(line, 4096,
- "</UL>"
+ "</TABLE>"
"<HR>\n"
"<ADDRESS>\n"
"Generated by %s/%s@%s\n"