Changeset 234

Show
Ignore:
Timestamp:
02/28/06 16:37:48
Author:
johnsa
Message:

added some error message traps; also commented out admin user extra field info (name, etc) that is not held internally

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/calendar3/deployment/webadmin/webapp/resources/default/default/default.xsl

    r233 r234  
    23872387          </td> 
    23882388        </tr> 
    2389         <tr> 
     2389        <!--<tr> 
    23902390          <td class="optional"> 
    23912391            Email: 
     
    24312431            <span class="fieldInfo"></span> 
    24322432          </td> 
    2433         </tr> 
     2433        </tr>--> 
    24342434      </table> 
    24352435      <br /> 
  • trunk/calendar3/deployment/webadmin/webapp/resources/default/default/errors.xsl

    r225 r234  
    136136        You must remove the subscription from this view before deleting.</p> 
    137137      </xsl:when> 
     138      <xsl:when test="id='org.bedework.error.timezones.readerror'"> 
     139        <p>Timzone error: could not read file</p> 
     140      </xsl:when> 
    138141      <xsl:when test="id='org.bedework.client.error.nosuchuserid'"> 
    139         Not found: there is no user identified by the id <em><xsl:value-of select="param"/></em
     142        <p>Not found: there is no user identified by the id <em><xsl:value-of select="param"/></em></p
    140143      </xsl:when> 
    141144      <xsl:when test="id='org.bedework.client.error.usernotfound'"> 
    142145        Not found: the user <em><xsl:value-of select="param"/></em> was not found 
     146      </xsl:when> 
     147      <xsl:when test="id='edu.rpi.sss.util.error.exc'"> 
     148        Utility package error: <em><xsl:value-of select="param"/></em> 
    143149      </xsl:when> 
    144150      <xsl:otherwise> 
  • trunk/calendar3/webadmin/war/WEB-INF/struts-config.xml

    r233 r234  
    436436    </action> 
    437437 
     438    <!-- on update, pass back through fetch action to refresh --> 
    438439    <action    path="/syspars/update" 
    439440               type="org.bedework.webadmin.system.UpdateSysparsAction" 
     
    441442               scope="session" 
    442443               validate="false"> 
    443       <forward name="continue" path="/syspars/show.rdo" redirect="true" /> 
     444      <forward name="continue" path="/syspars/fetch.do" redirect="true" /> 
    444445    </action> 
    445446