GlobalNavbar gelöscht

Wird nicht verwendet, bietet keine sinnvollen Funktion

git-svn-id: https://svn.libreccm.org/ccm/trunk@2393 8810af33-2d31-482b-a856-94f89814c4df
master
quasi 2013-10-29 07:03:08 +00:00
parent 80c13748e8
commit 231ec5abf7
1 changed files with 0 additions and 62 deletions

View File

@ -1,62 +0,0 @@
/*
* Copyright (C) 2001-2004 Red Hat Inc. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
package com.arsdigita.cms.ui;
import com.arsdigita.bebop.DimensionalNavbar;
import com.arsdigita.bebop.Link;
import com.arsdigita.cms.dispatcher.Utilities;
import com.arsdigita.globalization.GlobalizedMessage;
// import com.arsdigita.kernel.security.LegacyInitializer;
import com.arsdigita.ui.UI;
/**
* Delimited dimensional navbar.
*
* @author David Lutterkort <dlutter@redhat.com>
* @version $Id: GlobalNavbar.java 1942 2009-05-29 07:53:23Z terry $
*/
public class GlobalNavbar extends DimensionalNavbar {
public GlobalNavbar() {
super();
setIdAttr("global-navbar");
setDelimiter(" - ");
// FIXME: Write online help, for the time being offer no link
// add(new Link("Help", "help"));
//String signOutURL = Utilities.getWebappContext() + "/" +
// LegacyInitializer.getURL(LegacyInitializer.LOGOUT_PAGE_KEY);
String signOutURL = Utilities.getWebappContext() + "/" +
UI.getLogoutPageURL();
add(new Link((String) globalize("cms.ui.sign_out").localize(),
signOutURL));
}
/**
* Getting the GlobalizedMessage using a CMS Class targetBundle.
*
* @param key The resource key
* @pre ( key != null )
*/
private static GlobalizedMessage globalize(String key) {
return ContentSectionPage.globalize(key);
}
}