diff options
author | David A. Madore <david+git@madore.org> | 2024-11-07 16:01:44 +0100 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2024-11-07 16:01:44 +0100 |
commit | 81e1c864c1deba9d408461ee33a6b9307c536671 (patch) | |
tree | a17328f6c4b1bf39bf477a479a7340f56df8769f /org/madore/damlengine/TodoFooter.java | |
parent | 8f1072bd03404a5406467ad67b94bf7ca5a85a7d (diff) | |
download | damlengine-81e1c864c1deba9d408461ee33a6b9307c536671.tar.gz damlengine-81e1c864c1deba9d408461ee33a6b9307c536671.tar.bz2 damlengine-81e1c864c1deba9d408461ee33a6b9307c536671.zip |
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 |