123456789101112131415161718192021222324252627 |
- <%@ page import="com.techempower.*,
- com.techempower.gemini.*,
- com.techempower.gemini.form.*,
- com.techempower.gemini.messaging.*,
- com.techempower.gemini.jsp.*,
- com.techempower.helper.*,
- hello.*,
- hello.accounts.entity.*,
- java.math.*,
- java.text.*,
- java.util.*" %><%@ page session="false" %><%
- //
- // Sets up variables for use on all JSP pages.
- //
- GhContext context = (GhContext)request.getAttribute("Context");
- GhRequestVariables vars = new GhRequestVariables(context);
- // Note that default stylesheets and scripts that are to be included on
- // -all- pages should be defined in GhInfrastructure's
- // constructor. Page-scope stylesheets and scripts should be defined by
- // overloading the jspInit function to call sas.addScript and sas.addSheet.
- // Request-scope scripts and sheets can be defined by using vars.sas.
- // However, request-scope scripts and sheets are quite uncommon.
- %>
|