Listing of program /html/rsp/rsptest1.rsp
<?rexx
/*-- RSP ---------------------------------------------------------------------*/
/* */
/* Module: rsptest1.rsp */
/* */
/* Version: 1.1.1 */
/* */
/* Author: W. David Ashley */
/* */
/* Description: Test RSP page. Simple RSP test page. */
/* */
/* Copyright (C) International Business Machines Corporation and others. */
/* All Rights Reserved. */
/* */
/* This software is subject to the terms of the Common Public License. You */
/* must accept the terms of this license to use this software. Refer to */
/* the file CPLv1.0.htm included in this package for more information. */
/* */
/* The program is provided "as is" without any warranty express or implied, */
/* including the warranty of non-infringement and the implied warranties of */
/* merchantibility and fitness for a particular purpose. IBM will not be */
/* liable for any damages suffered by you as a result of using the Program. */
/* In no event will IBM be liable for any special, indirect or consequential */
/* damages or lost profits even if IBM has been advised of the possibility of */
/* their occurrence. IBM will not be liable for any third party claims */
/* against you. */
/* */
/* Modifications: */
/* */
/* Date Author Description */
/* ---------- ----------- --------------------------------------------------- */
/* 2002/06/01 WD Ashley v1.1.0 Initial Public Release */
/* 2002/06/30 WD Ashley v1.1.1 Changed the license reference only. */
/* */
/*----------------------------------------------------------------------------*/
?>
<html>
<head>
<title>RSP Test Page</title>
<link rel="stylesheet" type="text/css" href="/styles/hhstyle.css">
<link rel="SHORTCUT ICON" href="/imglib/sigles/favicon.ico">
</head>
<body style="margin:12px">
<center><img border=0 src=/imglib/sigles/powrexx2.gif></center>
<center><h1>RSP Test Page</h1></center>
<p>This is some straight HTML text in the RSP file.</p>
<p>The following time stamp is produced by REXX using the short tag form.</p>
<pre>
<?rexx
say date() time()
?>
</pre>
<p>This is more straight HTML text in the RSP file.</p>
<p>The following time stamp is produced by REXX using the long form
of the SCRIPT tag.</p>
<pre>
<script type="rexx">
say date() time()
</script>
</pre>
<p>The following time stamp is produced by REXX using the long depricated form
of the SCRIPT tag.</p>
<pre>
<script language="rexx">
say date() time()
</script>
</pre>
<p>This is more straight HTML text in the RSP file.</p>
<p><a href="/cgi-bin/showprog.cri?/html/rsp/rsptest1.rsp">See the RSP page</a>
<p><a href=/rsp/>back to R.S.P. index</a>
</body>
</html>