Changeset 1293

Show
Ignore:
Timestamp:
02/15/07 16:57:11
Author:
johnsa
Message:

admin client: expose utc timezone fix link

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/deployment/resources/xsl/default/default/messages.xsl

    r1290 r1293  
    102102        Timezones successfully imported 
    103103      </xsl:when> 
     104      <xsl:when test="id='org.bedework.client.message.fixed.timezones'"> 
     105        Timezones successfully fixed 
     106      </xsl:when> 
    104107 
    105108      <xsl:when test="id='org.bedework.client.message.mailed.event'"> 
  • trunk/deployment/webadmin/webapp/resources/default/default/default.xsl

    r1246 r1293  
    155155  <xsl:variable name="timezones-initUpload" select="/bedeworkadmin/urlPrefixes/timezones/initUpload/a/@href"/> 
    156156  <xsl:variable name="timezones-upload" select="/bedeworkadmin/urlPrefixes/timezones/upload/a/@href"/> 
     157  <xsl:variable name="timezones-fix" select="/bedeworkadmin/urlPrefixes/timezones/fix/a/@href"/> 
    157158  <xsl:variable name="stats-update" select="/bedeworkadmin/urlPrefixes/stats/update/a/@href"/> 
    158159  <!-- authuser and prefs --> 
     
    669670          <li> 
    670671            <a href="{$timezones-initUpload}"> 
    671               Upload and replace system timezones 
     672              Manage system timezones 
    672673            </a> 
    673674          </li> 
     
    47044705  <!--+++++++++++++++ Timezones ++++++++++++++++++++--> 
    47054706  <xsl:template name="uploadTimezones"> 
    4706     <h2>Upload Timezones</h2> 
     4707    <h2>Manage Timezones</h2> 
     4708 
    47074709    <form name="peForm" method="post" action="{$timezones-upload}" enctype="multipart/form-data"> 
    47084710      <input type="file" name="uploadFile" size="40" value=""/> 
     
    47104712      <input type="submit" name="cancelled" value="Cancel"/> 
    47114713    </form> 
     4714 
     4715    <p> 
     4716      <a href="{$timezones-fix}">Fix Timezones</a> (recalculate UTC values)<br/> 
     4717      <span class="note">Run this to make sure no UTC values have changed due 
     4718      to this upload (e.g. DST changes).</span> 
     4719    </p> 
     4720 
    47124721  </xsl:template> 
    47134722