I had just build a Qooxdoo applications but trouble calling it in
web2py. it works all fine in running locally.
here is how i put it :
in controller: /sExtract/default/ft
def ft():
return dict(test="ok")
in view:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>FastTract1.0</title>
<script type="text/javascript"
src="/sExtract/static/ft/script/ft_ui.js"></script>
</head>
<body></body>
</html>
and i get the blank page with :js error -
i.body is null
http://localhost:8080/sExtract/static/ft/script/ft_ui.js
Line 3816
When i run from file system it all went ok. Why after putting into
web2py it dont work?