Update of 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/jelly/framework
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9719/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/jelly/framework

Added Files:
        Timer.jelly Upload.jelly ValidField.jelly 
Log Message:
Completed framework component tags

--- NEW FILE: ValidField.jelly ---
<?xml version="1.0" encoding="UTF-8"?>
<j:jelly xmlns:j="jelly:core" xmlns:jxml="jelly:xml" xmlns:d="jelly:define">
   <j:forEach var="theValidField" 
items="${class.getTagsByName('tapestry.valid-field')}">
   <component type="ValidField" id="${theValidField.id}">
      <binding name="validator" value="${theValidField.validator}"/>
      <binding name="displayName" value="${theValidField.displayName}"/>
      <binding name="value" value="${theValidField.value_}"/>
      <j:if test="${theValidField.getNamedParameter('disabled') != null}">
      <binding name="disabled" value="${theValidField.disabled}"/>
      </j:if>
      <j:if test="${theValidField.getNamedParameter('hidden') != null}">
      <binding name="hidden" value="${theValidField.hidden}"/>
      </j:if>
      <j:if test="${theValidField.getNamedParameter('htmlid') != null}">
      <binding name="id" value="${theValidField.htmlid}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>
--- NEW FILE: Timer.jelly ---
<?xml version="1.0" encoding="UTF-8"?>
<j:jelly xmlns:j="jelly:core" xmlns:jxml="jelly:xml" xmlns:d="jelly:define">
   <j:forEach var="theTimer" items="${class.getTagsByName('tapestry.timer')}">
   <component type="Timer" id="${theTimer.id}">
      <j:if test="${theTimer.getNamedParameter('name') != null}">
      <binding name="name" value="${theTimer.name_}"/>
      </j:if>
      <j:if test="${theTimer.getNamedParameter('value') != null}">
      <binding name="value" value="${theTimer.value_}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>
--- NEW FILE: Upload.jelly ---
<?xml version="1.0" encoding="UTF-8"?>
<j:jelly xmlns:j="jelly:core" xmlns:jxml="jelly:xml" xmlns:d="jelly:define">
   <j:forEach var="theUpload" items="${class.getTagsByName('tapestry.upload')}">
   <component type="Upload" id="${theUpload.id}">
      <binding name="file" value="${theUpload.file}"/>
      <j:if test="${theUpload.getNamedParameter('disabled') != null}">
      <binding name="disabled" value="${theUpload.disabled}"/>
      </j:if>
      <j:if test="${theUpload.getNamedParameter('display-name') != null}">
      <binding name="displayName" value="${theUpload.displayName}"/>
      </j:if>
      <j:if test="${theUpload.getNamedParameter('validators') != null}">
      <binding name="validators" value="${theUpload.validators}"/>
      </j:if>
      <j:if test="${theUpload.getNamedParameter('htmlid') != null}">
      <binding name="id" value="${theUpload.htmlid}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to