/* * HomeView.java * * This work 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 2 of the License, * or (at your option) any later version. * * This work 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, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * * Copyright (c) 2004 Per Cederberg. All rights reserved. */ package org.liquidsite.app.admin.view; import org.liquidsite.app.admin.AdminUtils; import org.liquidsite.core.content.User; import org.liquidsite.core.web.Request; /** * A helper class for the home view. This class contains methods for * creating the HTML responses to the various pages in the home view. * * @author Per Cederberg, <per at percederberg dot net> * @version 1.0 */ public class HomeView { /** * Creates a new home view helper. */ HomeView() { // Nothing to initialize } /** * Shows the home page. * * @param request the request object */ public void viewHome(Request request) { AdminUtils.sendTemplate(request, "admin/home.ftl"); } /** * Shows the edit user page. * * @param request the request object */ public void viewEditUser(Request request) { User user = request.getUser(); String str; str = request.getParameter("name", user.getRealName()); request.setAttribute("name", str); str = request.getParameter("email", user.getEmail()); request.setAttribute("email", str); AdminUtils.sendTemplate(request, "admin/edit-account.ftl"); } /** * Shows the edit password page. * * @param request the request object */ public void viewEditPassword(Request request) { request.setAttribute("passwordSuggestion", User.generatePassword()); AdminUtils.sendTemplate(request, "admin/edit-password.ftl"); } }