diff options
Diffstat (limited to 'org/madore/damlengine/TodoFooter.java')
-rw-r--r-- | org/madore/damlengine/TodoFooter.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/org/madore/damlengine/TodoFooter.java b/org/madore/damlengine/TodoFooter.java index cace28c..9af9df1 100644 --- a/org/madore/damlengine/TodoFooter.java +++ b/org/madore/damlengine/TodoFooter.java @@ -90,10 +90,17 @@ public final class TodoFooter extends TodoElement { addr.appendChild(ctx.doc.createElementNS(DamlEngine.XHTML_NS, "wbr")); addr.appendChild(ctx.doc.createTextNode("|")); a = ctx.doc.createElementNS(DamlEngine.XHTML_NS, "a"); + a.setAttributeNS(null, "href", "https://www.reddit.com/user/Gro-Tsen/"); + a.setAttributeNS(null, "rel", "me"); + addr.appendChild(a); + a.appendChild(ctx.doc.createTextNode("Reddit")); + addr.appendChild(ctx.doc.createElementNS(DamlEngine.XHTML_NS, "wbr")); + addr.appendChild(ctx.doc.createTextNode("|")); + a = ctx.doc.createElementNS(DamlEngine.XHTML_NS, "a"); a.setAttributeNS(null, "href", "http://www.facebook.com/grotsen"); a.setAttributeNS(null, "rel", "me"); addr.appendChild(a); - a.appendChild(ctx.doc.createTextNode("Facebook")); + a.appendChild(ctx.doc.createTextNode("Facebook (unused)")); addr.appendChild(ctx.doc.createTextNode(")")); Node ws = node.getNextSibling(); if ( ws != null && ( ws.getNodeType() == Node.TEXT_NODE |