|
Revision 92
(checked in by johnsa, 7 years ago)
|
changed calendar jsp pages for public client to reflect new calendar objects
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<%@ taglib uri='struts-bean' prefix='bean' %> |
|---|
| 2 |
<%@ taglib uri='struts-logic' prefix='logic' %> |
|---|
| 3 |
|
|---|
| 4 |
<calendar> |
|---|
| 5 |
<id><bean:write name="calendar" property="id" /></id> |
|---|
| 6 |
<name><bean:write name="calendar" property="name" /></name> |
|---|
| 7 |
<path><bean:write name="calendar" property="path" /></path> |
|---|
| 8 |
<summary><bean:write name="calendar" property="summary" /></summary> |
|---|
| 9 |
<desc><bean:write name="calendar" property="description" /></desc> |
|---|
| 10 |
<calendarCollection><bean:write name="calendar" property="calendarCollection" /></calendarCollection> |
|---|
| 11 |
<mailListId><bean:write name="calendar" property="mailListId" /></mailListId> |
|---|
| 12 |
|
|---|
| 13 |
<logic:iterate name="calendar" property="children" id="cal"> |
|---|
| 14 |
<bean:define id="calendar" name="cal" toScope="session" /> |
|---|
| 15 |
<jsp:include page="/docs/emitCalendar.jsp" /> |
|---|
| 16 |
</logic:iterate> |
|---|
| 17 |
</calendar> |
|---|
| 18 |
|
|---|