Hey guys, I'm having a problem. I really like the slate skin and I highly prefer it over the default one. So, I remembered using it in a previous application. But now and with version 1.6 installed, it doesn't work anymore. Below you can see the contents of my main.jsp file. What does the 1.5.0 mean behind the stylesheet links? I thought, maybe it had something to do with the FS ver, but changing it to 1.6.0 didn't solve the problem.
<%@ page import = "java.util.Map" %>
<%@ page import = "org.apache.commons.lang3.StringEscapeUtils" %>
<%
String ua = request.getHeader( "User-Agent" );
if (ua != null && ua.indexOf( "Firefox/" ) != -1) {
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><%
}
response.setHeader("X-Frame-Options", "SAMEORIGIN");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<link rel="stylesheet" type="text/css" href="js/ext-2.2/resources/css/ext-all.css?v=1.5.0" />
<link rel="stylesheet" type="text/css" href="css/style.css?v=1.5.0" />
<link rel="stylesheet" type="text/css" href="css/skins/slate.css?v=1.5.0" />
<title> </title>
</head>
<body tabindex="-1">
<script type="text/javascript" src="js/fs-all.js?v=1.5.0"></script>
<%
Map<String, String[]> parameters = request.getParameterMap();
StringBuffer bfr = new StringBuffer();
int i=0;
for(String parameter : parameters.keySet()) {
if (i>0){
bfr.append("&");
}
String[] values = parameters.get(parameter);
bfr.append(StringEscapeUtils.escapeHtml4(parameter+"="+values[0]));
i++;
}
%>
<script type="text/javascript">
window.requestParameters = "<%=bfr.toString()%>";
</script>
</body>
</html>
Aside from that, I recently experienced serious issues with the "Internal Server Error" HTML error message.. I mean, okay, it's obviously not that serious because reloading the web page (several times in some cases) always solves the problem.. But still, it's very annoying to read this message almost everytime I start any Formspider application (doesn't matter if it's one developed by myself or the FS IDE).. This problem also occurs since my update to 1.6.0 - with 1.5 I didn't have these problems..
asked
05 Dec '13, 05:20
Mazzel
31●7●17
accept rate:
0%