root/trunk/calendar3/webclient/war/docs/freeBusy.jsp

Revision 2 (checked in by douglm, 7 years ago)

Initial import of bedework

Line 
1 <%@ taglib uri='struts-bean' prefix='bean' %>
2 <%@ taglib uri='struts-logic' prefix='logic' %>
3 <%@ taglib uri='struts-html' prefix='html' %>
4 <%@ taglib uri='struts-genurl' prefix='genurl' %>
5
6 <%@ include file="header.jsp" %>
7
8 <%
9 try {
10 %>
11
12 <page>freeBusy</page>
13
14 <bean:define id="freeBusyObj"
15              name="calForm"
16              property="freeBusy"
17              toScope="request"/>
18
19 <freebusy>
20   <who><bean:write name="freeBusyObj" property="who.account" /></who>
21   <start><bean:write name="freeBusyObj" property="start" /></start>
22   <end><bean:write name="freeBusyObj" property="end" /></end>
23   <logic:iterate id="freeBusyComponent"  name="freeBusyObj" property="times" >
24     <freeBusyComponent>
25       <fbtype><bean:write name="freeBusyComponent" property="type" /></fbtype>
26       <logic:iterate id="period"  name="freeBusyComponent" property="periods" >
27         <period>
28           <start><bean:write name="period" property="start" /></start>
29           <end><bean:write name="period" property="end" /></end>
30         </period>
31       </logic:iterate>
32     </freeBusyComponent>
33   </logic:iterate>
34 </freebusy>
35
36 <%
37 } catch (Throwable t) {
38   t.printStackTrace();
39 }
40 %>
41
42 <%@ include file="footer.jsp" %>
43
Note: See TracBrowser for help on using the browser.