home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-cocoon-addon-1.4.9-installer.exe / welcome.jsp < prev    next >
Encoding:
Text File  |  2004-07-12  |  2.1 KB  |  65 lines

  1. <!--
  2.   Copyright 1999-2004 The Apache Software Foundation
  3.  
  4.   Licensed under the Apache License, Version 2.0 (the "License");
  5.   you may not use this file except in compliance with the License.
  6.   You may obtain a copy of the License at
  7.  
  8.       http://www.apache.org/licenses/LICENSE-2.0
  9.  
  10.   Unless required by applicable law or agreed to in writing, software
  11.   distributed under the License is distributed on an "AS IS" BASIS,
  12.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.   See the License for the specific language governing permissions and
  14.   limitations under the License.
  15. -->
  16. <%@ page import="java.util.*" %>
  17. <%
  18.     response.setHeader("Expires", "0");
  19. %>
  20.  
  21. <html>
  22.  
  23. <head>
  24. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  25. <title>JSPreader test</title>
  26. <style type="text/css">
  27. BODY {background-color: #FFFFFF; color: #000066; font-family: Verdana, Helvetica, Arial; }
  28. </style>
  29. </head>
  30.  
  31. <body>
  32. <h3>This is a dynamic output from the JSPReader</h3>
  33. <h4>Current time: <%=new Date()%></h4>
  34. <hr noshade size="1">
  35. <br>
  36. <table width="75%" border="1" cellspacing="0" cellpadding="5">
  37.   <tr bgcolor="#990000"> 
  38.     <th colspan="2" align="left"><font color="#FFFFFF">JSP Usage Samples</font></th>
  39.   </tr>
  40.   <tr> 
  41.     <td width="25%"><a href="hello.jsp">hello.jsp</a></td>
  42.     <td width="56%">Displays a hello page using JSPGenerator to get XML from a 
  43.       JSP then transformes it to HTML using a stylesheet.</td>
  44.   </tr>
  45.   <tr> 
  46.     <td width="25%"><a href="hello.xml">hello.xml</a></td>
  47.     <td width="56%">The same page serialized as XML (without transformation).</td>
  48.   </tr>
  49.   <tr> 
  50.     <td width="25%"><a href="hello.htm">hello.htm</a></td>
  51.     <td width="56%"> 
  52.       <p>The same page serialized as HTML and served by sitemap through the JSPReader.</p>
  53.     </td>
  54.   </tr>
  55.   <tr> 
  56.     <td width="25%"><a href="welcome.htm">welcome.htm</a></td>
  57.     <td width="56%">This page. Direct HTML output from a JSP page served by sitemap 
  58.       through the JSPReader.</td>
  59.   </tr>
  60. </table>
  61. <p><small><a href=".."><br>
  62.   Back to samples</a></small> </p>
  63. </body>
  64. </html>
  65.