vgritsenko    2003/12/08 07:17:02

  Modified:    src/webapp/stylesheets/system error2html.xslt
  Log:
  Increase stacktrace font. Replace &#13 with space in stacktrace.
  
  Revision  Changes    Path
  1.12      +2 -1      cocoon-2.1/src/webapp/stylesheets/system/error2html.xslt
  
  Index: error2html.xslt
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/webapp/stylesheets/system/error2html.xslt,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- error2html.xslt   3 Dec 2003 13:10:20 -0000       1.11
  +++ error2html.xslt   8 Dec 2003 15:17:02 -0000       1.12
  @@ -23,6 +23,7 @@
             p.message { padding: 10px 30px 10px 30px; font-weight: bold; 
font-size: 130%; border-width: 1px; border-style: dashed; border-color: 
#336699; }
             p.description { padding: 10px 30px 20px 30px; border-width: 0px 
0px 1px 0px; border-style: solid; border-color: #336699;}
             p.topped { padding-top: 10px; border-width: 1px 0px 0px 0px; 
border-style: solid; border-color: #336699; }
  +          pre { font-size: 120%; }
           </style>
           <script src="{$contextPath}/scripts/main.js" type="text/javascript"/>
         </head>
  @@ -95,7 +96,7 @@
          <span class="description"><xsl:value-of 
select="@error:description"/></span>
          <span class="switch" id="[EMAIL PROTECTED]:description}-switch" 
onclick="toggle('[EMAIL PROTECTED]:description}')">[show]</span>
          <pre id="[EMAIL PROTECTED]:description}" style="display: none">
  -         <xsl:value-of select="."/>
  +         <xsl:value-of select="translate(.,'&#13;',' ')"/>
          </pre>
         </p>
        </xsl:when>
  
  
  

Reply via email to