Update of /cvsroot/xdoclet/xdoclet2/demo/src/templates
In directory sc8-pr-cvs1:/tmp/cvs-serv11958/demo/src/templates

Added Files:
        class.jelly index.jelly 
Log Message:
Added a little demo project to get people started

--- NEW FILE: class.jelly ---
<?xml version="1.0" encoding="ISO-8859-1"?>

<j:jelly xmlns:j="jelly:core">

<html>
  <h1>${class.qualifiedName}</h1>
  <ul>
  <j:forEach var="method" items="${class.methods}">
    <li>${method.nameWithSignature}</li>
  </j:forEach>
  </ul>
</html>

</j:jelly>

--- NEW FILE: index.jelly ---
<?xml version="1.0" encoding="ISO-8859-1"?>

<j:jelly xmlns:j="jelly:core">

<html>
  <h1>${header}</h1>
  <ul>
  <j:forEach var="class" items="${classes}">
    <li><a href="${class.qualifiedName}.html">${class.qualifiedName}</a></li>
  </j:forEach>
  </ul>
</html>

</j:jelly>



-------------------------------------------------------
This SF.net email is sponsored by:Crypto Challenge is now open! 
Get cracking and register here for some mind boggling fun and 
the chance of winning an Apple iPod:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en
_______________________________________________
xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to