[esb-java-dev] svn commit r778 - in
trunk/esb/java/modules/distribution/src/main/www/extensions/core:
js xslt/proxyservices
svn at wso2.org
svn at wso2.org
Tue Feb 6 20:10:35 PST 2007
Author: asankha
Date: Tue Feb 6 20:10:15 2007
New Revision: 778
Modified:
trunk/esb/java/modules/distribution/src/main/www/extensions/core/js/_proxyservices.js
trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_misc_edit.xsl
trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_misc_view.xsl
trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_qos_edit.xsl
trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_qos_view.xsl
trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_target_edit.xsl
trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_target_view.xsl
trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_transport_edit.xsl
trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_transport_view.xsl
Log:
improve the text displayed on the console
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/js/_proxyservices.js
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/js/_proxyservices.js (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/js/_proxyservices.js Tue Feb 6 20:10:15 2007
@@ -88,12 +88,10 @@
var proxydesc = document.createElement("div");
proxydesc.className = "sequence-desc";
- proxydesc.innerHTML = "<p class='description'>This is the configuration for the Proxy Service "
+ proxydesc.innerHTML = "<p class='description'>Confirm selected options for the proxy service "
+ internalmodel.proxyname.substring(0, 1).toUpperCase()
+ internalmodel.proxyname.substring(1, internalmodel.proxyname.length)
- + " and you can use this console to edit & change the runtime behaviour of the service."
- + " Also you can add features like security and reliable "
- + "messaging to your service using this console.</p>";
+ "</p>";
proxydiv.appendChild(proxydesc);
for(var i=1; i<=4; i++) {
@@ -366,7 +364,7 @@
proxyheader.appendChild(document.createTextNode(" > "));
- var displayedname = "UnNamed Proxy Service";
+ var displayedname = "New Proxy Service";
if(internalmodel.proxyname != "") {
displayedname = "Proxy Service " + internalmodel.proxyname.substring(0,1).toUpperCase()
+ internalmodel.proxyname.substring(1, internalmodel.proxyname.length);
@@ -387,8 +385,7 @@
savepanel.className = "sequence-desc";
savepanel.innerHTML = "<p class='description'>You must save chages to "
- + "the proxy service for them to be applied to the runtime service or else you can save the edited proxy service to "
- + "the registry for future uses in which case the service will not get deployed.</p><br/>";
+ + "the proxy service for it to be deployed</p><br/>";
var panelhtml = "<div id='proxysavediv'><table style='margin-left: 150px;'><tbody><tr>"
+ "<td><input type='button' id='buttonpanel10' class='panelbutton' onmouseover='javascript: showbutton(10); "
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_misc_edit.xsl
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_misc_edit.xsl (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_misc_edit.xsl Tue Feb 6 20:10:15 2007
@@ -24,8 +24,7 @@
</h2>
<label class="content-description">
<img src="extensions/core/images/computer.gif"/>
- Miscellaneous configuration of the proxy service lets you configure start service on load
- or specifying the wsdl.
+ Configure miscellaneous options for the proxy service.
</label>
<br/>
<br/>
@@ -41,7 +40,7 @@
</xsl:if>
<br/><br/><p>Starting the Service</p><br/>
- <label style="margin-left: 50px;">Start On Load</label>
+ <label style="margin-left: 50px;">Load on startup</label>
<label style="margin-left: 100px;">
<xsl:choose>
<xsl:when test="@startOnLoad != 'true'">
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_misc_view.xsl
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_misc_view.xsl (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_misc_view.xsl Tue Feb 6 20:10:15 2007
@@ -23,8 +23,7 @@
</h2>
<label class="content-description">
<img src="extensions/core/images/computer.gif"/>
- Miscellaneous configuration of the proxy service lets you configure start service on load
- or specifying the wsdl.
+ Configure miscellaneous options for the proxy service.
</label>
<br/>
<br/>
@@ -33,11 +32,11 @@
<label style="margin-left: 50px;"><xsl:value-of select="child::syn:wsdl/@key"/></label><br/>
</xsl:if>
<p>Starting the Service</p><br/>
- <label style="margin-left: 50px;">Start On Load</label>
+ <label style="margin-left: 50px;">Load on Startup</label>
<label style="margin-left: 100px;">
<xsl:choose>
<xsl:when test="@startOnLoad != 'true'">
- <xsl:text>Desabled</xsl:text>
+ <xsl:text>Disabled</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>Enabled</xsl:text>
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_qos_edit.xsl
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_qos_edit.xsl (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_qos_edit.xsl Tue Feb 6 20:10:15 2007
@@ -24,8 +24,8 @@
</h2>
<label class="content-description">
<img src="extensions/core/images/computer.gif"/>
- QOS configuration of the proxy service lets you configure enabling and desabling of sequrity
- and reliable messaging.
+ Select the QOS aspects for this proxy service. You may enable or disable WS-Security and WS-Reliable Messaging
+ and specify appropriate service level WS-Policies to define the behaviour.
</label>
<br/>
<br/>
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_qos_view.xsl
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_qos_view.xsl (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_qos_view.xsl Tue Feb 6 20:10:15 2007
@@ -23,8 +23,8 @@
</h2>
<label class="content-description">
<img src="extensions/core/images/computer.gif"/>
- QOS configuration of the proxy service lets you configure enabling and desabling of sequrity
- and reliable messaging.
+ Select the QOS aspects for this proxy service. You may enable or disable WS-Security and WS-Reliable Messaging
+ and specify appropriate service level WS-Policies to define the behaviour.
</label>
<br/>
<br/>
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_target_edit.xsl
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_target_edit.xsl (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_target_edit.xsl Tue Feb 6 20:10:15 2007
@@ -23,8 +23,9 @@
<xsl:text>Target configuration</xsl:text>
</h2>
<label class="content-description"><img src="extensions/core/images/computer.gif"/>
- Target configuration of the proxy service lets you configure the ultimate message delivery.
- This can be either incoming sequence and outgoing sequence or a particular endpoint.
+ Define how messages arriving and departing through this proxy service should be handled. Available
+ options are to directly route messages to an endpoint; or to process incoming and outgoing messages
+ through already defined sequences of mediation.
</label><br/><br/>
<label>
@@ -41,7 +42,7 @@
Target Sequence</label>
<br/><br/>
- <label class="hard-indent">Incomming</label>
+ <label class="hard-indent">Incoming</label>
<select class="proxy-select" id="target_insequence" onchange="javascript: targetsequence(); return false;">
<option value="">Main Sequence</option>
<xsl:if test="@a_sq and @a_sq != ''">
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_target_view.xsl
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_target_view.xsl (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_target_view.xsl Tue Feb 6 20:10:15 2007
@@ -22,27 +22,28 @@
<xsl:text>Target configuration</xsl:text>
</h2>
<label class="content-description"><img src="extensions/core/images/computer.gif"/>
- Target configuration of the proxy service lets you configure the ultimate message delivery.
- This can be either incoming sequence and outgoing sequence or a particular endpoint.
+ Define how messages arriving and departing through this proxy service should be handled. Available
+ options are to directly route messages to an endpoint; or to process incoming and outgoing messages
+ through already defined sequences of mediation.
</label><br/><br/>
<xsl:choose>
<xsl:when test="syn:target">
<xsl:for-each select="syn:target">
<xsl:choose>
<xsl:when test="@endpoint">
- <p>Target Endpoint</p><br/>
+ <p>Endpoint selected as the destination</p><br/>
<label style="margin-left: 3em; width: 200px;" class="field-view">
- <img src="extensions/core/images/pill.gif"/> Message delivery endpoint
+ <img src="extensions/core/images/pill.gif"/> Endpoint
</label>
<label style="margin-left: 50px;"> <xsl:value-of select="@endpoint"/></label>
<br/>
</xsl:when>
<xsl:otherwise>
- <p>Target Sequence</p><br/>
+ <p>Target Sequences selected to process messages</p><br/>
<xsl:choose>
<xsl:when test="@inSequence">
<label style="margin-left: 3em; width: 200px;" class="field-view">
- <img src="extensions/core/images/pill.gif"/> Incoming message mediation
+ <img src="extensions/core/images/pill.gif"/> Incoming messages mediated through
</label>
<label style="margin-left: 50px;"> <xsl:value-of select="@inSequence"/></label>
<br/>
@@ -51,14 +52,14 @@
<label style="margin-left: 3em; width: 200px;" class="field-view">
<img src="extensions/core/images/pill.gif"/> Incoming message mediation
</label>
- <label style="margin-left: 50px;">Default Main Sequence</label>
+ <label style="margin-left: 50px;">Main Sequence</label>
<br/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="@outSequence">
<label style="margin-left: 3em; width: 200px;" class="field-view">
- <img src="extensions/core/images/pill.gif"/> Outgoing message mediation
+ <img src="extensions/core/images/pill.gif"/> Outgoing messages mediated through
</label>
<label style="margin-left: 47px;"> <xsl:value-of select="@outSequence"/></label>
<br/>
@@ -67,7 +68,7 @@
<label style="margin-left: 3em; width: 200px;" class="field-view">
<img src="extensions/core/images/pill.gif"/> Outgoing message mediation
</label>
- <label style="margin-left: 47px;">Default Main Sequence</label>
+ <label style="margin-left: 47px;">Main Sequence</label>
<br/>
</xsl:otherwise>
</xsl:choose>
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_transport_edit.xsl
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_transport_edit.xsl (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_transport_edit.xsl Tue Feb 6 20:10:15 2007
@@ -24,8 +24,9 @@
</h2>
<label class="content-description">
<img src="extensions/core/images/computer.gif"/>
- Transport configuration of the proxy service lets you configure the transports on
- which you want to expose this service.
+ Select and configure the transports on which the proxy service should be exposed. The available list of transports
+ are the transports which are configured for the installation. Transport specific service parameters could be used
+ to specify JMS destinations etc.
</label>
<br/>
<br/>
@@ -33,7 +34,7 @@
<p>Exposed Transports</p><br/>
<table>
<thead>
- <tr><th>Availabel Transports</th><th>Exposed</th></tr>
+ <tr><th>Available Transports</th><th>Exposed</th></tr>
</thead>
<tbody>
<xsl:choose>
Modified: trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_transport_view.xsl
==============================================================================
--- trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_transport_view.xsl (original)
+++ trunk/esb/java/modules/distribution/src/main/www/extensions/core/xslt/proxyservices/proxy_transport_view.xsl Tue Feb 6 20:10:15 2007
@@ -24,8 +24,9 @@
</h2>
<label class="content-description">
<img src="extensions/core/images/computer.gif"/>
- Transport configuration of the proxy service lets you configure the transports on
- which you want to expose this service.
+ Select and configure the transports on which the proxy service should be exposed. The available list of transports
+ are the transports which are configured for the installation. Transport specific service parameters could be used
+ to specify JMS destinations etc.
</label>
<br/>
<br/>
@@ -36,7 +37,7 @@
<table>
<thead>
<tr>
- <th>Availabel Transports</th>
+ <th>Available Transports</th>
<th>Exposed</th>
</tr>
</thead>
@@ -81,10 +82,10 @@
<td>
<xsl:choose>
<xsl:when test="contains(concat(@transports, ' '), concat(substring-before($t_string, ' '), ' '))">
- <label>yes(will be replaced with an image)</label>
+ <label>yes(TODO to be replaced with an image)</label>
</xsl:when>
<xsl:otherwise>
- <label>no(will be replaced with an image)</label>
+ <label>no(TODO to be replaced with an image)</label>
</xsl:otherwise>
</xsl:choose>
</td>
More information about the Esb-java-dev
mailing list