Changeset 1239
- Timestamp:
- 01/19/07 11:32:41
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webadmin/webapp/resources/default/default/default.xsl
r1237 r1239 1951 1951 </div> 1952 1952 <div id="bwClockCover"> 1953   1953 1954 <!-- this is a special effect div used simply to cover the pixelated edge 1954 1955 where the clock meets the clock box title --></div> … … 1962 1963 <div id="bwClockTime"> 1963 1964 select time 1965 </div> 1966 <div id="bwClockSwitch"> 1967 switch 1964 1968 </div> 1965 1969 <div id="bwClockCloseText"> … … 2022 2026 <div class="dateStartEndBox" id="rdatesFormFields"> 2023 2027 <div class="dateFields"> 2024 <input name=" datetime"2028 <input name="eventRdate.date" 2025 2029 dojoType="dropdowndatepicker" 2026 2030 formatLength="medium" … … 2090 2094 <br/> 2091 2095 <!-- dateonly (anniversary) event: this is temporary - should be determined by the main event --> 2092 <input type="checkbox" name="dateOnly" id="rdateDateOnly" onclick="swapRdateAllDay(this)" value="o ff"/>2096 <input type="checkbox" name="dateOnly" id="rdateDateOnly" onclick="swapRdateAllDay(this)" value="on"/> 2093 2097 all day 2094 2098 <!-- floating event: no timezone (and not UTC) --> 2095 <input type="checkbox" name="floating" id="rdateFloating" onclick="swapRdateFloatingTime(this)" value="o ff"/>2099 <input type="checkbox" name="floating" id="rdateFloating" onclick="swapRdateFloatingTime(this)" value="on"/> 2096 2100 floating 2097 2101 <!-- store time as coordinated universal time (UTC) --> 2098 <input type="checkbox" name="storeUTC" id="rdateStoreUTC" onclick="swapRdateStoreUTC(this)" value="o ff"/>2102 <input type="checkbox" name="storeUTC" id="rdateStoreUTC" onclick="swapRdateStoreUTC(this)" value="on"/> 2099 2103 store as UTC 2100 2104 </div> … … 2116 2120 </td> 2117 2121 <td class="trash"> 2118 <xsl:variable name="datetime"><xsl:value-of select=" fourdigityear"/><xsl:value-of select="twodigitmonth"/><xsl:value-of select="twodigitday"/>T<xsl:value-of select="twodigithour"/><xsl:value-of select="twodigitminute"/>00</xsl:variable>2122 <xsl:variable name="datetime"><xsl:value-of select="unformatted"/></xsl:variable> 2119 2123 <xsl:variable name="tzid" select="timezone/id"/> 2120 <xsl:variable name="dateOnly" select="allday"/>2124 <xsl:variable name="dateOnly"><xsl:if test="dateOnly = 'true'">&dateOnly=true</xsl:if></xsl:variable> 2121 2125 <xsl:variable name="floating"><xsl:if test="floating = 'true'">&floating=true</xsl:if></xsl:variable> 2122 2126 <xsl:variable name="storeUTC"><xsl:if test="utc = 'true'">&storeUTC=true</xsl:if></xsl:variable> 2123 <a href="{$event-setRdate}&datetime={$datetime}&tzid={$tzid}{$ floating}{$storeUTC}&delete=true" title="remove">2127 <a href="{$event-setRdate}&datetime={$datetime}&tzid={$tzid}{$dateOnly}{$floating}{$storeUTC}&delete=true" title="remove"> 2124 2128 <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="remove"/> 2125 2129 </a> trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r1238 r1239 3035 3035 <xsl:variable name="datetime"><xsl:value-of select="unformatted"/></xsl:variable> 3036 3036 <xsl:variable name="tzid" select="timezone/id"/> 3037 <xsl:variable name="dateOnly" select="allday"/>3037 <xsl:variable name="dateOnly"><xsl:if test="dateOnly = 'true'">&dateOnly=true</xsl:if></xsl:variable> 3038 3038 <xsl:variable name="floating"><xsl:if test="floating = 'true'">&floating=true</xsl:if></xsl:variable> 3039 3039 <xsl:variable name="storeUTC"><xsl:if test="utc = 'true'">&storeUTC=true</xsl:if></xsl:variable> 3040 <a href="{$event-setRdate}&datetime={$datetime}&tzid={$tzid} &dateOnly={$dateOnly}{$floating}{$storeUTC}&delete=true" title="remove">3040 <a href="{$event-setRdate}&datetime={$datetime}&tzid={$tzid}{$dateOnly}{$floating}{$storeUTC}&delete=true" title="remove"> 3041 3041 <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="remove"/> 3042 3042 </a>
