From 81e1c864c1deba9d408461ee33a6b9307c536671 Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Thu, 7 Nov 2024 16:01:44 +0100 Subject: Update social networks footer. --- org/madore/damlengine/TodoFooter.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'org/madore/damlengine') 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 -- cgit v1.2.3