conf = {'/js/AC_RunActiveContent.js':
{'tools.staticfile.on': True,
'tools.staticfile.filename':
os.path.join(current_dir, 'data', 'scripts', 'AC_RunActiveContent.js')}}
And later
<script src="AC_RunActiveContent.js" language="javascript"></script>
My bet is the latter produces a 404. Try changing the line to:
<script src="/js/AC_RunActiveContent.js" language="javascript"></script>
Oh, and also your HTML could use a <HEAD>
element.
ddaa
2009-12-17 22:24:14