Changeset 1231
- Timestamp:
- 01/18/07 15:44:43
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webadmin/webapp/resources/default/default/default.xsl
r1229 r1231 1113 1113 <!-- set or remove "recurring" and show or hide all recurrence fields: --> 1114 1114 <input type="radio" name="recurring" value="true" onclick="swapRecurrence(this)"> 1115 <xsl:if test="form/recurr ence"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if>1115 <xsl:if test="form/recurringEntity = 'true'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> 1116 1116 </input> event recurs 1117 1117 <input type="radio" name="recurring" value="false" onclick="swapRecurrence(this)"> 1118 <xsl:if test=" not(form/recurrence)"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if>1118 <xsl:if test="form/recurringEntity = 'false'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> 1119 1119 </input> event does not recur 1120 1120 </div> … … 1122 1122 <!-- wrapper for all recurrence fields (rrules and rdates): --> 1123 1123 <div id="recurrenceFields" class="invisible"> 1124 <xsl:if test="form/recurr ence"><xsl:attribute name="class">visible</xsl:attribute></xsl:if>1124 <xsl:if test="form/recurringEntity = 'true'"><xsl:attribute name="class">visible</xsl:attribute></xsl:if> 1125 1125 1126 1126 <!-- show or hide rrules fields: --> … … 1128 1128 <span id="rrulesSwitch"> 1129 1129 <xsl:choose> 1130 <xsl:when test=" /bedeworkadmin/creating = 'true'">1131 c reate recurrence rules1130 <xsl:when test="form/recurrence"> 1131 change recurrence rules 1132 1132 </xsl:when> 1133 1133 <xsl:otherwise> 1134 c hange recurrence rules1134 create recurrence rules 1135 1135 </xsl:otherwise> 1136 1136 </xsl:choose> … … 1142 1142 1143 1143 <xsl:if test="form/recurrence"> 1144 <!-- Output descriptive recurrence information. Probably not1144 <!-- Output descriptive recurrence rules information. Probably not 1145 1145 complete yet. Replace all strings so can be 1146 1146 more easily internationalized. --> trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r1229 r1231 2331 2331 <!-- set or remove "recurring" and show or hide all recurrence fields: --> 2332 2332 <input type="radio" name="recurring" value="true" onclick="swapRecurrence(this)"> 2333 <xsl:if test="form/recurr ence"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if>2333 <xsl:if test="form/recurringEntity = 'true'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> 2334 2334 </input> event recurs 2335 2335 <input type="radio" name="recurring" value="false" onclick="swapRecurrence(this)"> 2336 <xsl:if test=" not(form/recurrence)"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if>2336 <xsl:if test="form/recurringEntity = 'false'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> 2337 2337 </input> event does not recur 2338 2338 </div> … … 2340 2340 <!-- wrapper for all recurrence fields (rrules and rdates): --> 2341 2341 <div id="recurrenceFields" class="invisible"> 2342 <xsl:if test="form/recurr ence"><xsl:attribute name="class">visible</xsl:attribute></xsl:if>2342 <xsl:if test="form/recurringEntity = 'true'"><xsl:attribute name="class">visible</xsl:attribute></xsl:if> 2343 2343 2344 2344 <!-- show or hide rrules fields: --> … … 2346 2346 <span id="rrulesSwitch"> 2347 2347 <xsl:choose> 2348 <xsl:when test=" /bedework/creating = 'true'">2349 c reate recurrence rules2348 <xsl:when test="form/recurrence"> 2349 change recurrence rules 2350 2350 </xsl:when> 2351 2351 <xsl:otherwise> 2352 c hange recurrence rules2352 create recurrence rules 2353 2353 </xsl:otherwise> 2354 2354 </xsl:choose> … … 2360 2360 2361 2361 <xsl:if test="form/recurrence"> 2362 <!-- Output descriptive recurrence information. Probably not2362 <!-- Output descriptive recurrence rules information. Probably not 2363 2363 complete yet. Replace all strings so can be 2364 2364 more easily internationalized. -->
