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-serv2417/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/jelly/framework

Added Files:
        Card.jelly Conditional.jelly Delegator.jelly Describe.jelly 
        Do.jelly Else.jelly 
Log Message:
Split Tests for Framework, Contrib and tacos components.
Added a bunch of tags... I'm gonna finish soon :-)

--- NEW FILE: Card.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="theCard" items="${class.getTagsByName('tapestry.card')}">
   <component type="Card" id="${theCard.id}">
      <j:if test="${theCard.getNamedParameter('title') != null}">
      <binding name="title" value="${theCard.title}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>
--- NEW FILE: Conditional.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="theConditional" 
items="${class.getTagsByName('tapestry.conditional')}">
   <component type="Conditional" id="${theConditional.id}">
      <binding name="condition" value="${theConditional.condition}"/>
      <j:if test="${theConditional.getNamedParameter('invert') != null}">
      <binding name="invert" value="${theConditional.invert}"/>
      </j:if>
      <j:if test="${theConditional.getNamedParameter('element') != null}">
      <binding name="element" value="${theConditional.element}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>
--- NEW FILE: Do.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="theDo" items="${class.getTagsByName('tapestry.do')}">
   <component type="Do" id="${theDo.id}">
      <binding name="type" value="${theDo.type}"/>
      <j:if test="${theDo.getNamedParameter('label') != null}">
      <binding name="label" value="${theDo.label}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>
--- NEW FILE: Delegator.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="theDelegator" 
items="${class.getTagsByName('tapestry.delegator')}">
   <component type="Delegator" id="${theDelegator.id}">
      <j:if test="${theDelegator.getNamedParameter('delegate') != null}">
      <binding name="delegate" value="${theDelegator.delegate}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>
--- NEW FILE: Describe.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="theDescribe" 
items="${class.getTagsByName('tapestry.describe')}">
   <component type="Describe" id="${theDescribe.id}">
      <j:if test="${theDescribe.getNamedParameter('object') != null}">
      <binding name="object" value="${theDescribe.object}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>
--- NEW FILE: Else.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="theElse" items="${class.getTagsByName('tapestry.else')}">
   <component type="Else" id="${theElse.id}">
      <j:if test="${theElse.getNamedParameter('element') != null}">
      <binding name="element" value="${theElse.element}"/>
      </j:if>
      <!-- check for informal parameters -->
      <j:forEach var="binding" 
items="${class.getTagsByName('tapestry.binding')}">
      <j:if test="${theElse.id==binding.componentId}">
      <binding name="${binding.name_}" value="${binding.value_}"/>
      </j:if>
      </j:forEach>
   </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