+

Search Tips   |   Advanced Search

styles.jsp

 

<%@ page session="false" contentType="text/css;charset=ISO-8859-1" %> 

<%--

styles.jsp uses the @include JSP directive to include jsp fragments
which compiles these files into the servlet for styles.jsp. 

If you change these files,  "touch" the version
of styles.jsp which includes it to see your changes.

You can do this by editing styles.jsp and saving it.

Because the CSS does not change frequently, this JSP sets cache headers
to tell the browser not to reload this file for a number of days to improve
performance. During development of the CSS, this behavior means you
must clear your browser cache every time you modify the CSS. To make
development easier, comment out the include of styles_cacheSettings.jspf
below. Then clear your browser cache one more time. At that point,
the browser should call this file on every page refresh.

--%> 

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> 
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c-rt" %> 
<%@ taglib uri="/WEB-INF/tld/resolver-v6.tld" prefix="portal-resolver"%> 

<%-- 
   Required so that the request parameters will be properly decoded when 
   request.getParameter() is called (we encode use UTF-8) 
--%> 

<% pageContext.getRequest().setCharacterEncoding("UTF-8"); %> 

<%@ include file="./styles_cacheSettings.jspf" %> 
<%@ include file="./styles_rules.jspf" %> 
<%@ include file="./styles_theme.jspf" %> 
<%@ include file="./styles_portlet.jspf" %> 
<%@ include file="./styles_help.jspf" %> 
<%@ include file="./styles_oob.jspf" %> 
<%@ include file="./styles_ibm.jspf" %> 
<%@ include file="./styles_ibmportlet.jspf" %> 
<%@ include file="./styles_palette.jspf" %> 
<%@ include file="./styles_extensions.jspf" %>