summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
aaf306b)
Add links to get the key data and the verbose index for a key to the
HTML output of op=index. I think this was previously removed to try to
make gpg --search happy, but I've tested 1.2.4 with this change and it
still works.
}
keyid = (get_keyid(keys) & 0xFFFFFFFF);
}
keyid = (get_keyid(keys) & 0xFFFFFFFF);
- printf("pub %5d%c/%08X %04d/%02d/%02d ",
- length,
- (type == 1) ? 'R' : ((type == 16) ? 'g' :
- ((type == 17) ? 'D' : '?')),
- (uint32_t) keyid,
- created->tm_year + 1900,
- created->tm_mon + 1,
- created->tm_mday);
+
+ if (html) {
+ printf("pub %5d%c/<a href=\"lookup?op=get&"
+ "search=%08X\">%08X</a> %04d/%02d/%02d ",
+ length,
+ (type == 1) ? 'R' : ((type == 16) ? 'g' :
+ ((type == 17) ? 'D' : '?')),
+ (uint32_t) keyid,
+ (uint32_t) keyid,
+ created->tm_year + 1900,
+ created->tm_mon + 1,
+ created->tm_mday);
+ } else {
+ printf("pub %5d%c/%08X %04d/%02d/%02d ",
+ length,
+ (type == 1) ? 'R' : ((type == 16) ? 'g' :
+ ((type == 17) ? 'D' : '?')),
+ (uint32_t) keyid,
+ created->tm_year + 1900,
+ created->tm_mon + 1,
+ created->tm_mday);
+ }
curuid = keys->uids;
if (curuid != NULL && curuid->packet->tag == 13) {
snprintf(buf, 1023, "%.*s",
(int) curuid->packet->length,
curuid->packet->data);
curuid = keys->uids;
if (curuid != NULL && curuid->packet->tag == 13) {
snprintf(buf, 1023, "%.*s",
(int) curuid->packet->length,
curuid->packet->data);
+ if (html) {
+ printf("<a href=\"lookup?op=vindex&"
+ "search=0x%08X\">",
+ (uint32_t) keyid);
+ }
+ printf("%s%s%s\n",
(html) ? txt2html(buf) : buf,
(html) ? txt2html(buf) : buf,
(keys->revocations == NULL) ? "" :
" *** REVOKED ***");
if (fingerprint) {
(keys->revocations == NULL) ? "" :
" *** REVOKED ***");
if (fingerprint) {