From b141f1e97992030303bbdc94375c460eaa67f281 Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Sat, 10 Sep 2011 23:52:45 +0200 Subject: Actually remove the rel="author" attribute on link to site root. This is a kind of bugware for Google which seems to see only the first rel="author" link and wants it to be a Google+ profile (the other option is to use rel="me", but I'm not too happy about that one). --- org/madore/damlengine/TodoFooter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org/madore/damlengine/TodoFooter.java b/org/madore/damlengine/TodoFooter.java index 215d5b7..1744efb 100644 --- a/org/madore/damlengine/TodoFooter.java +++ b/org/madore/damlengine/TodoFooter.java @@ -30,7 +30,7 @@ public final class TodoFooter extends TodoElement { a.setAttributeNS(null, "href", (ctx.gc.uriToTop==null)?"http://www.madore.org/~david/" :ctx.gc.uriToTop); - a.setAttributeNS(null, "rel", "author"); + // a.setAttributeNS(null, "rel", "author"); addr.appendChild(a); a.appendChild(ctx.doc.createTextNode("David Madore")); addr.appendChild(ctx.doc.createTextNode(" (")); -- cgit v1.2.3