Changeset 437
- Timestamp:
- 05/02/06 13:00:49
- Files:
-
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css (modified) (1 diff)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl (modified) (19 diffs)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/std-ical_iconDkGray.gif (added)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/std-ical_iconEditDkGray.gif (added)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/std-ical_iconSubsDkGray.gif (added)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/trashIcon.gif (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css
r433 r437 411 411 } 412 412 table.common th.commonHeader { 413 vertical-align: middle; 413 414 background-color: #666; 414 415 color: #eee; trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r435 r437 668 668 <tr> 669 669 <td class="noEventsCell"> 670 There are no events posted 671 <xsl:choose> 672 <xsl:when test="/bedework/periodname='Day'"> 673 today<xsl:if test="/bedework/title!=''"> for <strong><xsl:value-of select="/bedework/title"/></strong></xsl:if><xsl:if test="/bedework/search!=''"> for search term <strong>"<xsl:value-of select="/bedework/search"/>"</strong></xsl:if>. 674 </xsl:when> 675 <xsl:when test="/bedework/periodname='Month'"> 676 this month<xsl:if test="/bedework/title!=''"> for <strong><xsl:value-of select="/bedework/title"/></strong></xsl:if><xsl:if test="/bedework/search!=''"> for search term <strong>"<xsl:value-of select="/bedework/search"/>"</strong></xsl:if>. 677 </xsl:when> 678 <xsl:otherwise> 679 this week<xsl:if test="/bedework/title!=''"> for <strong><xsl:value-of select="/bedework/title"/></strong></xsl:if><xsl:if test="/bedework/search!=''"> for search term <strong>"<xsl:value-of select="/bedework/search"/>"</strong></xsl:if>. 680 </xsl:otherwise> 681 </xsl:choose> 670 No events to display. 682 671 </td> 683 672 </tr> … … 1078 1067 <table class="common" cellspacing="0"> 1079 1068 <tr> 1080 <th colspan=" 3" class="commonHeader">1069 <th colspan="2" class="commonHeader"> 1081 1070 <div id="eventActions"> 1082 1071 <xsl:variable name="eventIcalName" select="concat($guid,'.ics')"/> 1083 1072 <a href="{$export}?subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}&nocache=no&skinName=ical&contentType=text/calendar&contentName={$eventIcalName}" title="Download event as ical - for Outlook, PDAs, iCal, and other desktop calendars"> 1073 <img src="{$resourcesRoot}/resources/std-ical_iconDkGray.gif" width="12" height="13" border="0" alt="Download event as ical - for Outlook, PDAs, iCal, and other desktop calendars"/> 1084 1074 Download 1085 1075 </a> | … … 1089 1079 <xsl:when test="recurring=true"> 1090 1080 <a href="{$delEvent}?subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&confirmationid={$confId}"> 1081 <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="delete"/> 1091 1082 Remove All (recurring) 1092 1083 </a> … … 1094 1085 <xsl:otherwise> 1095 1086 <a href="{$delEvent}?subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}&confirmationid={$confId}"> 1087 <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="delete"/> 1096 1088 Remove 1097 1089 </a> … … 1101 1093 <xsl:when test="calendar/owner = /bedework/userid"> 1102 1094 <a href="{$editEvent}?subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}&confirmationid={$confId}"> 1095 <img src="{$resourcesRoot}/resources/std-ical_iconEditDkGray.gif" width="12" height="13" border="0" alt="edit"/> 1103 1096 Edit 1104 1097 </a> | … … 1106 1099 <xsl:when test="recurring=true"> 1107 1100 <a href="{$delEvent}?subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&confirmationid={$confId}"> 1101 <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="delete"/> 1108 1102 Delete All (recurring) 1109 1103 </a> … … 1111 1105 <xsl:otherwise> 1112 1106 <a href="{$delEvent}?subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}&confirmationid={$confId}"> 1107 <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="delete"/> 1113 1108 Delete 1114 1109 </a> … … 1118 1113 <xsl:otherwise> 1119 1114 <a href="{$subscriptions-fetch}"> 1115 <img src="{$resourcesRoot}/resources/std-ical_iconSubsDkGray.gif" width="12" height="13" border="0" alt="edit"/> 1120 1116 Manage Subscriptions 1121 1117 </a> … … 1136 1132 </th> 1137 1133 </tr> 1138 <!--<tr>1139 <td class="fieldname">Title:</td>1140 <td class="fieldval">1141 <strong>1142 <xsl:choose>1143 <xsl:when test="link != ''">1144 <xsl:variable name="link" select="link"/>1145 <a href="{$link}">1146 <xsl:value-of select="summary"/>1147 </a>1148 </xsl:when>1149 <xsl:otherwise>1150 <xsl:value-of select="summary"/>1151 </xsl:otherwise>1152 </xsl:choose>1153 </strong>1154 </td>1155 </tr>-->1156 1134 <tr> 1157 1135 <td class="fieldname">When:</td> … … 1164 1142 <xsl:if test="end/time != ''"><span class="time"><xsl:value-of select="end/time"/></span></xsl:if> 1165 1143 </td> 1166 < th class="icon" rowspan="2">1144 <!--<th class="icon" rowspan="2"> 1167 1145 <xsl:variable name="eventIcalName" select="concat($guid,'.ics')"/> 1168 1146 <a href="{$export}?subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}&nocache=no&skinName=ical&contentType=text/calendar&contentName={$eventIcalName}" title="Download event as ical - for Outlook, PDAs, iCal, and other desktop calendars"> 1169 1147 <img src="{$resourcesRoot}/resources/std-ical-icon.gif" width="20" height="26" border="0" align="left" alt="Download this event"/> 1170 </a><!-- <br /> 1171 [<a href="">help</a>] --> 1172 </th> 1148 </a> 1149 </th>--> 1173 1150 </tr> 1174 1151 <tr> 1175 1152 <td class="fieldname">Where:</td> 1176 <td c olspan="3" class="fieldval">1153 <td class="fieldval"> 1177 1154 <xsl:choose> 1178 1155 <xsl:when test="location/link=''"> … … 1193 1170 <tr> 1194 1171 <td class="fieldname">Description:</td> 1195 <td c olspan="3" class="fieldval">1172 <td class="fieldval"> 1196 1173 <xsl:call-template name="replace"> 1197 1174 <xsl:with-param name="string" select="description"/> … … 1205 1182 <td class="fieldname">Organizer:</td> 1206 1183 <xsl:variable name="organizerUri" select="organizer/organizerUri"/> 1207 <td c olspan="2" class="fieldval">1184 <td class="fieldval"> 1208 1185 <strong> 1209 1186 <a href="{$organizerUri}"> … … 1217 1194 <tr> 1218 1195 <td class="fieldname">Attendees:</td> 1219 <td c olspan="3" class="fieldval">1196 <td class="fieldval"> 1220 1197 <table id="attendees" cellspacing="0"> 1221 1198 <tr> … … 1246 1223 <tr> 1247 1224 <td class="fieldname">Cost:</td> 1248 <td c olspan="2" class="fieldval"><xsl:value-of select="cost"/></td>1225 <td class="fieldval"><xsl:value-of select="cost"/></td> 1249 1226 </tr> 1250 1227 </xsl:if> … … 1252 1229 <tr> 1253 1230 <td class="fieldname">See:</td> 1254 <td c olspan="3" class="fieldval">1231 <td class="fieldval"> 1255 1232 <xsl:variable name="link" select="link"/> 1256 1233 <a href="{$link}"><xsl:value-of select="link"/></a> … … 1261 1238 <tr> 1262 1239 <td class="fieldname">Contact:</td> 1263 <td c olspan="3" class="fieldval">1240 <td class="fieldval"> 1264 1241 <xsl:choose> 1265 1242 <xsl:when test="sponsor/link=''"> … … 3147 3124 </td> 3148 3125 </tr> 3149 <tr> 3150 <td> </td> 3151 <td> 3152 <input name="submit" type="submit" value="Continue"/>  3126 </table> 3127 <table border="0" id="submitTable"> 3128 <tr> 3129 <td> 3130 <input name="submit" type="submit" value="Continue"/> 3153 3131 <input name="cancelled" type="submit" value="Cancel"/> 3154 3132 </td> … … 3261 3239 <tr> 3262 3240 <th colspan="2" class="commonHeader"> 3263 < xsl:variable name="locId" select="form/id"/>3241 <!--<xsl:variable name="locId" select="form/id"/> 3264 3242 <div id="eventActions"> 3265 3243 <a href="{$delLocation}?locationId={$locId}">Delete Location</a> 3266 </div> 3244 </div>--> 3267 3245 Edit Location 3268 3246 </th> … … 3292 3270 </td> 3293 3271 </tr> 3294 <tr> 3295 <td> </td> 3296 <td class="padMe"> 3297 <input name="submit" type="submit" value="Submit Location"/>  3272 </table> 3273 <table border="0" id="submitTable"> 3274 <tr> 3275 <td> 3276 <input name="submit" type="submit" value="Submit Location"/> 3298 3277 <input name="cancelled" type="submit" value="Cancel"/> 3278 <input type="reset" value="Reset"/> 3279 </td> 3280 <td align="right"> 3281 <xsl:variable name="locId" select="form/id"/> 3282 <a href="{$delLocation}?locationId={$locId}"> 3283 <input type="button" name="delete" value="Delete Location"/> 3284 </a> 3299 3285 </td> 3300 3286 </tr>
