X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FAboutPage.java;h=87d98169159cce0dd561e8231cae5599bfeae09a;hb=1446a44248013bf023921c91f5e5d52254f63846;hp=4b54a4b63f96e31f6f570b48478eef587000a36d;hpb=d7bcd38db4837b86b58fd161922807cba567eaf6;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/AboutPage.java b/src/main/java/net/pterodactylus/sone/web/AboutPage.java index 4b54a4b..87d9816 100644 --- a/src/main/java/net/pterodactylus/sone/web/AboutPage.java +++ b/src/main/java/net/pterodactylus/sone/web/AboutPage.java @@ -1,5 +1,5 @@ /* - * Sone - AboutPage.java - Copyright © 2010–2013 David Roden + * Sone - AboutPage.java - Copyright © 2010–2016 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,11 +29,11 @@ import net.pterodactylus.util.version.Version; */ public class AboutPage extends SoneTemplatePage { - private final Version version; + private final String version; private final int year; private final String homepage; - public AboutPage(Template template, WebInterface webInterface, Version version, int year, String homepage) { + public AboutPage(Template template, WebInterface webInterface, String version, int year, String homepage) { super("about.html", template, "Page.About.Title", webInterface, false); this.version = version; this.year = year; @@ -41,8 +41,7 @@ public class AboutPage extends SoneTemplatePage { } @Override - protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException { - super.processTemplate(request, templateContext); + protected void handleRequest(FreenetRequest request, TemplateContext templateContext) throws RedirectException { templateContext.set("version", version); templateContext.set("year", year); templateContext.set("homepage", homepage);