[Zope] KnowledgeKit

Larry Chuon LarryC@indexstock.com
Wed, 20 Jun 2001 17:07:08 -0400


Hi,

Thanks for making this product available.  I have a quick question.  The FAQ
index_html contains the code below.  What causes the posting to randomly
rotate?  How do you make it constant?  Any help is greatly appreciated.

Larry

<dtml-var site_header>
<table cellpadding=5 cellspacing=5>
	<tr>	
		<td>
			<b>Current FAQ Position:</b><dtml-var breadcrumbs>
		</td>
	</tr>
	<tr>
		<td>
			<h3>Contents By Section</h3>
			<dtml-in Sections>
				<dtml-let  section=sequence-item>
				<h4><dtml-var section></h4>
				<dtml-in "PARENTS[0].objectValues('FAQ
Entry')" sort=Section>
					<dtml-if expr="Section == section">
						<dtml-if approved>
							<li class="small">
<a href=<dtml-var absolute_url>><dtml-var Question></a> <dtml-if
Author>&nbsp;&nbsp Submitted by <dtml-var Author></dtml-if>
							
						</dtml-if>
					</dtml-if>
				</dtml-in>
				</dtml-let>
			</dtml-in>
		</td>
	</tr>

<dtml-if UserSupport>

	<tr>
		<td>
			<p><b> This FAQ supports User FAQ Additions</b>
			<br> Click <a href=New_Entry> here </a> to add an
entry.
		</td>
	</tr>
</dtml-if>

</table>
<dtml-var site_footer>