Changeset 575
- Timestamp:
- 06/13/06 10:45:17
- Files:
-
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl (modified) (2 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) (1 diff)
- trunk/calendar3/webclient/war/docs/event/editEvent.jsp (modified) (2 diffs)
- trunk/calendar3/webclient/war/docs/event/emitEvent.jsp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r572 r575 2115 2115 <div id="sharingBox"> 2116 2116 <h3>Sharing</h3> 2117 < !--<table class="common">2117 <table class="common"> 2118 2118 <tr> 2119 2119 <th class="commonHeader" colspan="2">Current access:</th> 2120 2120 </tr> 2121 2121 <tr> 2122 <th>Owner:</th>--> 2123 <!-- NOTE: we are currently getting the acl information from the 2124 calendar listing NOT from the current calendar (which does not 2125 have the means of producing it out of the action form just now. 2126 We'll fix this soon. --> 2127 <!--<td class="fieldval"> 2128 <xsl:value-of select="name(acl/ace[principal/property/owner]/grant/*)"/> 2129 </td> 2130 </tr> 2131 <xsl:if test="acl/ace/principal/href"> 2122 <th>Owner:</th> 2123 <td class="fieldval"> 2124 <xsl:value-of select="name(/bedework/access/acl/ace[principal/property/owner]/grant/*)"/> 2125 </td> 2126 </tr> 2127 <xsl:if test="/bedework/access/acl/ace/principal/href"> 2132 2128 <tr> 2133 2129 <th>Users:</th> 2134 2130 <td> 2135 <xsl:for-each select=" acl/ace[principal/href]">2131 <xsl:for-each select="/bedework/access/acl/ace[principal/href]"> 2136 2132 <xsl:value-of select="principal/href"/> (<xsl:value-of select="name(grant/*)"/>)<br/> 2137 2133 </xsl:for-each> … … 2139 2135 </tr> 2140 2136 </xsl:if> 2141 </table> -->2137 </table> 2142 2138 <form name="eventShareForm" action="{$event-setAccess}" id="shareForm"> 2143 2139 <input type="hidden" name="calPath" value="{$calPath}"/> trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/errors.xsl
r473 r575 48 48 <p>Duplicate guid: this event already exists in your calendar.</p> 49 49 </xsl:when> 50 <xsl:when test="id='org.bedework.client.error.nofilename'"> 51 <p>You must supply a file name (required).</p> 52 </xsl:when> 50 53 <xsl:when test="id='org.bedework.validation.error.missingfield'"> 51 54 <p>You must supply the following field: <em><xsl:value-of select="param"/></em></p> trunk/calendar3/webclient/war/WEB-INF/struts-config.xml
r567 r575 326 326 validate="false"> 327 327 <forward name="baddata" path="/showMain.rdo" redirect="true" /> 328 <forward name="retry" path="/initUpload.rdo" redirect="true" /> 328 329 <forward name="success" path="/setup.do" redirect="true"/> 329 330 </action> trunk/calendar3/webclient/war/docs/event/editEvent.jsp
r440 r575 3 3 <%@ taglib uri='struts-html' prefix='html' %> 4 4 <%@ taglib uri='struts-genurl' prefix='genurl' %> 5 <%@ taglib uri='bedework' prefix='bw' %> 5 6 <html:xhtml/> 6 7 … … 135 136 </genurl:form> 136 137 </formElements> 138 <bean:define id="eventFormatter" name="calForm" property="curEventFmt"/> 139 <bw:emitText name="eventFormatter" property="xmlAccess" tagName="access" 140 filter="no"/> 137 141 138 142 <% trunk/calendar3/webclient/war/docs/event/emitEvent.jsp
r433 r575 100 100 the following code should not be produced in the public client 101 101 **************************************************************** --%> 102 <bw:emitCurrentPrivs name="eventInfo" property="currentAccess" /> 102 <logic:equal name="calForm" property="guest" value="false"> 103 <bw:emitCurrentPrivs name="eventInfo" property="currentAccess" /> 104 </logic:equal> 103 105 </event>
