diff --git a/ccm-cms/src/com/arsdigita/cms/ui/GlobalNavbar.java b/ccm-cms/src/com/arsdigita/cms/ui/GlobalNavbar.java deleted file mode 100755 index 76e17f045..000000000 --- a/ccm-cms/src/com/arsdigita/cms/ui/GlobalNavbar.java +++ /dev/null @@ -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); - } - -}