Return-Path: X-Original-To: apmail-incubator-rave-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-rave-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0C6B3882D for ; Thu, 15 Sep 2011 12:35:30 +0000 (UTC) Received: (qmail 74648 invoked by uid 500); 15 Sep 2011 12:35:30 -0000 Delivered-To: apmail-incubator-rave-commits-archive@incubator.apache.org Received: (qmail 74624 invoked by uid 500); 15 Sep 2011 12:35:29 -0000 Mailing-List: contact rave-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: rave-dev@incubator.apache.org Delivered-To: mailing list rave-commits@incubator.apache.org Received: (qmail 74617 invoked by uid 99); 15 Sep 2011 12:35:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Sep 2011 12:35:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Sep 2011 12:35:28 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 38C2823888EA; Thu, 15 Sep 2011 12:35:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1171077 - in /incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags: custom_css.tag rave_generic_page.tag Date: Thu, 15 Sep 2011 12:35:08 -0000 To: rave-commits@incubator.apache.org From: jasha@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110915123508.38C2823888EA@eris.apache.org> Author: jasha Date: Thu Sep 15 12:35:07 2011 New Revision: 1171077 URL: http://svn.apache.org/viewvc?rev=1171077&view=rev Log: RAVE-140 add empty JSP tag that can be overridden in a war overlay for custom CSS Added: incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/custom_css.tag Modified: incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/rave_generic_page.tag Added: incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/custom_css.tag URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/custom_css.tag?rev=1171077&view=auto ============================================================================== --- incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/custom_css.tag (added) +++ incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/custom_css.tag Thu Sep 15 12:35:07 2011 @@ -0,0 +1,20 @@ +<%-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +--%> +<%-- intentionally left empty for override in war overlays --%> \ No newline at end of file Modified: incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/rave_generic_page.tag URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/rave_generic_page.tag?rev=1171077&r1=1171076&r2=1171077&view=diff ============================================================================== --- incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/rave_generic_page.tag (original) +++ incubator/rave/trunk/rave-portal/src/main/webapp/WEB-INF/tags/rave_generic_page.tag Thu Sep 15 12:35:07 2011 @@ -22,6 +22,7 @@ <%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%> <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%> +<%@ taglib prefix="rave" tagdir="/WEB-INF/tags" %> <%@ attribute name="pageTitle" required="false" description="The title of the page, will appear in the title bar" %> <%-- @@ -33,6 +34,7 @@ This tag will provide simple template la <c:out value="${pageTitle}"/><fmt:message key="page.general.titlesuffix"/> " /> +