Author: chris.laprun(a)jboss.com
Date: 2008-08-26 06:22:56 -0400 (Tue, 26 Aug 2008)
New Revision: 11736
Modified:
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource.properties
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/jsf/editCoordination.xhtml
Log:
- Added messages and localized values.
Modified:
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource.properties
===================================================================
---
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource.properties 2008-08-26
01:29:43 UTC (rev 11735)
+++
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource.properties 2008-08-26
10:22:56 UTC (rev 11736)
@@ -286,4 +286,10 @@
COORDINATION_EVENT_EXISTING_DESTINATION_EVENTS=Destination events
COORDINATION_EVENT_EXISTING_DESTINATION_WINDOWS=Destination windows
COORDINATION_EVENT_EXISTING_ACTIONS=Actions
-COORDINATION_EVENT_CREATE=Create new event wiring:
\ No newline at end of file
+COORDINATION_EVENT_CREATE=Create new event wiring:
+COORDINATION_EVENT_CREATE_STEP1=1. Select source event:
+COORDINATION_EVENT_CREATE_STEP2=2. Select source windows producing event
''{0}'':
+COORDINATION_EVENT_CREATE_STEP3=3. Select destination event:
+COORDINATION_EVENT_CREATE_STEP4=4. Select destination windows consuming event
''{0}'':
+COORDINATION_EVENT_CREATE_STEP5=5. Name wiring:
+COORDINATION_EVENT_CREATE_CREATE=Create wiring
Modified:
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/jsf/editCoordination.xhtml
===================================================================
---
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/jsf/editCoordination.xhtml 2008-08-26
01:29:43 UTC (rev 11735)
+++
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/jsf/editCoordination.xhtml 2008-08-26
10:22:56 UTC (rev 11736)
@@ -113,28 +113,34 @@
<!-- Create new event wiring -->
<h3 class="sectionTitle
tenpx-top-bottom">#{bundle.COORDINATION_EVENT_CREATE}</h3>
<h:form>
- <h:selectManyListbox size="5"
value="#{coordinationAction.selectedSourceEvents}" immediate="true"
-
valueChangeListener="#{coordinationAction.selectSourceWindows}"
onchange="this.form.submit()">
- <f:selectItems value="#{coordinationAction.sourceEvents}"/>
- </h:selectManyListbox>
+ <h:panelGroup>
+ #{bundle.COORDINATION_EVENT_CREATE_STEP1}
+ <h:selectManyListbox size="5"
value="#{coordinationAction.selectedSourceEvents}" immediate="true"
+
valueChangeListener="#{coordinationAction.selectSourceWindows}"
onchange="this.form.submit()">
+ <f:selectItems value="#{coordinationAction.sourceEvents}"/>
+ </h:selectManyListbox>
+ </h:panelGroup>
- <h:selectManyListbox size="5"
value="#{coordinationAction.selectedSourceWindows}"
- rendered="#{!empty
coordinationAction.selectedSourceEvents}" immediate="true"
-
valueChangeListener="#{coordinationAction.selectDestinationEvents}"
onchange="this.form.submit()">
- <f:selectItems value="#{coordinationAction.sourceWindows}"/>
- </h:selectManyListbox>
+ <h:panelGroup rendered="#{!empty
coordinationAction.selectedSourceEvents}" >
+ <h:selectManyListbox size="5"
value="#{coordinationAction.selectedSourceWindows}" immediate="true"
+
valueChangeListener="#{coordinationAction.selectDestinationEvents}"
onchange="this.form.submit()">
+ <f:selectItems value="#{coordinationAction.sourceWindows}"/>
+ </h:selectManyListbox>
+ </h:panelGroup>
- <h:selectManyListbox size="5"
value="#{coordinationAction.selectedDestinationEvents}"
- rendered="#{!empty
coordinationAction.selectedSourceWindows}" immediate="true"
-
valueChangeListener="#{coordinationAction.selectDestinationEvents}"
onchange="this.form.submit()">
- <f:selectItems
value="#{coordinationAction.destinationEvents}"/>
- </h:selectManyListbox>
+ <h:panelGroup rendered="#{!empty
coordinationAction.selectedSourceWindows}">
+ <h:selectManyListbox size="5"
value="#{coordinationAction.selectedDestinationEvents}"
immediate="true"
+
valueChangeListener="#{coordinationAction.selectDestinationEvents}"
onchange="this.form.submit()">
+ <f:selectItems
value="#{coordinationAction.destinationEvents}"/>
+ </h:selectManyListbox>
+ </h:panelGroup>
- <h:selectManyListbox size="5"
value="#{coordinationAction.selectedDestinationWindows}"
- rendered="#{!empty
coordinationAction.selectedDestinationEvents}" immediate="true"
-
valueChangeListener="#{coordinationAction.selectDestinationWindows}"
onchange="this.form.submit()">
- <f:selectItems
value="#{coordinationAction.destinationWindows}"/>
- </h:selectManyListbox>
+ <h:panelGroup rendered="#{!empty
coordinationAction.selectedDestinationEvents}">
+ <h:selectManyListbox size="5"
value="#{coordinationAction.selectedDestinationWindows}"
immediate="true"
+
valueChangeListener="#{coordinationAction.selectDestinationWindows}"
onchange="this.form.submit()">
+ <f:selectItems
value="#{coordinationAction.destinationWindows}"/>
+ </h:selectManyListbox>
+ </h:panelGroup>
<h:panelGroup rendered="#{!empty
coordinationAction.selectedDestinationWindows}">
<h:inputText value="#{coordinationAction.wiringName}"/>
Show replies by date