From: Jonathan McDowell Date: Mon, 31 May 2004 23:47:32 +0000 (+0000) Subject: cscvs to tla changeset 65 X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/commitdiff_plain/627ecb8d1b0aa57a41ed96359998861cca6b4466 cscvs to tla changeset 65 Author: noodles Date: 2003/03/12 18:28:08 Add "find reverse path" link for HTML output on findpath. --- diff --git a/stats.c b/stats.c index 538e888..2e63479 100644 --- a/stats.c +++ b/stats.c @@ -170,25 +170,25 @@ void dofindpath(uint64_t have, uint64_t want, bool html) " not found])%s
\n", curkey->keyid & 0xFFFFFFFF, curkey->keyid & 0xFFFFFFFF, - (curkey->keyid == want) ? "" : + (curkey->keyid == fullwant) ? "" : " signs"); } else if (html && uid != NULL) { printf("0x%08llX" " (%s)%s
\n", + "&search=0x%08llX\">%s)%s
\n", curkey->keyid & 0xFFFFFFFF, curkey->keyid & 0xFFFFFFFF, curkey->keyid & 0xFFFFFFFF, txt2html(uid), - (curkey->keyid == want) ? "" : + (curkey->keyid == fullwant) ? "" : " signs"); } else { printf("0x%08llX (%s)%s\n", curkey->keyid & 0xFFFFFFFF, (uid == NULL) ? "[User id not found]" : uid, - (curkey->keyid == want) ? "" : + (curkey->keyid == fullwant) ? "" : " signs"); } if (uid != NULL) { @@ -208,6 +208,13 @@ void dofindpath(uint64_t have, uint64_t want, bool html) curkey = findinhash(curkey->parent); } putchar('\n'); + if (html) { + printf("
" + "" + "Find reverse path\n", + want, + have); + } } }