Changeset 1096
- Timestamp:
- 11/17/06 13:29:13
- Files:
-
- trunk/deployment/webadmin/webapp/resources/default/default/default.css (modified) (2 diffs)
- trunk/deployment/webadmin/webapp/resources/default/default/default.xsl (modified) (3 diffs)
- trunk/deployment/webadmin/webapp/resources/default/default/errors.xsl (modified) (2 diffs)
- trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/default/default/default.xsl (modified) (2 diffs)
- trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webadmin/webapp/resources/default/default/default.css
r1085 r1096 29 29 color: #ff0; 30 30 font-weight: bold; 31 margin: 0.5em 0; 32 } 33 #messages p { 34 margin: 0; 31 35 } 32 36 #errors { … … 34 38 color: #f99; 35 39 font-weight: bold; 40 margin: 0.5em 0; 36 41 } 37 42 #errors em { 38 43 background-color: inherit; 39 44 color: #ff9; 45 } 46 #errors p { 47 margin: 0; 40 48 } 41 49 #adminLeftColumn { trunk/deployment/webadmin/webapp/resources/default/default/default.xsl
r1094 r1096 1414 1414 </th> 1415 1415 <td> 1416 < xsl:value-of select="creator"/>1416 <strong><xsl:value-of select="creator"/></strong> 1417 1417 </td> 1418 1418 </tr> … … 1420 1420 </table> 1421 1421 1422 1423 <!--<xsl:if test="/bedeworkadmin/canEdit = 'true' or /bedeworkadmin/userInfo/superUser = 'true'"> 1424 <xsl:variable name="subscriptionId" select="subscription/id"/> 1425 <xsl:variable name="calPath" select="calendar/encodedPath"/> 1426 <xsl:variable name="guid" select="guid"/> 1427 <xsl:variable name="recurrenceId" select="recurrenceId"/> 1428 <h3> 1429 <a href="{$event-fetchForUpdate}&subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}"> 1430 Edit Event 1431 </a> 1432 </h3> 1433 </xsl:if>--> 1422 <p> 1423 <xsl:if test="/bedeworkadmin/canEdit = 'true' or /bedeworkadmin/userInfo/superUser = 'true'"> 1424 <xsl:variable name="calPath" select="calendar/encodedPath"/> 1425 <xsl:variable name="guid" select="guid"/> 1426 <xsl:variable name="recurrenceId" select="recurrenceId"/> 1427 <input type="button" name="return" value="Edit event" onclick="javascript:location.replace('{$event-fetchForUpdate}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}')"/> 1428 </xsl:if> 1429 1430 <input type="button" name="return" value="Back to search results" onclick="javascript:history.back()"/> 1431 </p> 1434 1432 </xsl:template> 1435 1433 … … 3974 3972 </td> 3975 3973 <td> 3976 <a href="{$event- showEvent}&subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}">3974 <a href="{$event-fetchForDisplay}&subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}"> 3977 3975 <xsl:value-of select="event/summary"/> 3978 3976 </a> trunk/deployment/webadmin/webapp/resources/default/default/errors.xsl
r1085 r1096 4 4 <xsl:choose> 5 5 <xsl:when test="id='org.bedework.client.error.exc'"><!-- trap exceptions first --> 6 <xsl:choose> 7 <xsl:when test="param='org.bedework.exception.alreadyonadmingrouppath'"> 8 Error: a group may not be added to itself.<br/> 9 </xsl:when> 10 <xsl:otherwise> 11 <xsl:value-of select="param"/> 12 </xsl:otherwise> 13 </xsl:choose> 6 <p> 7 <xsl:choose> 8 <xsl:when test="param='org.bedework.exception.alreadyonadmingrouppath'"> 9 Error: a group may not be added to itself.<br/> 10 </xsl:when> 11 <xsl:otherwise> 12 <xsl:value-of select="param"/> 13 </xsl:otherwise> 14 </xsl:choose> 15 </p> 14 16 </xsl:when> 15 17 <xsl:when test="id='org.bedework.client.error.noaccess'"> 16 Error: no access18 <p>Error: no access.</p> 17 19 </xsl:when> 18 20 <xsl:when test="id='org.bedework.client.error.missingsubscriptionid'"> 19 You must supply a subscription <em>name</em>21 <p>You must supply a subscription <em>name</em>.</p> 20 22 </xsl:when> 21 23 <xsl:when test="id='org.bedework.client.error.nosuchsubscription'"> 22 Not found: there is no user identified by the name <em><xsl:value-of select="param"/></em>24 <p>Not found: there is no user identified by the name <em><xsl:value-of select="param"/></em>.</p> 23 25 </xsl:when> 24 26 <xsl:when test="id='org.bedework.client.error.viewnotfound'"> 25 Not found: there is no view identified by the name <em><xsl:value-of select="param"/></em>27 <p>Not found: there is no view identified by the name <em><xsl:value-of select="param"/></em>.</p> 26 28 </xsl:when> 27 29 <xsl:when test="id='org.bedework.client.error.viewnotadded'"> 28 Error: the view was not added30 <p>Error: the view was not added.</p> 29 31 </xsl:when> 30 32 <xsl:when test="id='org.bedework.client.error.nosuchevent'"> 31 Not found: there is no event with guid <em><xsl:value-of select="param"/></em> 33 <p>Not found: there is no event with guid <em><xsl:value-of select="param"/></em>.</p> 34 </xsl:when> 35 <xsl:when test="id='org.bedework.client.error.missingcalendarpath'"> 36 <p>Error: missing calendar path.</p> 32 37 </xsl:when> 33 38 <xsl:when test="id='org.bedework.client.error.eventnotfound'"> 34 Not found: the event was not found39 <p>Not found: the event was not found.</p> 35 40 </xsl:when> 36 41 <xsl:when test="id='org.bedework.client.error.badentityid'"> 37 Error: bad entity id42 <p>Error: bad entity id.</p> 38 43 </xsl:when> 39 44 <xsl:when test="id='org.bedework.client.error.noentityid'"> 40 Error: no entity id45 <p>Error: no entity id.</p> 41 46 </xsl:when> 42 47 <xsl:when test="id='org.bedework.client.error.nosuchcalendar'"> 43 Not found: there is no calendar identified by the path <em><xsl:value-of select="param"/></em>48 <p>Not found: there is no calendar identified by the path <em><xsl:value-of select="param"/></em>.</p> 44 49 </xsl:when> 45 50 <xsl:when test="id='org.bedework.client.error.calendar.referenced'"> 46 Cannot delete: the calendar is not empty 47 </xsl:when> 48 <xsl:when test="id='org.bedework.client.message.folder.updated'"> 49 Folder updated. 51 <p>Cannot delete: the calendar is not empty.</p> 50 52 </xsl:when> 51 53 <xsl:when test="id='org.bedework.client.error.unimplemented'"> 52 Unimplemented: the feature you are trying to use has not been implemented yet54 <p>Unimplemented: the feature you are trying to use has not been implemented yet.</p> 53 55 </xsl:when> 54 56 <xsl:when test="id='org.bedework.client.error.badhow'"> 55 Error: bad ACL request (bad how setting)57 <p>Error: bad ACL request (bad how setting).</p> 56 58 </xsl:when> 57 59 <xsl:when test="id='org.bedework.client.error.badwhotype'"> 58 Error: bad who type (user or group)60 <p>Error: bad who type (user or group).</p> 59 61 </xsl:when> 60 62 <xsl:when test="id='org.bedework.client.error.badinterval'"> 61 Error: bad interval63 <p>Error: bad interval.</p> 62 64 </xsl:when> 63 65 <xsl:when test="id='org.bedework.client.error.badintervalunit'"> 64 Error: bad interval unit66 <p>Error: bad interval unit.</p> 65 67 </xsl:when> 66 68 <xsl:when test="id='org.bedework.client.error.mail.norecipient'"> 67 Error: the email has no recipient69 <p>Error: the email has no recipient.</p> 68 70 </xsl:when> 69 71 <xsl:when test="id='org.bedework.client.error.choosegroupsuppressed'"> 70 Error: choose group is suppressed. You cannot perform that action at this time.72 <p>Error: choose group is suppressed. You cannot perform that action at this time.</p> 71 73 </xsl:when> 72 74 <xsl:when test="id='org.bedework.validation.error.toolong.description'"> 73 Your description is too long. Please limit your entry to75 <p>Your description is too long. Please limit your entry to 74 76 <em><xsl:value-of select="param"/></em> characters. You may also wish to 75 point the event entry at a supplimental web page by entering a <em>URL</em>. 77 point the event entry at a supplimental web page by entering a <em>URL</em>.</p> 76 78 </xsl:when> 77 79 <xsl:when test="id='org.bedework.validation.error.notitle'"> 78 You must supply a <em>title</em><br/>80 <p>You must supply a <em>title</em>.</p> 79 81 </xsl:when> 80 82 <xsl:when test="id='org.bedework.validation.error.nocalendar'"> 81 You must supply the <em>calendar</em><br/>83 <p>You must supply the <em>calendar</em>.</p> 82 84 </xsl:when> 83 85 <xsl:when test="id='org.bedework.validation.error.nodescription'"> 84 You must supply a <em>description</em><br/>86 <p>You must supply a <em>description</em>.</p> 85 87 </xsl:when> 86 88 <xsl:when test="id='org.bedework.validation.error.event.startafterend'"> 87 The <em>end date</em> for this event occurs before the <em>start date</em>89 <p>The <em>end date</em> for this event occurs before the <em>start date</em>.</p> 88 90 </xsl:when> 89 91 <xsl:when test="id='org.bedework.validation.error.invalid.endtype'"> 90 The <em>end date type</em> is invalid for the type of event you are creating92 <p>The <em>end date type</em> is invalid for the type of event you are creating.</p> 91 93 </xsl:when> 92 94 <xsl:when test="id='org.bedework.validation.error.invalid.duration'"> 93 < em>Invalid duration</em> - you may not have a zero-length duration94 for an all day event. 95 <p><em>Invalid duration</em> - you may not have a zero-length duration 96 for an all day event.</p> 95 97 </xsl:when> 96 98 <xsl:when test="id='org.bedework.validation.error.nocontactname'"> 97 You must enter a contact <em>name</em>.99 <p>You must enter a contact <em>name</em>.</p> 98 100 </xsl:when> 99 101 <xsl:when test="id='org.bedework.validation.error.nolocationaddress'"> 100 You must enter a location <em>address</em>.102 <p>You must enter a location <em>address</em>.</p> 101 103 </xsl:when> 102 104 <xsl:when test="id='org.bedework.client.error.missingfield'"> 103 Your information is incomplete: please supply a <em><xsl:value-of select="param"/></em><br/>105 <p>Your information is incomplete: please supply a <em><xsl:value-of select="param"/></em>.</p> 104 106 </xsl:when> 105 107 <xsl:when test="id='org.bedework.validation.error.missingfield'"> 106 Your information is incomplete: please supply a <em><xsl:value-of select="param"/></em><br/>108 <p>Your information is incomplete: please supply a <em><xsl:value-of select="param"/></em>.</p> 107 109 </xsl:when> 108 110 <xsl:when test="id='org.bedework.validation.error.forbidden.calmode'"> 109 Access forbidden: you are not allowed to perform that action on calendar <em><xsl:value-of select="param"/></em>111 <p>Access forbidden: you are not allowed to perform that action on calendar <em><xsl:value-of select="param"/></em>.</p> 110 112 </xsl:when> 111 113 <xsl:when test="id='org.bedework.client.error.missingcategory'"> 112 Error: the category identified by <em><xsl:value-of select="param"/></em> is missing114 <p>Error: the category identified by <em><xsl:value-of select="param"/></em> is missing.</p> 113 115 </xsl:when> 114 116 <xsl:when test="id='org.bedework.client.error.nosuchcategorynosuchcategory'"> 115 Not found: there is no category identified by the key <em><xsl:value-of select="param"/></em>117 <p>Not found: there is no category identified by the key <em><xsl:value-of select="param"/></em>.</p> 116 118 </xsl:when> 117 119 <xsl:when test="id='org.bedework.client.error.category.referenced'"> 118 Cannot delete: the category is referenced by events120 <p>Cannot delete: the category is referenced by events.</p> 119 121 </xsl:when> 120 122 <xsl:when test="id='org.bedework.pubevents.error.badfield'"> 121 Please correct your data input for <em><xsl:value-of select="param"/></em>123 <p>Please correct your data input for <em><xsl:value-of select="param"/></em>.</p> 122 124 </xsl:when> 123 125 <xsl:when test="id='org.bedework.client.error.nosuchcontact'"> 124 Not found: there is no contact <em><xsl:value-of select="param"/></em>126 <p>Not found: there is no contact <em><xsl:value-of select="param"/></em>.</p> 125 127 </xsl:when> 126 128 <xsl:when test="id='org.bedework.client.error.contact.referenced'"> 127 Cannot delete: the contact is referenced by events129 <p>Cannot delete: the contact is referenced by events.</p> 128 130 </xsl:when> 129 131 <xsl:when test="id='org.bedework.client.error.contact.alreadyexists'"> 130 Cannot add: the contact already exists132 <p>Cannot add: the contact already exists.</p> 131 133 </xsl:when> 132 134 <xsl:when test="id='org.bedework.client.error.nosuchlocation'"> 133 Not found: there is no location identified by the id <em><xsl:value-of select="param"/></em>135 <p>Not found: there is no location identified by the id <em><xsl:value-of select="param"/></em>.</p> 134 136 </xsl:when> 135 137 <xsl:when test="id='org.bedework.client.error.location.alreadyexists'"> 136 Cannot add: the location already exists138 <p>Cannot add: the location already exists.</p> 137 139 </xsl:when> 138 140 <xsl:when test="id='org.bedework.client.error.location.referenced'"> 139 Cannot delete: the location is referenced by events141 <p>Cannot delete: the location is referenced by events.</p> 140 142 </xsl:when> 141 143 <xsl:when test="id='org.bedework.client.error.subscription.reffed'"> … … 147 149 </xsl:when> 148 150 <xsl:when test="id='org.bedework.error.timezones.readerror'"> 149 <p>Timzone error: could not read file </p>151 <p>Timzone error: could not read file.</p> 150 152 </xsl:when> 151 153 <xsl:when test="id='org.bedework.client.error.nosuchuserid'"> 152 <p>Not found: there is no user identified by the id <em><xsl:value-of select="param"/></em> </p>154 <p>Not found: there is no user identified by the id <em><xsl:value-of select="param"/></em>.</p> 153 155 </xsl:when> 154 156 <xsl:when test="id='org.bedework.client.error.usernotfound'"> 155 Not found: the user <em><xsl:value-of select="param"/></em> was not found157 <p>Not found: the user <em><xsl:value-of select="param"/></em> was not found.</p> 156 158 </xsl:when> 157 159 <xsl:when test="id='org.bedework.error.duplicate.admingroup'"> 158 Error: duplicate admin group. <em><xsl:value-of select="param"/></em> already exists.160 <p>Error: duplicate admin group. <em><xsl:value-of select="param"/></em> already exists.</p> 159 161 </xsl:when> 160 162 <xsl:when test="id='org.bedework.client.error.nosuchadmingroup'"> 161 Error: no such admin group "<em><xsl:value-of select="param"/></em>"163 <p>Error: no such admin group "<em><xsl:value-of select="param"/></em>".</p> 162 164 </xsl:when> 163 165 <xsl:when test="id='org.bedework.error.unknowgroup'"> 164 Error: unknown admin group: <em><xsl:value-of select="param"/></em>166 <p>Error: unknown admin group: <em><xsl:value-of select="param"/></em>.</p> 165 167 </xsl:when> 166 168 <xsl:when test="id='org.bedework.exception.alreadyonadmingrouppath'"> 167 Error: group may not be added to itself169 <p>Error: group may not be added to itself.</p> 168 170 </xsl:when> 169 171 <xsl:when test="id='edu.rpi.sss.util.error.exc'"> 170 Utility package error: <em><xsl:value-of select="param"/></em>172 <p>Utility package error: <em><xsl:value-of select="param"/></em></p> 171 173 </xsl:when> 172 174 <xsl:otherwise> 173 < xsl:value-of select="id"/> = <xsl:value-of select="param"/>175 <p><xsl:value-of select="id"/> = <xsl:value-of select="param"/></p> 174 176 </xsl:otherwise> 175 177 </xsl:choose> trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/default/default/default.xsl
r1094 r1096 467 467 </td> 468 468 <td class="rightCell"> 469 <form name="searchForm" method="post" action="{$search}"> 470 Search: 471 <input type="text" name="query" size="15"> 472 <xsl:attribute name="value"><xsl:value-of select="/bedework/searchResults/query"/></xsl:attribute> 473 </input> 474 <input type="submit" name="submit" value="go"/> 475 </form> 469 <xsl:if test="/bedework/page!='searchResult'"> 470 <form name="searchForm" method="post" action="{$search}"> 471 Search: 472 <input type="text" name="query" size="15"> 473 <xsl:attribute name="value"><xsl:value-of select="/bedework/searchResults/query"/></xsl:attribute> 474 </input> 475 <input type="submit" name="submit" value="go"/> 476 </form> 477 </xsl:if> 476 478 <xsl:choose> 477 479 <xsl:when test="/bedework/periodname='Day'"> … … 1143 1145 <h2 class="bwStatusConfirmed"> 1144 1146 <div id="searchFilter"> 1145 Limit search to: 1146 <xsl:variable name="query" select="/bedework/searchResults/query"/> 1147 <xsl:choose> 1148 <xsl:when test="/bedework/searchResults/searchLimits = 'beforeToday'"> 1149 <input type="radio" name="searchLimits" value="fromToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=fromToday')"/>today forward 1150 <input type="radio" name="searchLimits" value="beforeToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=beforeToday')" checked="checked"/>past dates 1151 <input type="radio" name="searchLimits" value="none" onchange="window.location.replace('{$search}&query={$query}&searchLimits=none')"/>all dates 1152 </xsl:when> 1153 <xsl:when test="/bedework/searchResults/searchLimits = 'none'"> 1154 <input type="radio" name="searchLimits" value="fromToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=fromToday')"/>today forward 1155 <input type="radio" name="searchLimits" value="beforeToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=beforeToday')"/>past dates 1156 <input type="radio" name="searchLimits" value="none" onchange="window.location.replace('{$search}&query={$query}&searchLimits=none')" checked="checked"/>all dates 1157 </xsl:when> 1158 <xsl:otherwise> 1159 <input type="radio" name="searchLimits" value="fromToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=fromToday')" checked="checked"/>today forward 1160 <input type="radio" name="searchLimits" value="beforeToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=beforeToday')"/>past dates 1161 <input type="radio" name="searchLimits" value="none" onchange="window.location.replace('{$search}&query={$query}&searchLimits=none')"/>all dates 1162 </xsl:otherwise> 1163 </xsl:choose> 1147 <form name="searchForm" method="post" action="{$search}"> 1148 Search: 1149 <input type="text" name="query" size="15"> 1150 <xsl:attribute name="value"><xsl:value-of select="/bedework/searchResults/query"/></xsl:attribute> 1151 </input> 1152 <input type="submit" name="submit" value="go"/> 1153 Limit: 1154 <xsl:choose> 1155 <xsl:when test="/bedework/searchResults/searchLimits = 'beforeToday'"> 1156 <input type="radio" name="searchLimits" value="fromToday"/>today forward 1157 <input type="radio" name="searchLimits" value="beforeToday" checked="checked"/>past dates 1158 <input type="radio" name="searchLimits" value="none"/>all dates 1159 </xsl:when> 1160 <xsl:when test="/bedework/searchResults/searchLimits = 'none'"> 1161 <input type="radio" name="searchLimits" value="fromToday"/>today forward 1162 <input type="radio" name="searchLimits" value="beforeToday"/>past dates 1163 <input type="radio" name="searchLimits" value="none" checked="checked"/>all dates 1164 </xsl:when> 1165 <xsl:otherwise> 1166 <input type="radio" name="searchLimits" value="fromToday" checked="checked"/>today forward 1167 <input type="radio" name="searchLimits" value="beforeToday"/>past dates 1168 <input type="radio" name="searchLimits" value="none"/>all dates 1169 </xsl:otherwise> 1170 </xsl:choose> 1171 </form> 1164 1172 </div> 1165 1173 Search Result trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r1094 r1096 694 694 695 695 <!-- search --> 696 <form name="searchForm" method="post" action="{$search}"> 697 Search: 698 <input type="text" name="query" size="15"> 699 <xsl:attribute name="value"><xsl:value-of select="/bedework/searchResults/query"/></xsl:attribute> 700 </input> 701 <input type="submit" name="submit" value="go"/> 702 </form> 696 <xsl:if test="/bedework/page!='searchResult'"> 697 <form name="searchForm" method="post" action="{$search}"> 698 Search: 699 <input type="text" name="query" size="15"> 700 <xsl:attribute name="value"><xsl:value-of select="/bedework/searchResults/query"/></xsl:attribute> 701 </input> 702 <input type="submit" name="submit" value="go"/> 703 </form> 704 </xsl:if> 703 705 704 706 <!-- show free / busy --> … … 5457 5459 <h2 class="bwStatusConfirmed"> 5458 5460 <div id="searchFilter"> 5459 Limit search to: 5460 <xsl:variable name="query" select="/bedework/searchResults/query"/> 5461 <xsl:choose> 5462 <xsl:when test="/bedework/searchResults/searchLimits = 'beforeToday'"> 5463 <input type="radio" name="searchLimits" value="fromToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=fromToday')"/>today forward 5464 <input type="radio" name="searchLimits" value="beforeToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=beforeToday')" checked="checked"/>past dates 5465 <input type="radio" name="searchLimits" value="none" onchange="window.location.replace('{$search}&query={$query}&searchLimits=none')"/>all dates 5466 </xsl:when> 5467 <xsl:when test="/bedework/searchResults/searchLimits = 'none'"> 5468 <input type="radio" name="searchLimits" value="fromToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=fromToday')"/>today forward 5469 <input type="radio" name="searchLimits" value="beforeToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=beforeToday')"/>past dates 5470 <input type="radio" name="searchLimits" value="none" onchange="window.location.replace('{$search}&query={$query}&searchLimits=none')" checked="checked"/>all dates 5471 </xsl:when> 5472 <xsl:otherwise> 5473 <input type="radio" name="searchLimits" value="fromToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=fromToday')" checked="checked"/>today forward 5474 <input type="radio" name="searchLimits" value="beforeToday" onchange="window.location.replace('{$search}&query={$query}&searchLimits=beforeToday')"/>past dates 5475 <input type="radio" name="searchLimits" value="none" onchange="window.location.replace('{$search}&query={$query}&searchLimits=none')"/>all dates 5476 </xsl:otherwise> 5477 </xsl:choose> 5461 <form name="searchForm" method="post" action="{$search}"> 5462 Search: 5463 <input type="text" name="query" size="15"> 5464 <xsl:attribute name="value"><xsl:value-of select="/bedework/searchResults/query"/></xsl:attribute> 5465 </input> 5466 <input type="submit" name="submit" value="go"/> 5467 Limit: 5468 <xsl:choose> 5469 <xsl:when test="/bedework/searchResults/searchLimits = 'beforeToday'"> 5470 <input type="radio" name="searchLimits" value="fromToday"/>today forward 5471 <input type="radio" name="searchLimits" value="beforeToday" checked="checked"/>past dates 5472 <input type="radio" name="searchLimits" value="none"/>all dates 5473 </xsl:when> 5474 <xsl:when test="/bedework/searchResults/searchLimits = 'none'"> 5475 <input type="radio" name="searchLimits" value="fromToday"/>today forward 5476 <input type="radio" name="searchLimits" value="beforeToday"/>past dates 5477 <input type="radio" name="searchLimits" value="none" checked="checked"/>all dates 5478 </xsl:when> 5479 <xsl:otherwise> 5480 <input type="radio" name="searchLimits" value="fromToday" checked="checked"/>today forward 5481 <input type="radio" name="searchLimits" value="beforeToday"/>past dates 5482 <input type="radio" name="searchLimits" value="none"/>all dates 5483 </xsl:otherwise> 5484 </xsl:choose> 5485 </form> 5478 5486 </div> 5479 5487 Search Result
