From portal-commits at lists.jboss.org Thu Feb 7 06:12:39 2008 Content-Type: multipart/mixed; boundary="===============7540300319373161079==" MIME-Version: 1.0 From: portal-commits at lists.jboss.org To: portal-commits at lists.jboss.org Subject: [portal-commits] JBoss Portal SVN: r9832 - in modules/portlet/trunk/test/src: test/resources/simple-portal-war and 1 other directories. Date: Thu, 07 Feb 2008 06:12:39 -0500 Message-ID: --===============7540300319373161079== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: julien(a)jboss.com Date: 2008-02-07 06:12:39 -0500 (Thu, 07 Feb 2008) New Revision: 9832 Added: modules/portlet/trunk/test/src/main/java/org/jboss/portal/portlet/test/j= sp/taglib/PortletMarkupTag.java modules/portlet/trunk/test/src/main/java/org/jboss/portal/portlet/test/j= sp/taglib/PortletTitleTag.java Modified: modules/portlet/trunk/test/src/test/resources/simple-portal-war/WEB-INF/= portal.tld modules/portlet/trunk/test/src/test/resources/simple-portal-war/index.jsp Log: rename jsp tag markup and title to portletmarkup and portlettitle Copied: modules/portlet/trunk/test/src/main/java/org/jboss/portal/portlet/t= est/jsp/taglib/PortletMarkupTag.java (from rev 9831, modules/portlet/trunk/= test/src/main/java/org/jboss/portal/portlet/test/jsp/taglib/MarkupTag.java) =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- modules/portlet/trunk/test/src/main/java/org/jboss/portal/portlet/test/= jsp/taglib/PortletMarkupTag.java (rev 0) +++ modules/portlet/trunk/test/src/main/java/org/jboss/portal/portlet/test/= jsp/taglib/PortletMarkupTag.java 2008-02-07 11:12:39 UTC (rev 9832) @@ -0,0 +1,38 @@ +/*************************************************************************= ***** + * JBoss, a division of Red Hat = * + * Copyright 2008, Red Hat Middleware, LLC, and individual = * + * contributors as indicated by the @authors tag. See the = * + * copyright.txt in the distribution for a full listing of = * + * individual contributors. = * + * = * + * This 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 software 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 software; if not, write to the Free = * + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA = * + * 02110-1301 USA, or see the FSF site: http://www.fsf.org. = * + *************************************************************************= *****/ +package org.jboss.portal.portlet.test.jsp.taglib; + +import org.jboss.portal.portlet.test.jsp.response.Chunk; +import org.jboss.portal.portlet.test.jsp.response.portlet.PortletMarkupChu= nk; + +/** + * @author Julien Viet + * @version $Revision: 630 $ + */ +public class PortletMarkupTag extends SimpleChunkTagSupport +{ + protected Chunk doChunkTag() + { + return new PortletMarkupChunk(); + } +} Copied: modules/portlet/trunk/test/src/main/java/org/jboss/portal/portlet/t= est/jsp/taglib/PortletTitleTag.java (from rev 9831, modules/portlet/trunk/t= est/src/main/java/org/jboss/portal/portlet/test/jsp/taglib/TitleTag.java) =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- modules/portlet/trunk/test/src/main/java/org/jboss/portal/portlet/test/= jsp/taglib/PortletTitleTag.java (rev 0) +++ modules/portlet/trunk/test/src/main/java/org/jboss/portal/portlet/test/= jsp/taglib/PortletTitleTag.java 2008-02-07 11:12:39 UTC (rev 9832) @@ -0,0 +1,38 @@ +/*************************************************************************= ***** + * JBoss, a division of Red Hat = * + * Copyright 2008, Red Hat Middleware, LLC, and individual = * + * contributors as indicated by the @authors tag. See the = * + * copyright.txt in the distribution for a full listing of = * + * individual contributors. = * + * = * + * This 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 software 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 software; if not, write to the Free = * + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA = * + * 02110-1301 USA, or see the FSF site: http://www.fsf.org. = * + *************************************************************************= *****/ +package org.jboss.portal.portlet.test.jsp.taglib; + +import org.jboss.portal.portlet.test.jsp.response.Chunk; +import org.jboss.portal.portlet.test.jsp.response.portlet.StartPortletTitl= eChunk; + +/** + * @author Julien Viet + * @version $Revision: 630 $ + */ +public class PortletTitleTag extends SimpleChunkTagSupport +{ + protected Chunk doChunkTag() + { + return new StartPortletTitleChunk(); + } +} Modified: modules/portlet/trunk/test/src/test/resources/simple-portal-war/W= EB-INF/portal.tld =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- modules/portlet/trunk/test/src/test/resources/simple-portal-war/WEB-INF= /portal.tld 2008-02-07 11:10:06 UTC (rev 9831) +++ modules/portlet/trunk/test/src/test/resources/simple-portal-war/WEB-INF= /portal.tld 2008-02-07 11:12:39 UTC (rev 9832) @@ -43,14 +43,14 @@ = - markup - org.jboss.portal.portlet.test.jsp.taglib.MarkupTag + portletmarkup + org.jboss.portal.portlet.test.jsp.taglib.PortletMarkupTag= empty = - title - org.jboss.portal.portlet.test.jsp.taglib.TitleTag + portlettitle + org.jboss.portal.portlet.test.jsp.taglib.PortletTitleTag<= /tag-class> empty = Modified: modules/portlet/trunk/test/src/test/resources/simple-portal-war/i= ndex.jsp =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- modules/portlet/trunk/test/src/test/resources/simple-portal-war/index.j= sp 2008-02-07 11:10:06 UTC (rev 9831) +++ modules/portlet/trunk/test/src/test/resources/simple-portal-war/index.j= sp 2008-02-07 11:12:39 UTC (rev 9832) @@ -9,11 +9,11 @@ name=3D"GoogleWeather" applicationName=3D"google-weather-portlet"> -----------------------------------
-
+
">Minimized ">Derwood
-----------------------------------
- + -----------------------------------
****************************************************
@@ -21,9 +21,9 @@ name=3D"GoogleMap" applicationName=3D"google-map-portlet"> -----------------------------------
-
+
-----------------------------------
- + -----------------------------------
****************************************************
@@ -31,9 +31,9 @@ name=3D"RemoteControl" applicationName=3D"remotecontrol-portlet"> -----------------------------------
-
+
-----------------------------------
- + -----------------------------------
****************************************************
--===============7540300319373161079==--