home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-cocoon-addon-1.4.9-installer.exe / taskListView.xml < prev    next >
Encoding:
Extensible Markup Language  |  2004-07-12  |  1.5 KB  |  52 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.   Copyright 1999-2004 The Apache Software Foundation
  5.  
  6.   Licensed under the Apache License, Version 2.0 (the "License");
  7.   you may not use this file except in compliance with the License.
  8.   You may obtain a copy of the License at
  9.  
  10.       http://www.apache.org/licenses/LICENSE-2.0
  11.  
  12.   Unless required by applicable law or agreed to in writing, software
  13.   distributed under the License is distributed on an "AS IS" BASIS,
  14.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.   See the License for the specific language governing permissions and
  16.   limitations under the License.
  17. -->
  18.  
  19. <!-- Use JXTemplateTransformer to generate a page out of our data -->
  20.  
  21. <page id="page" xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
  22.  
  23.     <title>#{title}</title>
  24.  
  25.     <content>
  26.         <table>
  27.             <tr>
  28.                 <td class="legend">id</td>
  29.                 <td class="legend">Assigned to</td>
  30.                 <td class="legend">Task name</td>
  31.             </tr>
  32.             <c:forEach select="#{task}">
  33.                 <tr class="listRow">
  34.                     <td><a href="singleTask?taskId=#{id}">#{id}</a></td>
  35.                     <td>#{assignedTo}</td>
  36.                     <td>#{taskName}</td>
  37.                 </tr>
  38.             </c:forEach>
  39.         </table>
  40.  
  41.         <p class="footer">
  42.             #{format-number(count(task),'###')} tasks in list - #{db/version}
  43.             <br/>
  44.             <a href="../../">Table of contents</a>
  45.         </p>
  46.     </content>
  47. </page>
  48.  
  49.  
  50.  
  51.  
  52.