[Pythonmac-SIG] recursion problem

Gordon Worley redbird@rbisland.cx
Mon, 11 Dec 2000 15:10:04 -0500


At 9:48 PM -0500 12/10/2000, Richard Gordon wrote:
><ul>Level0folder
>	<li>L0file
>	<li>L0file
>	<ul>Level1folder
>		<li>L1file
>		<ul>Level2folder
>			<li>L2file
>			<li>L2file
>		</ul>
>		<li>L1file
>	</ul>
></ul>

You have made an error in your HTML.  UL is a container, and those 
can contain other elements, but not actual text to be displayed.  The 
code should read something like this:

<ul>
	<li>Level0folder
	<ul>
		<li>L0file
		<li>L0file
		<li>Level1folder
		<ul>
			<li>L1file
			<li>Level2folder
			<ul>
				<li>L2file
				<li>L2file
			</ul>
			<li>L1file
		</ul>
	</ul>
</ul>

This may be the source of your problem, depending on the rendering 
engine you use.  Even if it is not, good HTML is always important.
-- 
Gordon Worley
http://www.rbisland.cx/
mailto:redbird@rbisland.cx
PGP:  C462 FA84 B811 3501 9010  20D2 6EF3 77F7 BBD3 B003