[ http://issues.apache.org/jira/browse/JS2-460?page=all ]
     
Scott T Weaver closed JS2-460:
------------------------------

    Resolution: Fixed

Easy fix ever.  The problem was the location of the DecoratorValve in the 
pipline.

Standard pipline located in WEB-INF/assembly/pipelines.xml

Broken:

  <bean id="jetspeed-pipeline"
        class="org.apache.jetspeed.pipeline.JetspeedPipeline"
        init-method="initialize"
  >
   <constructor-arg>
       <value>JetspeedPipeline</value>
   </constructor-arg>
   <constructor-arg>
    <list>
      <ref bean="capabilityValve"/>
      <ref bean="portalURLValve"/>
      <ref bean="securityValve"/>
      <ref bean="localizationValve"/>
      <ref bean="passwordCredentialValve"/>
      <ref bean="loginValidationValve"/>
      <ref bean="profilerValve"/>
      <ref bean="DecorationValve" />
      <ref bean="containerValve"/>
      <ref bean="actionValve"/>     
      <ref bean="aggregatorValve"/>
      <ref bean="cleanUpValve"/>
    </list>
    </constructor-arg>
  </bean> 

Fixed:

  <bean id="jetspeed-pipeline"
        class="org.apache.jetspeed.pipeline.JetspeedPipeline"
        init-method="initialize"
  >
   <constructor-arg>
       <value>JetspeedPipeline</value>
   </constructor-arg>
   <constructor-arg>
    <list>
      <ref bean="capabilityValve"/>
      <ref bean="portalURLValve"/>
      <ref bean="securityValve"/>
      <ref bean="localizationValve"/>
      <ref bean="passwordCredentialValve"/>
      <ref bean="loginValidationValve"/>
      <ref bean="profilerValve"/>
      <ref bean="containerValve"/>
      <ref bean="actionValve"/>
      <ref bean="DecorationValve" />
      <ref bean="aggregatorValve"/>
      <ref bean="cleanUpValve"/>
    </list>
    </constructor-arg>
  </bean> 


> Minimize/Restore broken
> -----------------------
>
>          Key: JS2-460
>          URL: http://issues.apache.org/jira/browse/JS2-460
>      Project: Jetspeed 2
>         Type: Bug
>   Components: Portlet Entities and Preferences
>     Versions: 2.1-dev
>     Reporter: David Sean Taylor
>     Assignee: Scott T Weaver
>      Fix For: 2.1-dev

>
> Just after install, I started to minimize every portlet on Welcome screen. 
> For the first, after minimize, the restore button was shown (right 
> behaviour). When I click on other portlet minimize button, the first portlet 
> I minimized loose restore button, and in place appear a maximize button. So, 
> appear that only can be one restore button at time!  (only one restore button 
> is allowed per page)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to