root/trunk/calendar3/webclient/war/docs/subs/subscriptions.jsp

Revision 319 (checked in by johnsa, 7 years ago)

Beginning the process of implementing real subscriptions (and calendars) in the personal client. Much of the code base is directly from the admin client (and may want to be common code at some point in the future).

  • Property svn:eol-style set to native
Line 
1 <%@ taglib uri='struts-bean' prefix='bean' %>
2 <%@ taglib uri='struts-logic' prefix='logic' %>
3
4 <%@include file="/docs/header.jsp"%>
5
6 <page>subscriptions</page>
7
8 <subscriptions>
9   <logic:iterate name="calForm" property="subscriptions" id="subscription">
10     <subscription>
11       <name><bean:write name="subscription" property="name" /></name>
12       <uri><bean:write name="subscription" property="uri" /></uri>
13       <affectsFreeBusy><bean:write name="subscription" property="affectsFreeBusy" /></affectsFreeBusy>
14       <display><bean:write name="subscription" property="display" /></display>
15       <style><bean:write name="subscription" property="style" /></style>
16       <internal><bean:write name="subscription" property="internalSubscription" /></internal>
17       <emailNotifications><bean:write name="subscription" property="emailNotifications" /></emailNotifications>
18       <calendarDeleted><bean:write name="subscription" property="calendarDeleted" /></calendarDeleted>
19       <unremoveable><bean:write name="subscription" property="unremoveable" /></unremoveable>
20     </subscription>
21   </logic:iterate>
22
23   <subscribe>
24     <!-- List of calendars to subscribe to-->
25     <%@include file="/docs/calendar/emitCalendars.jsp"%>
26   </subscribe>
27 </subscriptions>
28
29
30 <%@include file="/docs/footer.jsp"%>
Note: See TracBrowser for help on using the browser.