<html>
<head>
<title> Test of Infinite Recursion </title>
</head>

<body>
<h2> Test of Infinite Include Recursions </h2>

<blockquote>
  <p>This file, <tt>recurs_test.shtml</tt> includes the single file 
  <tt>recurs.shtml</tt>. This included file in turn includes three
  other files
  <ol>
    <li><tt>recurs2.shtml</tt> (which does not include anything else)
    <li><tt>recurs.shtml</tt> (which includes itself)
    <li><tt>recurs_test.shtml</tt> (which includes recurs.shtml, which imples
        infinite recursion)
  </ol>
  Items (2) and (3) must be disallowed, or else infinite recursion will occur.
</blockquote>

<hr size=6 noshade>
<b>Beginning of <i>recurs_test.shtml</i> ....</b>

<!--#config errmsg="Error in recurs_test.shtml -- Unable to parse scripts"  -->

<P> Check to make sure server does not allow infinite looping of inclusions:

<!--#include file="recurs.shtml" -->

<b>End of <i>recurs_test.shtml</i> ....</b>

<hr size=6 noshade>
</body>
</html>

