summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoFooter.java
diff options
context:
space:
mode:
Diffstat (limited to 'org/madore/damlengine/TodoFooter.java')
-rw-r--r--org/madore/damlengine/TodoFooter.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org/madore/damlengine/TodoFooter.java b/org/madore/damlengine/TodoFooter.java
index 1744efb..33bd1fc 100644
--- a/org/madore/damlengine/TodoFooter.java
+++ b/org/madore/damlengine/TodoFooter.java
@@ -25,12 +25,14 @@ public final class TodoFooter extends TodoElement {
Element addr = ctx.doc.createElementNS(DamlEngine.XHTML_NS, "address");
footer.appendChild(addr);
footer.appendChild(ctx.doc.createTextNode("\n"));
+ addr.setAttributeNS(null, "class", "author vcard");
toProcess.add(TodoElement.getTodoElement(addr, this.ctx, this));
Element a = ctx.doc.createElementNS(DamlEngine.XHTML_NS, "a");
a.setAttributeNS(null, "href",
(ctx.gc.uriToTop==null)?"http://www.madore.org/~david/"
:ctx.gc.uriToTop);
// a.setAttributeNS(null, "rel", "author");
+ a.setAttributeNS(null, "class", "url fn");
addr.appendChild(a);
a.appendChild(ctx.doc.createTextNode("David Madore"));
addr.appendChild(ctx.doc.createTextNode(" ("));