X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FAboutPage.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FAboutPage.java;h=f49ff311730a11684010fa4e12f42e189b71ec9a;hb=12dcccc5668bf645f88886d3a8ef25497622043d;hp=0000000000000000000000000000000000000000;hpb=fe341eae3ba9e2509bec78538905787309f36dcb;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 new file mode 100644 index 0000000..f49ff31 --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/web/AboutPage.java @@ -0,0 +1,73 @@ +/* + * Sone - AboutPage.java - Copyright © 2010 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 + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package net.pterodactylus.sone.web; + +import net.pterodactylus.util.template.Template; +import net.pterodactylus.util.version.Version; + +/** + * Shows some information about Sone. + * + * @author David ‘Bombe’ Roden + */ +public class AboutPage extends SoneTemplatePage { + + /** The version to display. */ + private final Version version; + + /** + * Creates a new “about” page. + * + * @param template + * The template to render + * @param webInterface + * The Sone web interface + * @param version + * The version to display + */ + public AboutPage(Template template, WebInterface webInterface, Version version) { + super("about.html", template, "Page.About.Title", webInterface); + this.version = version; + } + + // + // TEMPLATEPAGE METHODS + // + + /** + * {@inheritDoc} + */ + @Override + protected void processTemplate(Request request, Template template) throws RedirectException { + super.processTemplate(request, template); + template.set("version", version); + } + + // + // SONETEMPLATEPAGE METHODS + // + + /** + * {@inheritDoc} + */ + @Override + protected boolean requiresLogin() { + return false; + } + +}