|
Revision 333
(checked in by johnsa, 7 years ago)
|
corrected add and mod subscription to show list of public calendars rather than personal calendars
|
- 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>modSubscription</page> |
|---|
| 7 |
<creating><bean:write name="calForm" property="addingSubscription"/></creating> |
|---|
| 8 |
|
|---|
| 9 |
<subscriptions> |
|---|
| 10 |
<subscription> |
|---|
| 11 |
<name><bean:write name="calForm" property="subscription.name" /></name> |
|---|
| 12 |
<uri><bean:write name="calForm" property="subscription.uri" /></uri> |
|---|
| 13 |
<affectsFreeBusy><bean:write name="calForm" property="subscription.affectsFreeBusy" /></affectsFreeBusy> |
|---|
| 14 |
<display><bean:write name="calForm" property="subscription.display" /></display> |
|---|
| 15 |
<style><bean:write name="calForm" property="subscription.style" /></style> |
|---|
| 16 |
<internal><bean:write name="calForm" property="subscription.internalSubscription" /></internal> |
|---|
| 17 |
<emailNotifications><bean:write name="calForm" property="subscription.emailNotifications" /></emailNotifications> |
|---|
| 18 |
<calendarDeleted><bean:write name="calForm" property="subscription.calendarDeleted" /></calendarDeleted> |
|---|
| 19 |
<unremoveable><bean:write name="calForm" property="subscription.unremoveable" /></unremoveable> |
|---|
| 20 |
</subscription> |
|---|
| 21 |
|
|---|
| 22 |
<subscribe> |
|---|
| 23 |
<!-- List of calendars to subscribe to--> |
|---|
| 24 |
<%@include file="/docs/calendar/emitPublicCalendars.jsp"%> |
|---|
| 25 |
</subscribe> |
|---|
| 26 |
</subscriptions> |
|---|
| 27 |
|
|---|
| 28 |
<%@include file="/docs/footer.jsp"%> |
|---|
| 29 |
|
|---|