Changeset 3598
- Timestamp:
- 07/24/12 13:31:48
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webadmin/webapp/resources/default/default/default.xsl
r3594 r3598 1255 1255 </xsl:when> 1256 1256 <xsl:otherwise> 1257 <a href="{$event-fetchForUpdatePending}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}"> 1257 <a> 1258 <xsl:choose> 1259 <xsl:when test="recurrenceId != ''"> 1260 <!-- recurrence instances should be updated like normal events - only master events should be published --> 1261 <xsl:attribute name="href"><xsl:value-of select="$event-fetchForUpdate"/>&calPath=<xsl:value-of select="$calPath"/>&guid=<xsl:value-of select="$guid"/>&recurrenceId=<xsl:value-of select="$recurrenceId"/></xsl:attribute> 1262 </xsl:when> 1263 <xsl:otherwise> 1264 <xsl:attribute name="href"><xsl:value-of select="$event-fetchForUpdatePending"/>&calPath=<xsl:value-of select="$calPath"/>&guid=<xsl:value-of select="$guid"/>&recurrenceId=<xsl:value-of select="$recurrenceId"/></xsl:attribute> 1265 </xsl:otherwise> 1266 </xsl:choose> 1258 1267 <xsl:choose> 1259 1268 <xsl:when test="summary != ''"> … … 1299 1308 <xsl:value-of select="start/shortdate"/> 1300 1309 <xsl:text> </xsl:text> 1301 <xsl:value-of select="start/time"/> 1310 <xsl:choose> 1311 <xsl:when test="start/allday = 'false'"> 1312 <xsl:value-of select="start/time"/> 1313 </xsl:when> 1314 <xsl:otherwise> 1315 <xsl:copy-of select="$bwStr-AEEF-AllDay"/> 1316 </xsl:otherwise> 1317 </xsl:choose> 1302 1318 </td> 1303 1319 <td class="date"> 1304 1320 <xsl:value-of select="end/shortdate"/> 1305 1321 <xsl:text> </xsl:text> 1306 <xsl:value-of select="end/time"/> 1322 <xsl:choose> 1323 <xsl:when test="start/allday = 'false'"> 1324 <xsl:value-of select="end/time"/> 1325 </xsl:when> 1326 <xsl:otherwise> 1327 <xsl:copy-of select="$bwStr-AEEF-AllDay"/> 1328 </xsl:otherwise> 1329 </xsl:choose> 1307 1330 </td> 1308 1331 <td class="calcat"> … … 1344 1367 <xsl:if test="recurring = 'true' or recurrenceId != ''"> 1345 1368 <div class="recurrenceEditLinks"> 1369 <xsl:text> </xsl:text> 1346 1370 <xsl:copy-of select="$bwStr-EvLC-RecurringEventEdit"/> 1347 <a href="{$event-fetchForUpdate}&calPath={$calPath}&guid={$guid}"> 1371 <!-- only master events can be published --> 1372 <a href="{$event-fetchForUpdatePending}&calPath={$calPath}&guid={$guid}"> 1348 1373 <xsl:copy-of select="$bwStr-EvLC-Master"/> 1349 1374 </a> | 1375 <!-- recurrence instances can only be edited --> 1350 1376 <a href="{$event-fetchForUpdate}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}"> 1351 1377 <xsl:copy-of select="$bwStr-EvLC-Instance"/>
