[jboss-svn-commits] JBL Code SVN: r7617 - in labs/jbossesb/trunk/product/console: . view/transform
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Wed Nov 15 11:47:31 EST 2006
Author: tfennelly
Date: 2006-11-15 11:47:18 -0500 (Wed, 15 Nov 2006)
New Revision: 7617
Modified:
labs/jbossesb/trunk/product/console/build.properties
labs/jbossesb/trunk/product/console/import.sql
labs/jbossesb/trunk/product/console/view/transform/list-resource-specs.xhtml
labs/jbossesb/trunk/product/console/view/transform/new-trans-resource-create.xhtml
labs/jbossesb/trunk/product/console/view/transform/new-trans-resource-spec-create.xhtml
Log:
small fixes
Modified: labs/jbossesb/trunk/product/console/build.properties
===================================================================
--- labs/jbossesb/trunk/product/console/build.properties 2006-11-15 15:54:28 UTC (rev 7616)
+++ labs/jbossesb/trunk/product/console/build.properties 2006-11-15 16:47:18 UTC (rev 7617)
@@ -1,2 +1,2 @@
-#deploy.dir=/home/tfennelly/jboss-4.0.4.GA/server/default/deploy
-deploy.dir=/home/tfennelly/packages/apache-tomcat-5.5.20/webapps
\ No newline at end of file
+deploy.dir=/home/tfennelly/jboss-4.0.4.GA/server/default/deploy
+#deploy.dir=/home/tfennelly/packages/apache-tomcat-5.5.20/webapps
Modified: labs/jbossesb/trunk/product/console/import.sql
===================================================================
--- labs/jbossesb/trunk/product/console/import.sql 2006-11-15 15:54:28 UTC (rev 7616)
+++ labs/jbossesb/trunk/product/console/import.sql 2006-11-15 16:47:18 UTC (rev 7617)
@@ -47,9 +47,9 @@
--########################################################################
--# StringTemplate Resource Template.
--########################################################################
-insert into transformationresourcespec (id, name, path, description, reference) values
- (2, 'StringTemplate', 'N/A',
- 'Perform a XML Fragment Transform using an <a href="http://www.stringtemplate.org">StringTemplate</a> Template. The targeted XML fragment is transformed using the <a href="http://www.stringtemplate.org">StringTemplate</a> Template and the transformation result is used in accordance with the value of the "action" parameter. Used in conjunction with the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Javabean Cartridge</a> Cartridge. <p/>Examples of using this resource can be seen on the <a href="http://milyn.codehaus.org/Tutorials">Milyn Smooks</a> website.<p/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Templating and Javabean Cartridges</a> to be installed.',
+insert into transformationresourcespec (id, name, description, reference) values
+ (2, 'StringTemplate',
+ 'Perform an XML Fragment Transform using an <a href="http://www.stringtemplate.org">StringTemplate</a> Template. The targeted XML fragment is transformed using the <a href="http://www.stringtemplate.org">StringTemplate</a> Template and the transformation result is used in accordance with the value of the "action" parameter. Used in conjunction with the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Javabean Cartridge</a> Cartridge. <p/>Examples of using this resource can be seen on the <a href="http://milyn.codehaus.org/Tutorials">Milyn Smooks</a> website.<p/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Templating and Javabean Cartridges</a> to be installed.',
'http://milyn.codehaus.org/javadoc/smooks-cartridges/templating/org/milyn/templating/stringtemplate/StringTemplateContentDeliveryUnitCreator.html');
insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values
(7, 'action', '', 'Action to be performed with the transformation result relative to the targeted XML Fragment. Possible values: "replace", "addto", "insertbefore", "insertafter".', true, 2);
Modified: labs/jbossesb/trunk/product/console/view/transform/list-resource-specs.xhtml
===================================================================
--- labs/jbossesb/trunk/product/console/view/transform/list-resource-specs.xhtml 2006-11-15 15:54:28 UTC (rev 7616)
+++ labs/jbossesb/trunk/product/console/view/transform/list-resource-specs.xhtml 2006-11-15 16:47:18 UTC (rev 7617)
@@ -11,11 +11,8 @@
<div class="section">
<fieldset>
<h:form>
- <h2>Manage Resource Configuration Specifications</h2>
+ <h2>Manage Transformation/Analysis Templates</h2>
<div class="section">
- This wizard lists all Transformation/Analysis Resource Configuration Specifications.
- </div>
- <div class="section">
<h:outputText value="There are no Resource Configuration Specifications!" rendered="#{configurationSpecs != null and configurationSpecs.rowCount==0}"/>
<h:dataTable value="#{configurationSpecs}" var="configSelection" rendered="#{configurationSpecs.rowCount>0}">
<h:column>
Modified: labs/jbossesb/trunk/product/console/view/transform/new-trans-resource-create.xhtml
===================================================================
--- labs/jbossesb/trunk/product/console/view/transform/new-trans-resource-create.xhtml 2006-11-15 15:54:28 UTC (rev 7616)
+++ labs/jbossesb/trunk/product/console/view/transform/new-trans-resource-create.xhtml 2006-11-15 16:47:18 UTC (rev 7617)
@@ -24,7 +24,7 @@
<div class="entry">
<div class="label"><h:outputLabel for="Resource">Applied Resource:</h:outputLabel></div>
<div class="input">
- <h:inputText id="Resource" value="#{transResource.path}" size="100" disabled="#{transResource.path != null}"/>
+ <h:inputText id="Resource" value="#{transResource.path}" size="100" disabled="#{transResource.path != null}" required="true" />
<br/><span class="errors"><h:message for="Resource" /></span>
</div>
</div>
Modified: labs/jbossesb/trunk/product/console/view/transform/new-trans-resource-spec-create.xhtml
===================================================================
--- labs/jbossesb/trunk/product/console/view/transform/new-trans-resource-spec-create.xhtml 2006-11-15 15:54:28 UTC (rev 7616)
+++ labs/jbossesb/trunk/product/console/view/transform/new-trans-resource-spec-create.xhtml 2006-11-15 16:47:18 UTC (rev 7617)
@@ -77,11 +77,11 @@
</h:column>
<h:column>
<f:facet name="header">Parameter Description</f:facet>
- <pre>#{parameterSelection.descriptionAsString}</pre>
+ <h:outputText escape="false" value="#{parameterSelection.descriptionAsString}" />
</h:column>
<h:column>
<f:facet name="header">Required</f:facet>
- <pre>#{parameterSelection.required}</pre>
+ #{parameterSelection.required}
</h:column>
</h:dataTable>
</div>
More information about the jboss-svn-commits
mailing list