~ubuntu-branches/ubuntu/edgy/sope/edgy

« back to all changes in this revision

Viewing changes to sope-appserver/samples/iCalPortal/Pages/iCalPortalToDoView.wox

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Ley
  • Date: 2005-08-19 16:53:31 UTC
  • Revision ID: james.westby@ubuntu.com-20050819165331-hs683wz1osm708pw
Tags: upstream-4.4rc.2
ImportĀ upstreamĀ versionĀ 4.4rc.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version='1.0' standalone='yes'?>
 
2
 
 
3
<var:component className='iCalPortalFrame' title='localizedTitle'
 
4
               xmlns='http://www.w3.org/1999/xhtml'
 
5
               xmlns:var='http://www.skyrix.com/od/binding'
 
6
               xmlns:const='http://www.skyrix.com/od/constant'>
 
7
 
 
8
  <var:component className="iCalPortalCalTabs" const:selection="todo"
 
9
                 calendarName="calendarName">
 
10
 
 
11
    <table border="0" width="100%">
 
12
      <tr bgcolor="#aaaaaa">
 
13
        <th align="left">summary</th>
 
14
        <th align="left">startdate</th>
 
15
        <th align="left">duedate</th>
 
16
        <th align="left">priority</th>
 
17
      </tr>
 
18
      
 
19
      <var:foreach list="dataSource.fetchObjects" item="item">
 
20
        <tr>
 
21
          <td><a directActionName="showJob" var:_uid="uid"
 
22
                 var:_calendarName="calendarName"
 
23
                ><var:string value="item.summary"/></a></td>
 
24
          <td><var:string value="item.startDate"
 
25
                          const:dateformat="%Y-%m-%d"/></td>
 
26
          <td><var:string value="item.due" const:dateformat="%Y-%m-%d"/></td>
 
27
          <td><var:string value="item.priority"/></td>
 
28
        </tr>
 
29
      </var:foreach>
 
30
    </table>
 
31
 
 
32
  </var:component>
 
33
</var:component>