From 12dcccc5668bf645f88886d3a8ef25497622043d Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 27 Oct 2010 21:40:53 +0200 Subject: [PATCH] =?utf8?q?Show=20version=20information=20on=20=E2=80=9Cabo?= =?utf8?q?ut=E2=80=9D=20page.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../java/net/pterodactylus/sone/web/AboutPage.java | 73 ++++++++++++++++++++++ .../net/pterodactylus/sone/web/WebInterface.java | 2 +- src/main/resources/templates/about.html | 2 +- 3 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 src/main/java/net/pterodactylus/sone/web/AboutPage.java 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; + } + +} diff --git a/src/main/java/net/pterodactylus/sone/web/WebInterface.java b/src/main/java/net/pterodactylus/sone/web/WebInterface.java index affe76e..c27b530 100644 --- a/src/main/java/net/pterodactylus/sone/web/WebInterface.java +++ b/src/main/java/net/pterodactylus/sone/web/WebInterface.java @@ -251,7 +251,7 @@ public class WebInterface extends AbstractService { pageToadlets.add(pageToadletFactory.createPageToadlet(new BlacklistPage(blacklistTemplate, this), "Blacklist")); pageToadlets.add(pageToadletFactory.createPageToadlet(new BlacklistSonePage(blacklistSoneTemplate, this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new UnblacklistSonePage(unblacklistSoneTemplate, this))); - pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("about.html", aboutTemplate, "Page.About.Title", this), "About")); + pageToadlets.add(pageToadletFactory.createPageToadlet(new AboutPage(aboutTemplate, this, SonePlugin.VERSION), "About")); pageToadlets.add(pageToadletFactory.createPageToadlet(new SoneTemplatePage("noPermission.html", noPermissionTemplate, "Page.NoPermission.Title", this))); pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("css/", "/static/css/", "text/css"))); pageToadlets.add(pageToadletFactory.createPageToadlet(new StaticPage("javascript/", "/static/javascript/", "text/javascript"))); diff --git a/src/main/resources/templates/about.html b/src/main/resources/templates/about.html index c401b02..c572a57 100644 --- a/src/main/resources/templates/about.html +++ b/src/main/resources/templates/about.html @@ -2,7 +2,7 @@

<%= Page.About.Page.Title|l10n|html>

-

Sone – The Freenet Social Network Plugin, © 2010 by David ‘Bombe’ Roden.

+

Sone – The Freenet Social Network Plugin, Version <% version|html>, © 2010 by David ‘Bombe’ Roden.

This program is free software: you can redistribute it and/or modify -- 2.7.4