Problem serving static files in Google app engine
Hi,
I am using the google app engine plugin, I am facing a problem with serving static files. My conf is like this:
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>yourscrum</application>
<version>1</version>
<sessions-enabled>true</sessions-enabled>
<static-files>
<include path="/css/ui-lightness/jquery-ui-1.7.2.custom.css"/>
<include path="/**/*.css" />
<include path="/**/*.png" />
<include path="/**/*.js" />
</static-files>
</appengine-web-app>
Than in my themes.jsp I have the following:
<link type="text/css" href="css/ui-lightness/jquery-ui-1.7.2.custom.css" rel="stylesheet"/>
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
The problem is that the actual request for the css gets a 302 and a redirect to a different url, which seems to be a directory. Check the atachment
I hope someone has an idea what I am doing wrong
thanks Jettro
Attachment(s):
Picture 1.png
Please sign in to leave a comment.