You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(544) |
May
(1715) |
Jun
(1059) |
Jul
(886) |
Aug
(1214) |
Sep
(1375) |
Oct
(1664) |
Nov
(1153) |
Dec
(1084) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(1630) |
Feb
(1634) |
Mar
(1979) |
Apr
(1119) |
May
(1850) |
Jun
(1231) |
Jul
(1168) |
Aug
(1840) |
Sep
(1038) |
Oct
(1127) |
Nov
(1458) |
Dec
(854) |
2004 |
Jan
(1145) |
Feb
(1064) |
Mar
(2242) |
Apr
(1728) |
May
(1346) |
Jun
(1280) |
Jul
(1681) |
Aug
(2388) |
Sep
(2233) |
Oct
(3246) |
Nov
(3248) |
Dec
(1775) |
2005 |
Jan
(3407) |
Feb
(3049) |
Mar
(2402) |
Apr
(3687) |
May
(3289) |
Jun
(5731) |
Jul
(3905) |
Aug
(5843) |
Sep
(5149) |
Oct
(6866) |
Nov
(4051) |
Dec
(4646) |
2006 |
Jan
(7356) |
Feb
(4713) |
Mar
(9447) |
Apr
(6553) |
May
(6206) |
Jun
(4301) |
Jul
(1160) |
Aug
(23) |
Sep
(11) |
Oct
(19) |
Nov
(26) |
Dec
(15) |
2007 |
Jan
(28) |
Feb
(24) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Ales J. <ale...@ge...> - 2006-07-09 13:18:51
|
User: alesj Date: 06/07/09 09:18:50 Modified: src/test/org/jboss/tutorial/ee/service Horoscope.java Randomizer.java Log: Reformat code + Spring-MC fix. Revision Changes Path 1.3 +3 -1 jboss-spring/src/test/org/jboss/tutorial/ee/service/Horoscope.java (In the diff below, changes in quantity of whitespace are not shown.) Index: Horoscope.java =================================================================== RCS file: /cvsroot/jboss/jboss-spring/src/test/org/jboss/tutorial/ee/service/Horoscope.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- Horoscope.java 29 Oct 2005 23:58:12 -0000 1.2 +++ Horoscope.java 9 Jul 2006 13:18:50 -0000 1.3 @@ -25,7 +25,9 @@ /** * @author <a href="mailto:ale...@ge...">Ales Justin</a> */ -public interface Horoscope { +public interface Horoscope +{ String getHoroscope(int month); + void clear(); } 1.3 +3 -1 jboss-spring/src/test/org/jboss/tutorial/ee/service/Randomizer.java (In the diff below, changes in quantity of whitespace are not shown.) Index: Randomizer.java =================================================================== RCS file: /cvsroot/jboss/jboss-spring/src/test/org/jboss/tutorial/ee/service/Randomizer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- Randomizer.java 29 Oct 2005 23:58:12 -0000 1.2 +++ Randomizer.java 9 Jul 2006 13:18:50 -0000 1.3 @@ -25,7 +25,9 @@ /** * @author <a href="mailto:ale...@ge...">Ales Justin</a> */ -public interface Randomizer { +public interface Randomizer +{ int getNumber(int radius); + String getWord(); } |
From: Ales J. <ale...@ge...> - 2006-07-09 13:18:51
|
User: alesj Date: 06/07/09 09:18:50 Modified: src/test/org/jboss/tutorial/ee/service/impl HoroscopeBean.java RandomizerBean.java Log: Reformat code + Spring-MC fix. Revision Changes Path 1.8 +15 -10 jboss-spring/src/test/org/jboss/tutorial/ee/service/impl/HoroscopeBean.java (In the diff below, changes in quantity of whitespace are not shown.) Index: HoroscopeBean.java =================================================================== RCS file: /cvsroot/jboss/jboss-spring/src/test/org/jboss/tutorial/ee/service/impl/HoroscopeBean.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- HoroscopeBean.java 5 Jun 2006 11:08:32 -0000 1.7 +++ HoroscopeBean.java 9 Jul 2006 13:18:49 -0000 1.8 @@ -22,23 +22,25 @@ package org.jboss.tutorial.ee.service.impl; -import java.io.Serializable; -import java.util.Set; -import java.util.TreeSet; -import javax.ejb.Remove; -import javax.ejb.Stateful; -import javax.interceptor.Interceptors; import org.jboss.annotation.spring.Spring; import org.jboss.spring.callback.SpringLifecycleInterceptor; import org.jboss.tutorial.ee.service.Horoscope; import org.jboss.tutorial.spring.WordsCreator; +import javax.ejb.Remove; +import javax.ejb.Stateful; +import javax.interceptor.Interceptors; +import java.io.Serializable; +import java.util.Set; +import java.util.TreeSet; + /** * @author <a href="mailto:ale...@ge...">Ales Justin</a> */ @Stateful @Interceptors(SpringLifecycleInterceptor.class) -public class HoroscopeBean implements Horoscope, Serializable { +public class HoroscopeBean implements Horoscope, Serializable +{ private static final long serialVersionUID = 2300669204640707036L; @@ -47,16 +49,19 @@ @Spring(jndiName = "spring-pojo", bean = "horoscopeSentenceCreator") private WordsCreator horoscopeCreator; - public String getHoroscope(int month) { + public String getHoroscope(int month) + { String sentence = horoscopeCreator.createWord(); - if (!sentences.add(sentence)) { + if (!sentences.add(sentence)) + { System.out.println("Repeating horoscope sentence."); } return sentence; } @Remove - public void clear() { + public void clear() + { sentences.clear(); } 1.3 +12 -7 jboss-spring/src/test/org/jboss/tutorial/ee/service/impl/RandomizerBean.java (In the diff below, changes in quantity of whitespace are not shown.) Index: RandomizerBean.java =================================================================== RCS file: /cvsroot/jboss/jboss-spring/src/test/org/jboss/tutorial/ee/service/impl/RandomizerBean.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- RandomizerBean.java 29 Oct 2005 23:58:12 -0000 1.2 +++ RandomizerBean.java 9 Jul 2006 13:18:49 -0000 1.3 @@ -33,27 +33,32 @@ * @author <a href="mailto:ale...@ge...">Ales Justin</a> */ @Stateless -public class RandomizerBean implements Randomizer { +public class RandomizerBean implements Randomizer +{ private WordsCreator wordsCreator; - @Spring(jndiName = "spring-pojo", bean="stateIntCreator") + @Spring(jndiName = "spring-pojo", bean = "stateIntCreator") private IntCreator intCreator; - public WordsCreator getWordsCreator() { + public WordsCreator getWordsCreator() + { return wordsCreator; } - @Spring(jndiName = "spring-pojo", bean="staticWordsCreator") - public void setWordsCreator(WordsCreator wordsCreator) { + @Spring(jndiName = "spring-pojo", bean = "staticWordsCreator") + public void setWordsCreator(WordsCreator wordsCreator) + { this.wordsCreator = wordsCreator; } - public int getNumber(int radius) { + public int getNumber(int radius) + { return intCreator.createInt(radius); } - public String getWord() { + public String getWord() + { return getWordsCreator().createWord(); } |
From: Ales J. <ale...@ge...> - 2006-07-09 13:18:51
|
User: alesj Date: 06/07/09 09:18:49 Modified: src/resources jboss-service.xml Log: Reformat code + Spring-MC fix. Revision Changes Path 1.3 +7 -7 jboss-spring/src/resources/jboss-service.xml (In the diff below, changes in quantity of whitespace are not shown.) Index: jboss-service.xml =================================================================== RCS file: /cvsroot/jboss/jboss-spring/src/resources/jboss-service.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- jboss-service.xml 4 Nov 2005 15:41:45 -0000 1.2 +++ jboss-service.xml 9 Jul 2006 13:18:49 -0000 1.3 @@ -3,7 +3,6 @@ <!DOCTYPE server> - <server> <!-- @@ -13,7 +12,8 @@ <!--<mbean code="org.jboss.spring.deployment.SpringBeanFactoryDeployer" name="jboss.spring:service=SpringBeanFactoryDeployer" />--> - <mbean code="org.jboss.spring.deployment.SpringApplicationContextDeployer" name="jboss.spring:service=SpringApplicationContextDeployer" /> + <mbean code="org.jboss.spring.deployment.SpringApplicationContextDeployer" + name="jboss.spring:service=SpringApplicationContextDeployer"/> </server> |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:22
|
User: julien Date: 06/07/09 08:04:20 Modified: wsrp/src/main/org/jboss/portal/wsrp/consumer/portlet/info WSRPPortletInfo.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.13 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/consumer/portlet/info/WSRPPortletInfo.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPPortletInfo.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/consumer/portlet/info/WSRPPortletInfo.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -b -r1.12 -r1.13 --- WSRPPortletInfo.java 2 Jul 2006 21:03:42 -0000 1.12 +++ WSRPPortletInfo.java 9 Jul 2006 12:04:20 -0000 1.13 @@ -22,8 +22,8 @@ package org.jboss.portal.wsrp.consumer.portlet.info; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.util.LocaleInfo; import org.jboss.portal.portlet.info.CacheInfo; import org.jboss.portal.portlet.info.CapabilitiesInfo; @@ -47,7 +47,7 @@ /** * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.12 $ + * @version $Revision: 1.13 $ * @since 2.4 (Apr 30, 2006) */ public class WSRPPortletInfo implements org.jboss.portal.portlet.info.PortletInfo |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:22
|
User: julien Date: 06/07/09 08:04:20 Modified: wsrp/src/main/org/jboss/portal/wsrp/invocation WSRPActionContext.java WSRPInvocationContext.java WSRPRenderContext.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.10 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/invocation/WSRPActionContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPActionContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/invocation/WSRPActionContext.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -b -r1.9 -r1.10 --- WSRPActionContext.java 7 May 2006 13:57:09 -0000 1.9 +++ WSRPActionContext.java 9 Jul 2006 12:04:20 -0000 1.10 @@ -22,8 +22,8 @@ package org.jboss.portal.wsrp.invocation; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.portlet.StateString; import org.jboss.portal.portlet.spi.ActionContext; import org.jboss.portal.portlet.spi.InstanceContext; @@ -43,7 +43,7 @@ /** * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.9 $ + * @version $Revision: 1.10 $ * @since 2.4 */ public class WSRPActionContext extends WSRPInvocationContext implements ActionContext 1.25 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/invocation/WSRPInvocationContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPInvocationContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/invocation/WSRPInvocationContext.java,v retrieving revision 1.24 retrieving revision 1.25 diff -u -b -r1.24 -r1.25 --- WSRPInvocationContext.java 7 May 2006 13:57:09 -0000 1.24 +++ WSRPInvocationContext.java 9 Jul 2006 12:04:20 -0000 1.25 @@ -21,8 +21,8 @@ */ package org.jboss.portal.wsrp.invocation; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.portlet.PortletURL; import org.jboss.portal.portlet.impl.spi.AbstractInvocationContext; import org.jboss.portal.portlet.invocation.PortletInvocation; @@ -45,7 +45,7 @@ /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.24 $ + * @version $Revision: 1.25 $ */ public class WSRPInvocationContext extends AbstractInvocationContext implements InvocationContext { 1.11 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/invocation/WSRPRenderContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPRenderContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/invocation/WSRPRenderContext.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -b -r1.10 -r1.11 --- WSRPRenderContext.java 7 May 2006 13:57:09 -0000 1.10 +++ WSRPRenderContext.java 9 Jul 2006 12:04:20 -0000 1.11 @@ -21,8 +21,8 @@ */ package org.jboss.portal.wsrp.invocation; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.portlet.StateString; import org.jboss.portal.portlet.spi.InstanceContext; import org.jboss.portal.portlet.spi.PortalContext; @@ -34,7 +34,7 @@ /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.10 $ + * @version $Revision: 1.11 $ */ public class WSRPRenderContext extends WSRPInvocationContext implements RenderContext { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:21
|
User: julien Date: 06/07/09 08:04:19 Modified: wsrp/src/main/org/jboss/portal/wsrp WSRPActionURL.java WSRPPortletURL.java WSRPRenderURL.java WSRPResourceURL.java WSRPTypeFactory.java WSRPUtils.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.4 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPActionURL.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPActionURL.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPActionURL.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- WSRPActionURL.java 2 Jun 2006 18:26:01 -0000 1.3 +++ WSRPActionURL.java 9 Jul 2006 12:04:19 -0000 1.4 @@ -21,8 +21,8 @@ */ package org.jboss.portal.wsrp; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.portlet.ActionURL; import org.jboss.portal.portlet.StateString; @@ -30,7 +30,7 @@ /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ */ public class WSRPActionURL extends WSRPPortletURL implements ActionURL { 1.13 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPPortletURL.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPPortletURL.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPPortletURL.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -b -r1.12 -r1.13 --- WSRPPortletURL.java 2 Jun 2006 22:56:54 -0000 1.12 +++ WSRPPortletURL.java 9 Jul 2006 12:04:19 -0000 1.13 @@ -23,8 +23,8 @@ package org.jboss.portal.wsrp; import org.jboss.logging.Logger; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.util.Tools; import org.jboss.portal.portlet.ActionURL; import org.jboss.portal.portlet.PortletURL; @@ -36,7 +36,7 @@ /** * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.12 $ + * @version $Revision: 1.13 $ * @since 2.4 (Apr 28, 2006) */ public abstract class WSRPPortletURL implements PortletURL 1.4 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPRenderURL.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPRenderURL.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPRenderURL.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- WSRPRenderURL.java 2 Jun 2006 18:26:01 -0000 1.3 +++ WSRPRenderURL.java 9 Jul 2006 12:04:19 -0000 1.4 @@ -21,8 +21,8 @@ */ package org.jboss.portal.wsrp; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.portlet.RenderURL; import org.jboss.portal.portlet.StateString; @@ -30,7 +30,7 @@ /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ */ public class WSRPRenderURL extends WSRPPortletURL implements RenderURL { 1.2 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPResourceURL.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPResourceURL.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPResourceURL.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- WSRPResourceURL.java 2 Jun 2006 22:56:54 -0000 1.1 +++ WSRPResourceURL.java 9 Jul 2006 12:04:19 -0000 1.2 @@ -22,8 +22,8 @@ package org.jboss.portal.wsrp; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.MediaType; import org.jboss.portal.common.util.URLTools; @@ -34,7 +34,7 @@ /** * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ * @since 2.4 */ public class WSRPResourceURL extends WSRPPortletURL 1.20 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPTypeFactory.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPTypeFactory.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPTypeFactory.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -b -r1.19 -r1.20 --- WSRPTypeFactory.java 2 Jun 2006 22:56:54 -0000 1.19 +++ WSRPTypeFactory.java 9 Jul 2006 12:04:19 -0000 1.20 @@ -22,8 +22,8 @@ package org.jboss.portal.wsrp; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.util.ParameterValidation; import org.jboss.portal.common.util.Tools; import org.jboss.portal.portlet.ActionURL; @@ -61,7 +61,7 @@ * information. * * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.19 $ + * @version $Revision: 1.20 $ * @since 2.4 */ public class WSRPTypeFactory 1.19 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPUtils.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WSRPUtils.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/WSRPUtils.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -b -r1.18 -r1.19 --- WSRPUtils.java 4 Jul 2006 21:05:52 -0000 1.18 +++ WSRPUtils.java 9 Jul 2006 12:04:19 -0000 1.19 @@ -22,8 +22,8 @@ package org.jboss.portal.wsrp; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.util.LocaleInfo; import org.jboss.portal.common.util.ParameterValidation; import org.jboss.portal.portlet.ActionURL; @@ -44,7 +44,7 @@ /** * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.18 $ + * @version $Revision: 1.19 $ * @since 2.4 */ public class WSRPUtils |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:21
|
User: julien Date: 06/07/09 08:04:19 Modified: wsrp/src/main/org/jboss/portal/test/wsrp/v1/consumer MarkupTestCase.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.16 +3 -3 jboss-portal/wsrp/src/main/org/jboss/portal/test/wsrp/v1/consumer/MarkupTestCase.java (In the diff below, changes in quantity of whitespace are not shown.) Index: MarkupTestCase.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/test/wsrp/v1/consumer/MarkupTestCase.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -b -r1.15 -r1.16 --- MarkupTestCase.java 1 Jul 2006 05:34:57 -0000 1.15 +++ MarkupTestCase.java 9 Jul 2006 12:04:19 -0000 1.16 @@ -22,8 +22,8 @@ package org.jboss.portal.test.wsrp.v1.consumer; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.MediaType; import org.jboss.portal.common.util.Tools; import org.jboss.portal.portlet.PortletURL; @@ -74,7 +74,7 @@ /** * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.15 $ + * @version $Revision: 1.16 $ * @since 2.4 (May 4, 2006) */ public class MarkupTestCase extends V1ConsumerBaseTest |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:21
|
User: julien Date: 06/07/09 08:04:18 Modified: theme/src/main/org/jboss/portal/theme/impl/render DivWindowRenderer.java EmptyWindowRenderer.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.15 +1 -1 jboss-portal/theme/src/main/org/jboss/portal/theme/impl/render/DivWindowRenderer.java (In the diff below, changes in quantity of whitespace are not shown.) Index: DivWindowRenderer.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/theme/impl/render/DivWindowRenderer.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -b -r1.14 -r1.15 --- DivWindowRenderer.java 21 Mar 2006 22:33:42 -0000 1.14 +++ DivWindowRenderer.java 9 Jul 2006 12:04:18 -0000 1.15 @@ -22,7 +22,7 @@ package org.jboss.portal.theme.impl.render; import org.apache.log4j.Logger; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.theme.page.WindowContext; import org.jboss.portal.theme.page.WindowResult; import org.jboss.portal.theme.render.DecorationRenderer; 1.10 +1 -1 jboss-portal/theme/src/main/org/jboss/portal/theme/impl/render/EmptyWindowRenderer.java (In the diff below, changes in quantity of whitespace are not shown.) Index: EmptyWindowRenderer.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/theme/impl/render/EmptyWindowRenderer.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -b -r1.9 -r1.10 --- EmptyWindowRenderer.java 21 Mar 2006 22:33:42 -0000 1.9 +++ EmptyWindowRenderer.java 9 Jul 2006 12:04:18 -0000 1.10 @@ -21,7 +21,7 @@ */ package org.jboss.portal.theme.impl.render; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.theme.page.WindowContext; import org.jboss.portal.theme.page.WindowResult; import org.jboss.portal.theme.render.RenderContext; |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:21
|
User: julien Date: 06/07/09 08:04:19 Modified: theme/src/main/org/jboss/portal/theme/strategy NavigationalStateChangedEvent.java StrategyContext.java StrategyResponse.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.3 +3 -3 jboss-portal/theme/src/main/org/jboss/portal/theme/strategy/NavigationalStateChangedEvent.java (In the diff below, changes in quantity of whitespace are not shown.) Index: NavigationalStateChangedEvent.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/theme/strategy/NavigationalStateChangedEvent.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- NavigationalStateChangedEvent.java 18 Apr 2006 14:06:10 -0000 1.2 +++ NavigationalStateChangedEvent.java 9 Jul 2006 12:04:19 -0000 1.3 @@ -1,12 +1,12 @@ package org.jboss.portal.theme.strategy; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.theme.page.WindowContext; /** * @author <a href="mailto:mho...@no...">Martin Holzner</a> - * @version $Revision: 1.2 $ + * @version $Revision: 1.3 $ */ public class NavigationalStateChangedEvent extends StrategyEvent { 1.13 +3 -3 jboss-portal/theme/src/main/org/jboss/portal/theme/strategy/StrategyContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: StrategyContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/theme/strategy/StrategyContext.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -b -r1.12 -r1.13 --- StrategyContext.java 5 Apr 2006 14:04:47 -0000 1.12 +++ StrategyContext.java 9 Jul 2006 12:04:19 -0000 1.13 @@ -22,8 +22,8 @@ package org.jboss.portal.theme.strategy; import org.apache.log4j.Logger; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.MediaType; import org.jboss.portal.server.navigation.NavigationalStateContext; import org.jboss.portal.server.util.HTTPStreamInfo; @@ -46,7 +46,7 @@ * the state of those windowIds, etc.</p> * * @author <a href="mailto:mho...@no...">Martin Holzner</a>. - * @version <tt>$Revision: 1.12 $</tt> + * @version <tt>$Revision: 1.13 $</tt> * @see org.jboss.portal.theme.strategy.StrategyContext */ public final class StrategyContext 1.8 +3 -3 jboss-portal/theme/src/main/org/jboss/portal/theme/strategy/StrategyResponse.java (In the diff below, changes in quantity of whitespace are not shown.) Index: StrategyResponse.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/theme/strategy/StrategyResponse.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- StrategyResponse.java 21 Mar 2006 22:33:44 -0000 1.7 +++ StrategyResponse.java 9 Jul 2006 12:04:19 -0000 1.8 @@ -21,8 +21,8 @@ */ package org.jboss.portal.theme.strategy; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.theme.page.WindowContext; import java.util.ArrayList; @@ -37,7 +37,7 @@ * <p>This response is a context for a layout stategy to use in order to communicate desired changes back to the portal.</p> * * @author <a href="mailto:mho...@no...">Martin Holzner</a>. - * @version <tt>$Revision: 1.7 $</tt> + * @version <tt>$Revision: 1.8 $</tt> */ public final class StrategyResponse { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:21
|
User: julien Date: 06/07/09 08:04:18 Modified: theme/src/main/org/jboss/portal/theme/navigation WindowNavigationalState.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.3 +3 -3 jboss-portal/theme/src/main/org/jboss/portal/theme/navigation/WindowNavigationalState.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WindowNavigationalState.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/theme/navigation/WindowNavigationalState.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- WindowNavigationalState.java 21 Apr 2006 23:32:06 -0000 1.2 +++ WindowNavigationalState.java 9 Jul 2006 12:04:18 -0000 1.3 @@ -21,14 +21,14 @@ */ package org.jboss.portal.theme.navigation; -import org.jboss.portal.WindowState; -import org.jboss.portal.Mode; +import org.jboss.portal.portlet.WindowState; +import org.jboss.portal.portlet.Mode; import java.io.Serializable; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.2 $ + * @version $Revision: 1.3 $ */ public class WindowNavigationalState implements Serializable { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:21
|
User: julien Date: 06/07/09 08:04:19 Modified: theme/src/main/org/jboss/portal/theme/render MarkupResult.java RenderContext.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.9 +4 -4 jboss-portal/theme/src/main/org/jboss/portal/theme/render/MarkupResult.java (In the diff below, changes in quantity of whitespace are not shown.) Index: MarkupResult.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/theme/render/MarkupResult.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -b -r1.8 -r1.9 --- MarkupResult.java 5 Apr 2006 22:28:25 -0000 1.8 +++ MarkupResult.java 9 Jul 2006 12:04:19 -0000 1.9 @@ -21,8 +21,8 @@ */ package org.jboss.portal.theme.render; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.server.navigation.NavigationalStateContext; import org.jboss.portal.theme.navigation.WindowNavigationalState; import org.jboss.portal.theme.page.WindowContext; @@ -37,7 +37,7 @@ * The resulting markup fragment from a render process. * * @author <a href="mailto:mho...@no...">Martin Holzner</a> - * @version $Revision: 1.8 $ + * @version $Revision: 1.9 $ */ public abstract class MarkupResult { @@ -178,7 +178,7 @@ * @param windowId the identifier of the window on the page * @return the window state of the provided window * @throws IllegalStateException if no navigational state context was provided for this markup result - * @see WindowState + * @see org.jboss.portal.portlet.WindowState * @see WindowNavigationalState */ public WindowState getWindowState(String windowId) 1.19 +2 -2 jboss-portal/theme/src/main/org/jboss/portal/theme/render/RenderContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: RenderContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/theme/render/RenderContext.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -b -r1.18 -r1.19 --- RenderContext.java 6 Apr 2006 15:42:39 -0000 1.18 +++ RenderContext.java 9 Jul 2006 12:04:19 -0000 1.19 @@ -21,8 +21,8 @@ */ package org.jboss.portal.theme.render; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.MediaType; import org.jboss.portal.server.ServerRequest; import org.jboss.portal.server.util.HTTPStreamInfo; |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:21
|
User: julien Date: 06/07/09 08:04:18 Removed: server/src/main/org/jboss/portal Mode.java WindowState.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:20
|
User: julien Date: 06/07/09 08:04:18 Modified: theme/src/main/org/jboss/portal/test/theme/render TestRenderContext.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.16 +3 -3 jboss-portal/theme/src/main/org/jboss/portal/test/theme/render/TestRenderContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TestRenderContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/test/theme/render/TestRenderContext.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -b -r1.15 -r1.16 --- TestRenderContext.java 28 May 2006 01:03:10 -0000 1.15 +++ TestRenderContext.java 9 Jul 2006 12:04:18 -0000 1.16 @@ -1,8 +1,8 @@ package org.jboss.portal.test.theme.render; import junit.framework.TestCase; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.MediaType; import org.jboss.portal.server.ServerRequest; import org.jboss.portal.server.navigation.NavigationalStateContext; @@ -31,7 +31,7 @@ /** * @author <a href="mailto:mho...@no...">Martin Holzner</a> - * @version $Revision: 1.15 $ + * @version $Revision: 1.16 $ */ public class TestRenderContext extends TestCase { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:20
|
User: julien Date: 06/07/09 08:04:18 Modified: theme/src/main/org/jboss/portal/theme/impl/strategy MaximizingStrategyImpl.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.8 +2 -2 jboss-portal/theme/src/main/org/jboss/portal/theme/impl/strategy/MaximizingStrategyImpl.java (In the diff below, changes in quantity of whitespace are not shown.) Index: MaximizingStrategyImpl.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/theme/impl/strategy/MaximizingStrategyImpl.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- MaximizingStrategyImpl.java 7 Apr 2006 16:00:22 -0000 1.7 +++ MaximizingStrategyImpl.java 9 Jul 2006 12:04:18 -0000 1.8 @@ -22,7 +22,7 @@ package org.jboss.portal.theme.impl.strategy; import org.apache.log4j.Logger; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.theme.page.WindowContext; import org.jboss.portal.theme.strategy.LayoutStrategy; import org.jboss.portal.theme.strategy.NavigationalStateChangedEvent; @@ -37,7 +37,7 @@ /** * @author <a href="mailto:mho...@no...">Martin Holzner</a> - * @version $Revision: 1.7 $ + * @version $Revision: 1.8 $ */ public class MaximizingStrategyImpl extends LayoutStrategy { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:20
|
User: julien Date: 06/07/09 08:04:18 Modified: theme/src/main/org/jboss/portal/test/theme TestHelper.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.17 +3 -3 jboss-portal/theme/src/main/org/jboss/portal/test/theme/TestHelper.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TestHelper.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/theme/src/main/org/jboss/portal/test/theme/TestHelper.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -b -r1.16 -r1.17 --- TestHelper.java 8 Jul 2006 00:33:07 -0000 1.16 +++ TestHelper.java 9 Jul 2006 12:04:18 -0000 1.17 @@ -21,8 +21,8 @@ */ package org.jboss.portal.test.theme; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.server.ServerRequest; import org.jboss.portal.server.ServerRequestContext; import org.jboss.portal.server.request.URLContext; @@ -80,7 +80,7 @@ /** * @author <a href="mailto:mho...@no...">Martin Holzner</a> - * @version $Revision: 1.16 $ + * @version $Revision: 1.17 $ */ public class TestHelper { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:19
|
User: julien Date: 06/07/09 08:04:17 Modified: portlet/src/main/org/jboss/portal/test/server ContentTypesTestCase.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.7 +2 -2 jboss-portal/portlet/src/main/org/jboss/portal/test/server/ContentTypesTestCase.java (In the diff below, changes in quantity of whitespace are not shown.) Index: ContentTypesTestCase.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/test/server/ContentTypesTestCase.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -b -r1.6 -r1.7 --- ContentTypesTestCase.java 3 May 2006 21:00:14 -0000 1.6 +++ ContentTypesTestCase.java 9 Jul 2006 12:04:17 -0000 1.7 @@ -23,7 +23,7 @@ package org.jboss.portal.test.server; import junit.framework.TestCase; -import org.jboss.portal.Mode; +import org.jboss.portal.portlet.Mode; import org.jboss.portal.portlet.container.info.ContentTypes; import org.jboss.portal.portlet.impl.jsr168.metadata.ContentTypeMetaData; import org.jboss.portal.portlet.impl.jsr168.metadata.ContentTypesMetaData; @@ -32,7 +32,7 @@ /** * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.6 $ + * @version $Revision: 1.7 $ * @since 2.4 */ public class ContentTypesTestCase extends TestCase |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:19
|
User: julien Date: 06/07/09 08:04:17 Modified: portlet/src/main/org/jboss/portal/portlet/support/spi InvocationContextSupport.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.3 +3 -3 jboss-portal/portlet/src/main/org/jboss/portal/portlet/support/spi/InvocationContextSupport.java (In the diff below, changes in quantity of whitespace are not shown.) Index: InvocationContextSupport.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/support/spi/InvocationContextSupport.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- InvocationContextSupport.java 18 Jun 2006 03:25:11 -0000 1.2 +++ InvocationContextSupport.java 9 Jul 2006 12:04:17 -0000 1.3 @@ -24,13 +24,13 @@ import org.jboss.portal.portlet.spi.InvocationContext; import org.jboss.portal.portlet.StateString; import org.jboss.portal.portlet.PortletURL; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.server.util.HTTPStreamInfo; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.2 $ + * @version $Revision: 1.3 $ */ public class InvocationContextSupport implements InvocationContext { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:19
|
User: julien Date: 06/07/09 08:04:17 Modified: portlet/src/main/org/jboss/portal/portlet/test/support/info ModeInfoSupport.java WindowStateInfoSupport.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.2 +1 -1 jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/support/info/ModeInfoSupport.java (In the diff below, changes in quantity of whitespace are not shown.) Index: ModeInfoSupport.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/support/info/ModeInfoSupport.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- ModeInfoSupport.java 1 May 2006 20:44:33 -0000 1.1 +++ ModeInfoSupport.java 9 Jul 2006 12:04:17 -0000 1.2 @@ -22,14 +22,14 @@ package org.jboss.portal.portlet.test.support.info; import org.jboss.portal.portlet.info.ModeInfo; +import org.jboss.portal.portlet.Mode; import org.jboss.portal.common.util.LocalizedString; -import org.jboss.portal.Mode; import java.util.Locale; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ public class ModeInfoSupport implements ModeInfo { 1.2 +1 -1 jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/support/info/WindowStateInfoSupport.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WindowStateInfoSupport.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/support/info/WindowStateInfoSupport.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- WindowStateInfoSupport.java 1 May 2006 20:44:33 -0000 1.1 +++ WindowStateInfoSupport.java 9 Jul 2006 12:04:17 -0000 1.2 @@ -23,13 +23,13 @@ import org.jboss.portal.portlet.info.WindowStateInfo; import org.jboss.portal.common.util.LocalizedString; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.WindowState; import java.util.Locale; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ public class WindowStateInfoSupport implements WindowStateInfo { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:19
|
User: julien Date: 06/07/09 08:04:17 Modified: portlet/src/main/org/jboss/portal/test/portlet PortletRequestDecoderTestCase.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.2 +2 -2 jboss-portal/portlet/src/main/org/jboss/portal/test/portlet/PortletRequestDecoderTestCase.java (In the diff below, changes in quantity of whitespace are not shown.) Index: PortletRequestDecoderTestCase.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/test/portlet/PortletRequestDecoderTestCase.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- PortletRequestDecoderTestCase.java 22 Jun 2006 02:11:13 -0000 1.1 +++ PortletRequestDecoderTestCase.java 9 Jul 2006 12:04:17 -0000 1.2 @@ -27,15 +27,15 @@ import org.jboss.portal.portlet.OpaqueStateString; import org.jboss.portal.server.request.RequestParameter; import org.jboss.portal.server.util.Parameters; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import java.util.Map; import java.util.HashMap; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ public class PortletRequestDecoderTestCase extends TestCase { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:19
|
User: julien Date: 06/07/09 08:04:17 Modified: portlet/src/main/org/jboss/portal/test/portlet/info CapabilitiesInfoTest.java ModeInfoTest.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.6 +3 -7 jboss-portal/portlet/src/main/org/jboss/portal/test/portlet/info/CapabilitiesInfoTest.java (In the diff below, changes in quantity of whitespace are not shown.) Index: CapabilitiesInfoTest.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/test/portlet/info/CapabilitiesInfoTest.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -b -r1.5 -r1.6 --- CapabilitiesInfoTest.java 30 Jun 2006 21:23:19 -0000 1.5 +++ CapabilitiesInfoTest.java 9 Jul 2006 12:04:17 -0000 1.6 @@ -28,25 +28,21 @@ import org.jboss.portal.portlet.info.PortletInfo; import org.jboss.portal.portlet.info.WindowStateInfo; import org.jboss.portal.portlet.info.ModeInfo; +import org.jboss.portal.portlet.Mode; import org.jboss.portal.server.ServerInvocation; import org.jboss.portal.test.framework.container.result.AssertResult; import org.jboss.portal.test.framework.container.result.Result; import org.jboss.portal.test.server.AbstractTest; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.WindowState; import java.util.Locale; import java.util.Set; -import java.util.Arrays; -import java.util.Collections; import java.util.Iterator; -import java.util.List; -import java.util.LinkedList; import java.util.HashSet; /** * @author <a href="mailto:chr...@jb...">Chris Laprun</a> - * @version $Revision: 1.5 $ + * @version $Revision: 1.6 $ */ public class CapabilitiesInfoTest extends AbstractTest { 1.2 +2 -4 jboss-portal/portlet/src/main/org/jboss/portal/test/portlet/info/ModeInfoTest.java (In the diff below, changes in quantity of whitespace are not shown.) Index: ModeInfoTest.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/test/portlet/info/ModeInfoTest.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- ModeInfoTest.java 30 Jun 2006 20:00:56 -0000 1.1 +++ ModeInfoTest.java 9 Jul 2006 12:04:17 -0000 1.2 @@ -26,12 +26,10 @@ import org.jboss.portal.test.framework.container.result.AssertResult; import org.jboss.portal.portlet.container.PortletApplicationRegistry; import org.jboss.portal.portlet.container.PortletContainer; -import org.jboss.portal.portlet.info.PortletInfo; -import org.jboss.portal.portlet.info.CacheInfo; import org.jboss.portal.portlet.info.CapabilitiesInfo; import org.jboss.portal.portlet.info.ModeInfo; +import org.jboss.portal.portlet.Mode; import org.jboss.portal.server.ServerInvocation; -import org.jboss.portal.Mode; import java.util.Set; import java.util.Iterator; @@ -39,7 +37,7 @@ /** * @author <a href="mailto:bol...@jb...">Boleslaw Dawidowicz</a> - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ public class ModeInfoTest extends AbstractTest { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:19
|
User: julien Date: 06/07/09 08:04:17 Modified: portlet/src/main/org/jboss/portal/portlet/test PortletController.java TestPortalContext.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.72 +3 -3 jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/PortletController.java (In the diff below, changes in quantity of whitespace are not shown.) Index: PortletController.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/PortletController.java,v retrieving revision 1.71 retrieving revision 1.72 diff -u -b -r1.71 -r1.72 --- PortletController.java 4 Jul 2006 10:07:51 -0000 1.71 +++ PortletController.java 9 Jul 2006 12:04:17 -0000 1.72 @@ -21,8 +21,8 @@ */ package org.jboss.portal.portlet.test; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.system.AbstractJBossService; import org.jboss.portal.common.util.Tools; import org.jboss.portal.portlet.ActionURL; @@ -83,7 +83,7 @@ /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.71 $ + * @version $Revision: 1.72 $ */ public class PortletController extends AbstractJBossService implements RequestController { 1.2 +2 -2 jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/TestPortalContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TestPortalContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/TestPortalContext.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- TestPortalContext.java 25 Apr 2006 13:45:32 -0000 1.1 +++ TestPortalContext.java 9 Jul 2006 12:04:17 -0000 1.2 @@ -21,8 +21,8 @@ */ package org.jboss.portal.portlet.test; -import org.jboss.portal.WindowState; -import org.jboss.portal.Mode; +import org.jboss.portal.portlet.WindowState; +import org.jboss.portal.portlet.Mode; import org.jboss.portal.common.util.CollectionBuilder; import org.jboss.portal.portlet.spi.PortalContext; @@ -32,7 +32,7 @@ /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ public class TestPortalContext implements PortalContext { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:19
|
User: julien Date: 06/07/09 08:04:17 Modified: portlet/src/main/org/jboss/portal/portlet/spi InvocationContext.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.12 +3 -3 jboss-portal/portlet/src/main/org/jboss/portal/portlet/spi/InvocationContext.java (In the diff below, changes in quantity of whitespace are not shown.) Index: InvocationContext.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/spi/InvocationContext.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -b -r1.11 -r1.12 --- InvocationContext.java 18 Jun 2006 03:25:11 -0000 1.11 +++ InvocationContext.java 9 Jul 2006 12:04:17 -0000 1.12 @@ -24,12 +24,12 @@ import org.jboss.portal.portlet.StateString; import org.jboss.portal.portlet.PortletURL; import org.jboss.portal.server.util.HTTPStreamInfo; -import org.jboss.portal.WindowState; -import org.jboss.portal.Mode; +import org.jboss.portal.portlet.WindowState; +import org.jboss.portal.portlet.Mode; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.11 $ + * @version $Revision: 1.12 $ */ public interface InvocationContext { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:18
|
User: julien Date: 06/07/09 08:04:16 Modified: portlet/src/main/org/jboss/portal/portlet/result RenderResult.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.9 +3 -3 jboss-portal/portlet/src/main/org/jboss/portal/portlet/result/RenderResult.java (In the diff below, changes in quantity of whitespace are not shown.) Index: RenderResult.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/result/RenderResult.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -b -r1.8 -r1.9 --- RenderResult.java 18 Jun 2006 03:25:11 -0000 1.8 +++ RenderResult.java 9 Jul 2006 12:04:16 -0000 1.9 @@ -23,14 +23,14 @@ import org.jboss.portal.server.util.Properties; import org.jboss.portal.portlet.StateString; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; /** * Want to be rendered. * * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.8 $ + * @version $Revision: 1.9 $ */ public class RenderResult extends Result { |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:18
|
User: julien Date: 06/07/09 08:04:15 Modified: core/src/main/org/jboss/portlet/event/node WindowEvent.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.6 +2 -2 jboss-portal/core/src/main/org/jboss/portlet/event/node/WindowEvent.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WindowEvent.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/core/src/main/org/jboss/portlet/event/node/WindowEvent.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -b -r1.5 -r1.6 --- WindowEvent.java 26 Apr 2006 12:33:20 -0000 1.5 +++ WindowEvent.java 9 Jul 2006 12:04:15 -0000 1.6 @@ -21,8 +21,8 @@ */ package org.jboss.portlet.event.node; -import org.jboss.portal.Mode; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.Mode; +import org.jboss.portal.portlet.WindowState; import org.jboss.portlet.PortalNode; import java.util.Map; |
From: Julien V. <ju...@jb...> - 2006-07-09 12:04:18
|
User: julien Date: 06/07/09 08:04:16 Modified: portlet/src/main/org/jboss/portal/portlet/info ModeInfo.java WindowStateInfo.java Log: move Mode and WindowState to org.jboss.portal.portlet instead of org.jboss.portal Revision Changes Path 1.4 +2 -2 jboss-portal/portlet/src/main/org/jboss/portal/portlet/info/ModeInfo.java (In the diff below, changes in quantity of whitespace are not shown.) Index: ModeInfo.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/info/ModeInfo.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- ModeInfo.java 24 Mar 2006 09:20:12 -0000 1.3 +++ ModeInfo.java 9 Jul 2006 12:04:16 -0000 1.4 @@ -21,12 +21,12 @@ */ package org.jboss.portal.portlet.info; -import org.jboss.portal.Mode; +import org.jboss.portal.portlet.Mode; import org.jboss.portal.common.util.LocalizedString; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ * @since 2.4 */ public interface ModeInfo 1.4 +2 -2 jboss-portal/portlet/src/main/org/jboss/portal/portlet/info/WindowStateInfo.java (In the diff below, changes in quantity of whitespace are not shown.) Index: WindowStateInfo.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/info/WindowStateInfo.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- WindowStateInfo.java 24 Mar 2006 09:20:12 -0000 1.3 +++ WindowStateInfo.java 9 Jul 2006 12:04:16 -0000 1.4 @@ -21,12 +21,12 @@ */ package org.jboss.portal.portlet.info; -import org.jboss.portal.WindowState; +import org.jboss.portal.portlet.WindowState; import org.jboss.portal.common.util.LocalizedString; /** * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ * @since 2.4 */ public interface WindowStateInfo |