Changeset 386
- Timestamp:
- 04/19/06 14:33:38
- Files:
-
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl (modified) (4 diffs)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/errors.xsl (modified) (1 diff)
- trunk/calendar3/webclient/war/WEB-INF/struts-config.xml (modified) (3 diffs)
- trunk/calendar3/webclient/war/docs/header.jsp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r385 r386 59 59 <xsl:variable name="upload" select="/bedework/urlPrefixes/upload"/> 60 60 <xsl:variable name="getFreeBusy" select="/bedework/urlPrefixes/getFreeBusy/a/@href"/> 61 <xsl:variable name="setAccess" select="/bedework/urlPrefixes/setAccess/a/@href"/>62 61 <!-- calendars --> 63 62 <xsl:variable name="fetchPublicCalendars" select="/bedework/urlPrefixes/fetchPublicCalendars"/> … … 69 68 <xsl:variable name="calendar-fetchForUpdate" select="/bedework/urlPrefixes/calendar/fetchForUpdate/a/@href"/><!-- used --> 70 69 <xsl:variable name="calendar-update" select="/bedework/urlPrefixes/calendar/update/a/@href"/><!-- used --> 70 <xsl:variable name="calendar-setAccess" select="/bedework/urlPrefixes/calendar/setAccess/a/@href"/> 71 71 <!-- subscriptions --> 72 72 <xsl:variable name="subscriptions-fetch" select="/bedework/urlPrefixes/subscriptions/fetch/a/@href"/> … … 1948 1948 <xsl:for-each select="period"> 1949 1949 <xsl:variable name="startTime"><xsl:apply-templates select="start" mode="timeDisplay"/></xsl:variable> 1950 <xsl:variable name="startDate" select="start"/> 1950 1951 <xsl:choose> 1951 1952 <xsl:when test="fbtype = '0'"> 1952 1953 <td class="busy"> 1953 <a href=" " title="{$startTime}">*</a>1954 <a href="{$initEvent}?date={$startDate}" title="{$startTime}">*</a> 1954 1955 </td> 1955 1956 </xsl:when> 1956 1957 <xsl:otherwise> 1957 1958 <td class="free"> 1958 <a href=" " title="{$startTime}">*</a>1959 <a href="{$initEvent}?date={$startDate}" title="{$startTime}">*</a> 1959 1960 </td> 1960 1961 </xsl:otherwise> … … 2286 2287 </xsl:if> 2287 2288 </table> 2288 <form name="calendarShareForm" action="{$ setAccess}" id="shareForm">2289 <form name="calendarShareForm" action="{$calendar-setAccess}" id="shareForm"> 2289 2290 <input type="hidden" name="calId" value="{$id}"/> 2290 2291 <p> trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/errors.xsl
r383 r386 30 30 <p>Unknown calendar.</p> 31 31 </xsl:when> 32 <xsl:when test="id='org.bedework.client.error.usernotfound'"> 33 <p>User not found.</p> 34 </xsl:when> 32 35 <xsl:when test="id='org.bedework.client.error.location.referenced'"> 33 36 <p>Location is in use. It cannot be deleted while referenced by an event.</p> trunk/calendar3/webclient/war/WEB-INF/struts-config.xml
r379 r386 296 296 </action> 297 297 298 <action path="/setAccess"299 type="org.bedework.webcommon.access.AccessAction"300 name="calForm"301 scope="session"302 validate="false">303 </action>304 305 298 <action path="/manageLocations" 306 299 type="org.bedework.webclient.BwAction" … … 368 361 <forward name="success" path="/docs/calendar/displayCalendar.jsp"/> 369 362 </action> 370 371 363 372 364 <action path="/calendar/showReferenced" … … 459 451 </action> 460 452 453 <action path="/calendar/setAccess" 454 type="org.bedework.webcommon.access.AccessAction" 455 name="calForm" 456 scope="session" 457 validate="false"> 458 <forward name="success" path="/calendar/showModForm.rdo" redirect="true" /> 459 <forward name="error" path="/calendar/showModForm.rdo" redirect="true" /> 460 <forward name="notFound" path="/calendar/showModForm.rdo" redirect="true" /> 461 <forward name="doNothing" path="/calendar/showModForm.rdo" redirect="true" /> 462 </action> 461 463 <!-- ....................... system stats .......................... --> 462 464 trunk/calendar3/webclient/war/docs/header.jsp
r383 r386 140 140 141 141 <getFreeBusy><genurl:link page="/getFreeBusy.do?b=de"/></getFreeBusy> 142 <setAccess><genurl:link page="/setAccess.do?b=de"/></setAccess>143 142 144 143 <calendar> … … 150 149 <fetchForUpdate><genurl:link page="/calendar/fetchForUpdate.do?b=de"/></fetchForUpdate><!-- keep --> 151 150 <update><genurl:link page="/calendar/update.do?b=de"/></update><!-- keep --> 151 <setAccess><genurl:link page="/calendar/setAccess.do?b=de"/></setAccess> 152 152 </calendar> 153 153
