JBoss Portal SVN: r7478 - in trunk/wsrp/src: main/org/jboss/portal/wsrp/consumer and 1 other directories.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2007-06-19 15:38:37 -0400 (Tue, 19 Jun 2007)
New Revision: 7478
Modified:
trunk/wsrp/src/main/org/jboss/portal/wsrp/admin/ui/ConsumerBean.java
trunk/wsrp/src/main/org/jboss/portal/wsrp/consumer/RegistrationInfo.java
trunk/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml
Log:
- Implemented access to modifyRegistration.
Modified: trunk/wsrp/src/main/org/jboss/portal/wsrp/admin/ui/ConsumerBean.java
===================================================================
--- trunk/wsrp/src/main/org/jboss/portal/wsrp/admin/ui/ConsumerBean.java 2007-06-19 17:47:35 UTC (rev 7477)
+++ trunk/wsrp/src/main/org/jboss/portal/wsrp/admin/ui/ConsumerBean.java 2007-06-19 19:38:37 UTC (rev 7478)
@@ -47,6 +47,7 @@
private Boolean useWSDL = null;
private ConsumerManagerBean manager;
private boolean modified;
+ private boolean registrationModified;
private String serviceDescription;
private String markup;
@@ -213,6 +214,11 @@
}
}
+ public boolean isRegistrationModified()
+ {
+ return registrationModified;
+ }
+
public boolean isRegistrationChecked()
{
return getProducerInfo().isRegistrationChecked();
@@ -258,6 +264,8 @@
}
registry.updateProducerInfo(prodInfo);
+ modified = false;
+ registrationModified = false;
}
catch (Exception e)
{
@@ -303,6 +311,8 @@
{
createInfoMessage(null, result.getStatus());
}
+
+ registrationModified = false;
}
catch (Exception e)
{
@@ -324,6 +334,7 @@
{
getProducerInfo().modifyRegistration();
createInfoMessage(null, "Successfully modified Registration!");
+ registrationModified = false;
}
catch (Exception e)
{
@@ -337,15 +348,6 @@
return null;
}
- // Listeners
-
- public void useWSDLListener(ValueChangeEvent event)
- {
- useWSDL = (Boolean)event.getNewValue();
- // bypass the rest of the life cycle and re-display page
- FacesContext.getCurrentInstance().renderResponse();
- }
-
private String modifyIfNeeded(String oldValue, String newValue, String target)
{
if ((oldValue != null && !oldValue.equals(newValue)) || (oldValue == null && newValue != null))
@@ -371,4 +373,22 @@
return oldValue;
}
+
+ // Listeners
+
+ public void useWSDLListener(ValueChangeEvent event)
+ {
+ useWSDL = (Boolean)event.getNewValue();
+
+ // bypass the rest of the life cycle and re-display page
+ FacesContext.getCurrentInstance().renderResponse();
+ }
+
+ public void regPropListener(ValueChangeEvent event)
+ {
+ registrationModified = true;
+
+ // bypass the rest of the life cycle and re-display page
+ FacesContext.getCurrentInstance().renderResponse();
+ }
}
\ No newline at end of file
Modified: trunk/wsrp/src/main/org/jboss/portal/wsrp/consumer/RegistrationInfo.java
===================================================================
--- trunk/wsrp/src/main/org/jboss/portal/wsrp/consumer/RegistrationInfo.java 2007-06-19 17:47:35 UTC (rev 7477)
+++ trunk/wsrp/src/main/org/jboss/portal/wsrp/consumer/RegistrationInfo.java 2007-06-19 19:38:37 UTC (rev 7478)
@@ -116,7 +116,7 @@
public boolean isRefreshNeeded()
{
- boolean result = dirty || requiresRegistration == null;
+ boolean result = isModified() || requiresRegistration == null;
if (result)
{
log.debug("Refresh needed");
@@ -196,7 +196,7 @@
public RegistrationData getRegistrationData()
{
- if (dirty || registrationData == null)
+ if (isModified() || registrationData == null)
{
registrationData = WSRPTypeFactory.createDefaultRegistrationData();
registrationData.setConsumerName(persistentConsumerName);
@@ -561,6 +561,11 @@
}
}
+ public boolean isModified()
+ {
+ return dirty;
+ }
+
public class RegistrationRefreshResult extends RefreshResult
{
public RegistrationRefreshResult()
Modified: trunk/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml
===================================================================
--- trunk/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml 2007-06-19 17:47:35 UTC (rev 7477)
+++ trunk/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml 2007-06-19 19:38:37 UTC (rev 7478)
@@ -92,7 +92,8 @@
<h:outputText value="#{prop.name}"/>
</td>
<td>
- <h:inputText value="#{prop.value}" size="40"/>
+ <h:inputText value="#{prop.value}" size="40" onchange="this.form.submit()"
+ immediate="true" valueChangeListener="#{consumer.regPropListener}"/>
<h:outputText styleClass="error" value="#{prop.status}"
rendered="#{prop.determinedInvalid}"/>
</td>
@@ -147,6 +148,15 @@
</c:if>
</c:otherwise>
</c:choose>
+ <c:if test="#{consumer.registrationModified}">
+ <tr>
+ <td colspan="2">
+ <h:commandLink action="#{consumer.modifyRegistration}" value="Modify registration"
+ title="Modify the registration held with this Producer"
+ styleClass="portlet-form-button"/>
+ </td>
+ </tr>
+ </c:if>
</c:if>
<tr>
<td colspan="2" style="padding: 1em 1em 1em 0;">
18 years, 10 months
JBoss Portal SVN: r7477 - tags/JBoss_Portal_2_6_0_CR3/core-admin/src/main/org/jboss/portal/core/admin/ui.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2007-06-19 13:47:35 -0400 (Tue, 19 Jun 2007)
New Revision: 7477
Modified:
tags/JBoss_Portal_2_6_0_CR3/core-admin/src/main/org/jboss/portal/core/admin/ui/PropertiesInfo.java
Log:
Typos
Modified: tags/JBoss_Portal_2_6_0_CR3/core-admin/src/main/org/jboss/portal/core/admin/ui/PropertiesInfo.java
===================================================================
--- tags/JBoss_Portal_2_6_0_CR3/core-admin/src/main/org/jboss/portal/core/admin/ui/PropertiesInfo.java 2007-06-19 17:46:10 UTC (rev 7476)
+++ tags/JBoss_Portal_2_6_0_CR3/core-admin/src/main/org/jboss/portal/core/admin/ui/PropertiesInfo.java 2007-06-19 17:47:35 UTC (rev 7477)
@@ -22,16 +22,16 @@
******************************************************************************/
package org.jboss.portal.core.admin.ui;
+import org.jboss.portal.common.i18n.LocalizedString;
+import org.jboss.portal.core.impl.model.portal.WindowImpl;
import org.jboss.portal.core.model.portal.PortalObject;
import org.jboss.portal.core.model.portal.control.ControlConstants;
-import org.jboss.portal.core.impl.model.portal.WindowImpl;
-import org.jboss.portal.common.i18n.LocalizedString;
import org.jboss.portal.theme.ThemeConstants;
import org.jboss.portal.theme.impl.render.dynamic.DynaRenderOptions;
+import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
-import java.util.HashMap;
import java.util.Set;
/**
@@ -62,14 +62,14 @@
//
- public static final PropertyInfo CONTROL_POLICY_PAGE_ACCESS_DENIED = new PropertyInfo(ControlConstants.PAGE_ACCESS_DENIED_CONTROL_KEY, new LocalizedString("When access the the window is denied"), new LocalizedString("When access the the window is denied"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
+ public static final PropertyInfo CONTROL_POLICY_PAGE_ACCESS_DENIED = new PropertyInfo(ControlConstants.PAGE_ACCESS_DENIED_CONTROL_KEY, new LocalizedString("When access to the window is denied"), new LocalizedString("When access to the window is denied"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_UNAVAILABLE = new PropertyInfo(ControlConstants.PAGE_UNAVAILABLE_CONTROL_KEY, new LocalizedString("When the window is unavailable"), new LocalizedString("When the window is unavailable"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_ERROR = new PropertyInfo(ControlConstants.PAGE_ERROR_CONTROL_KEY, new LocalizedString("When there is an error on the window"), new LocalizedString("When there is an error on the window"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_INTERNAL_ERROR = new PropertyInfo(ControlConstants.PAGE_INTERNAL_ERROR_CONTROL_KEY, new LocalizedString("When there is an error within the window"), new LocalizedString("When there is an error within the window"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_NOT_FOUND = new PropertyInfo(ControlConstants.PAGE_NOT_FOUND_CONTROL_KEY, new LocalizedString("When the window is not found"), new LocalizedString("When the window is not found"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_RESOURCE_URI = new PropertyInfo(ControlConstants.PAGE_RESOURCE_URI_CONTROL_KEY, new LocalizedString("On error redirect to this resource"), new LocalizedString("On error redirect to this resource"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
- public static final PropertyInfo CONTROL_POLICY_PORTAL_ACCESS_DENIED = new PropertyInfo(ControlConstants.PORTAL_ACCESS_DENIED_CONTROL_KEY, new LocalizedString("When access the the page is denied"), new LocalizedString("When access the the page is denied"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
+ public static final PropertyInfo CONTROL_POLICY_PORTAL_ACCESS_DENIED = new PropertyInfo(ControlConstants.PORTAL_ACCESS_DENIED_CONTROL_KEY, new LocalizedString("When access to the page is denied"), new LocalizedString("When access to the page is denied"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PORTAL_UNAVAILABLE = new PropertyInfo(ControlConstants.PORTAL_UNAVAILABLE_CONTROL_KEY, new LocalizedString("When the page is unavailable"), new LocalizedString("When the page is unavailable"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PORTAL_ERROR = new PropertyInfo(ControlConstants.PORTAL_ERROR_CONTROL_KEY, new LocalizedString("When there is an error on the page"), new LocalizedString("When there is an error on the page"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PORTAL_INTERNAL_ERROR = new PropertyInfo(ControlConstants.PORTAL_INTERNAL_ERROR_CONTROL_KEY, new LocalizedString("When there is an error within the page"), new LocalizedString("When there is an error within the page"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
@@ -174,7 +174,7 @@
public PropertiesInfo(PortalObject portalObject)
{
Map objectProps = null;
- switch(portalObject.getType())
+ switch (portalObject.getType())
{
case PortalObject.TYPE_CONTEXT:
objectProps = CONTEXT_PROPERTIES;
18 years, 10 months
JBoss Portal SVN: r7476 - trunk/core-admin/src/main/org/jboss/portal/core/admin/ui.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2007-06-19 13:46:10 -0400 (Tue, 19 Jun 2007)
New Revision: 7476
Modified:
trunk/core-admin/src/main/org/jboss/portal/core/admin/ui/PropertiesInfo.java
Log:
- Typos.
Modified: trunk/core-admin/src/main/org/jboss/portal/core/admin/ui/PropertiesInfo.java
===================================================================
--- trunk/core-admin/src/main/org/jboss/portal/core/admin/ui/PropertiesInfo.java 2007-06-19 16:18:11 UTC (rev 7475)
+++ trunk/core-admin/src/main/org/jboss/portal/core/admin/ui/PropertiesInfo.java 2007-06-19 17:46:10 UTC (rev 7476)
@@ -22,16 +22,16 @@
******************************************************************************/
package org.jboss.portal.core.admin.ui;
+import org.jboss.portal.common.i18n.LocalizedString;
+import org.jboss.portal.core.impl.model.portal.WindowImpl;
import org.jboss.portal.core.model.portal.PortalObject;
import org.jboss.portal.core.model.portal.control.ControlConstants;
-import org.jboss.portal.core.impl.model.portal.WindowImpl;
-import org.jboss.portal.common.i18n.LocalizedString;
import org.jboss.portal.theme.ThemeConstants;
import org.jboss.portal.theme.impl.render.dynamic.DynaRenderOptions;
+import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
-import java.util.HashMap;
import java.util.Set;
/**
@@ -62,14 +62,14 @@
//
- public static final PropertyInfo CONTROL_POLICY_PAGE_ACCESS_DENIED = new PropertyInfo(ControlConstants.PAGE_ACCESS_DENIED_CONTROL_KEY, new LocalizedString("When access the the window is denied"), new LocalizedString("When access the the window is denied"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
+ public static final PropertyInfo CONTROL_POLICY_PAGE_ACCESS_DENIED = new PropertyInfo(ControlConstants.PAGE_ACCESS_DENIED_CONTROL_KEY, new LocalizedString("When access to the window is denied"), new LocalizedString("When access to the window is denied"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_UNAVAILABLE = new PropertyInfo(ControlConstants.PAGE_UNAVAILABLE_CONTROL_KEY, new LocalizedString("When the window is unavailable"), new LocalizedString("When the window is unavailable"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_ERROR = new PropertyInfo(ControlConstants.PAGE_ERROR_CONTROL_KEY, new LocalizedString("When there is an error on the window"), new LocalizedString("When there is an error on the window"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_INTERNAL_ERROR = new PropertyInfo(ControlConstants.PAGE_INTERNAL_ERROR_CONTROL_KEY, new LocalizedString("When there is an error within the window"), new LocalizedString("When there is an error within the window"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_NOT_FOUND = new PropertyInfo(ControlConstants.PAGE_NOT_FOUND_CONTROL_KEY, new LocalizedString("When the window is not found"), new LocalizedString("When the window is not found"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PAGE_RESOURCE_URI = new PropertyInfo(ControlConstants.PAGE_RESOURCE_URI_CONTROL_KEY, new LocalizedString("On error redirect to this resource"), new LocalizedString("On error redirect to this resource"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
- public static final PropertyInfo CONTROL_POLICY_PORTAL_ACCESS_DENIED = new PropertyInfo(ControlConstants.PORTAL_ACCESS_DENIED_CONTROL_KEY, new LocalizedString("When access the the page is denied"), new LocalizedString("When access the the page is denied"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
+ public static final PropertyInfo CONTROL_POLICY_PORTAL_ACCESS_DENIED = new PropertyInfo(ControlConstants.PORTAL_ACCESS_DENIED_CONTROL_KEY, new LocalizedString("When access to the page is denied"), new LocalizedString("When access to the page is denied"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PORTAL_UNAVAILABLE = new PropertyInfo(ControlConstants.PORTAL_UNAVAILABLE_CONTROL_KEY, new LocalizedString("When the page is unavailable"), new LocalizedString("When the page is unavailable"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PORTAL_ERROR = new PropertyInfo(ControlConstants.PORTAL_ERROR_CONTROL_KEY, new LocalizedString("When there is an error on the page"), new LocalizedString("When there is an error on the page"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
public static final PropertyInfo CONTROL_POLICY_PORTAL_INTERNAL_ERROR = new PropertyInfo(ControlConstants.PORTAL_INTERNAL_ERROR_CONTROL_KEY, new LocalizedString("When there is an error within the page"), new LocalizedString("When there is an error within the page"), "java.lang.String", PropertyInfo.READ_WRITE_ACCESS_MODE, PropertyInfo.PUBLIC_SCOPE);
@@ -174,7 +174,7 @@
public PropertiesInfo(PortalObject portalObject)
{
Map objectProps = null;
- switch(portalObject.getType())
+ switch (portalObject.getType())
{
case PortalObject.TYPE_CONTEXT:
objectProps = CONTEXT_PROPERTIES;
18 years, 10 months
JBoss Portal SVN: r7475 - trunk/wsrp/src/resources/portal-wsrp-sar.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2007-06-19 12:18:11 -0400 (Tue, 19 Jun 2007)
New Revision: 7475
Modified:
trunk/wsrp/src/resources/portal-wsrp-sar/default-wsrp.xml
Log:
- Increased cache expiration time to 300 seconds.
Modified: trunk/wsrp/src/resources/portal-wsrp-sar/default-wsrp.xml
===================================================================
--- trunk/wsrp/src/resources/portal-wsrp-sar/default-wsrp.xml 2007-06-19 14:12:43 UTC (rev 7474)
+++ trunk/wsrp/src/resources/portal-wsrp-sar/default-wsrp.xml 2007-06-19 16:18:11 UTC (rev 7475)
@@ -28,7 +28,7 @@
<deployments>
<deployment>
- <wsrp-producer id="self" expiration-cache="120">
+ <wsrp-producer id="self" expiration-cache="300">
<!--
we need to use the individual endpoint configuration because the configuration via wsdl forces an
immediate attempt to access the web service description which is not available yet at this point of deployment
@@ -43,13 +43,13 @@
</wsrp-producer>
</deployment>
<!--<deployment>
- <wsrp-producer id="NetUnity" expiration-cache="120">
+ <wsrp-producer id="NetUnity" expiration-cache="300">
<endpoint-wsdl-url>http://wsrp.netunitysoftware.com/WSRPTestService/WSRPTestService.asmx?Ope...</endpoint-wsdl-url>
<registration-data/>
</wsrp-producer>
</deployment>-->
<!--<deployment>
- <wsrp-producer id="vignette" expiration-cache="120">
+ <wsrp-producer id="vignette" expiration-cache="300">
<endpoint-wsdl-url>http://wsrpdemo.vignette.com:8080/producer/wsdl</endpoint-wsdl-url>
<registration-data>
<property>
@@ -66,7 +66,7 @@
</wsrp-producer>
</deployment>-->
<!--<deployment>
- <wsrp-producer id="bea" expiration-cache="120">
+ <wsrp-producer id="bea" expiration-cache="300">
<endpoint-wsdl-url>http://wsrp.bea.com:7001/producer/producer?WSDL</endpoint-wsdl-url>
<registration-data>
<property>
@@ -78,7 +78,7 @@
</wsrp-producer>
</deployment>-->
<!--<deployment>
- <wsrp-producer id="oracle" expiration-cache="120">
+ <wsrp-producer id="oracle" expiration-cache="300">
<endpoint-wsdl-url>http://portalstandards.oracle.com/portletapp/portlets?WSDL</endpoint-wsdl-url>
<registration-data/>
</wsrp-producer>
18 years, 10 months
JBoss Portal SVN: r7474 - tags/JBoss_Portal_2_6_0_CR3/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2007-06-19 10:12:43 -0400 (Tue, 19 Jun 2007)
New Revision: 7474
Modified:
tags/JBoss_Portal_2_6_0_CR3/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml
Log:
- Use determinedInvalid instead of invalid to decide whether to display status or not.
Modified: tags/JBoss_Portal_2_6_0_CR3/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml
===================================================================
--- tags/JBoss_Portal_2_6_0_CR3/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml 2007-06-19 13:42:19 UTC (rev 7473)
+++ tags/JBoss_Portal_2_6_0_CR3/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml 2007-06-19 14:12:43 UTC (rev 7474)
@@ -93,7 +93,7 @@
</td>
<td>
<h:inputText value="#{prop.value}" size="40"/>
- <h:outputText styleClass="error" value="#{prop.status}" rendered="#{prop.invalid}"/>
+ <h:outputText styleClass="error" value="#{prop.status}" rendered="#{prop.determinedInvalid}"/>
</td>
</tr>
</c:forEach>
18 years, 10 months
JBoss Portal SVN: r7473 - trunk/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2007-06-19 09:42:19 -0400 (Tue, 19 Jun 2007)
New Revision: 7473
Modified:
trunk/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml
Log:
- Use determinedInvalid instead of invalid to decide whether to display status or not.
Modified: trunk/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml
===================================================================
--- trunk/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml 2007-06-19 13:13:23 UTC (rev 7472)
+++ trunk/wsrp/src/resources/portal-wsrp-war/WEB-INF/jsf/consumers/editConsumer.xhtml 2007-06-19 13:42:19 UTC (rev 7473)
@@ -93,7 +93,8 @@
</td>
<td>
<h:inputText value="#{prop.value}" size="40"/>
- <h:outputText styleClass="error" value="#{prop.status}" rendered="#{prop.invalid}"/>
+ <h:outputText styleClass="error" value="#{prop.status}"
+ rendered="#{prop.determinedInvalid}"/>
</td>
</tr>
</c:forEach>
18 years, 10 months
JBoss Portal SVN: r7472 - docs/tags.
by portal-commits@lists.jboss.org
Author: julien(a)jboss.com
Date: 2007-06-19 09:13:23 -0400 (Tue, 19 Jun 2007)
New Revision: 7472
Added:
docs/tags/JBoss_Portal_2_6_0_CR3/
Log:
CR3
Copied: docs/tags/JBoss_Portal_2_6_0_CR3 (from rev 7471, docs/trunk)
18 years, 10 months
JBoss Portal SVN: r7471 - tags.
by portal-commits@lists.jboss.org
Author: julien(a)jboss.com
Date: 2007-06-19 09:12:42 -0400 (Tue, 19 Jun 2007)
New Revision: 7471
Added:
tags/JBoss_Portal_2_6_0_CR3/
Log:
CR3
Copied: tags/JBoss_Portal_2_6_0_CR3 (from rev 7470, trunk)
18 years, 10 months
JBoss Portal SVN: r7470 - docs/trunk/readmeFiles.
by portal-commits@lists.jboss.org
Author: julien(a)jboss.com
Date: 2007-06-19 08:50:15 -0400 (Tue, 19 Jun 2007)
New Revision: 7470
Modified:
docs/trunk/readmeFiles/jboss-portal-bin.README
docs/trunk/readmeFiles/jboss-portal-ha-bin.README
docs/trunk/readmeFiles/jboss-portal-src.README
Log:
CR3 in readmes
Modified: docs/trunk/readmeFiles/jboss-portal-bin.README
===================================================================
--- docs/trunk/readmeFiles/jboss-portal-bin.README 2007-06-19 12:48:25 UTC (rev 7469)
+++ docs/trunk/readmeFiles/jboss-portal-bin.README 2007-06-19 12:50:15 UTC (rev 7470)
@@ -1,5 +1,5 @@
- JBoss Portal 2.6.0 Candidate Release 1
+ JBoss Portal 2.6.0 Candidate Releasei 3
LGPL Licensed (See http://www.gnu.org/copyleft/lesser.html for details on the product usage)
JBoss Portal is the next generation open source content management system (CMS) and portal
@@ -15,4 +15,4 @@
RUNNING:
To run the application, start JBoss AS and point your web browser to:
- http://localhost:8080/portal/index.html
\ No newline at end of file
+ http://localhost:8080/portal/index.html
Modified: docs/trunk/readmeFiles/jboss-portal-ha-bin.README
===================================================================
--- docs/trunk/readmeFiles/jboss-portal-ha-bin.README 2007-06-19 12:48:25 UTC (rev 7469)
+++ docs/trunk/readmeFiles/jboss-portal-ha-bin.README 2007-06-19 12:50:15 UTC (rev 7470)
@@ -1,5 +1,5 @@
- JBoss Portal 2.6.0 Candidate Release 1
+ JBoss Portal 2.6.0 Candidate Release 3
LGPL Licensed (See http://www.gnu.org/copyleft/lesser.html for details on the product usage)
JBoss Portal is the next generation open source content management system (CMS) and portal
@@ -17,4 +17,4 @@
RUNNING:
To run the application, start JBoss AS and point your web browser to:
- http://localhost:8080/portal/index.html
\ No newline at end of file
+ http://localhost:8080/portal/index.html
Modified: docs/trunk/readmeFiles/jboss-portal-src.README
===================================================================
--- docs/trunk/readmeFiles/jboss-portal-src.README 2007-06-19 12:48:25 UTC (rev 7469)
+++ docs/trunk/readmeFiles/jboss-portal-src.README 2007-06-19 12:50:15 UTC (rev 7470)
@@ -1,5 +1,5 @@
- JBoss Portal 2.6.0 Candidate Release 1
+ JBoss Portal 2.6.0 Candidate Release 3
LGPL Licensed (See http://www.gnu.org/copyleft/lesser.html for details on the product usage)
JBoss Portal is the next generation open source content management system (CMS) and portal
@@ -15,4 +15,4 @@
RUNNING:
To run the application, start JBoss AS and point your web browser to:
- http://localhost:8080/portal/index.html
\ No newline at end of file
+ http://localhost:8080/portal/index.html
18 years, 10 months
JBoss Portal SVN: r7469 - trunk/build.
by portal-commits@lists.jboss.org
Author: julien(a)jboss.com
Date: 2007-06-19 08:48:25 -0400 (Tue, 19 Jun 2007)
New Revision: 7469
Modified:
trunk/build/distrib.xml
Log:
CR3 dir
Modified: trunk/build/distrib.xml
===================================================================
--- trunk/build/distrib.xml 2007-06-19 12:47:31 UTC (rev 7468)
+++ trunk/build/distrib.xml 2007-06-19 12:48:25 UTC (rev 7469)
@@ -1,7 +1,7 @@
<project default="main" name="JBoss Portal">
<property name="source.dir" value="../../jboss-portal-2.6"/>
- <property name="release.version" value="2.6-CR2"/>
+ <property name="release.version" value="2.6-CR3"/>
<!-- -->
<property name="portal.release.normal.name" value="jboss-portal-${release.version}"/>
18 years, 10 months