[cvs] eforum commit by ppilgrim: Register in CVS
JCorporate Ltd
jcorp at jcorporate.com
Sat Jun 18 10:07:39 UTC 2005
Log Message:
-----------
Register in CVS
Added Files:
-----------
eforum/src/expresso/components/eforum/classic/templates:
standardLayout.jsp
Revision Data
-------------
--- /dev/null
+++ src/expresso/components/eforum/classic/templates/standardLayout.jsp
@@ -0,0 +1,135 @@
+<%--
+===========================================================================
+EFORUM STANDARD LAYOUT DESIGN
+===========================================================================
+
+Created by Peter Pilgrim, Wed Mar 31 01:34:09 BST 2004
+Unless you know want you are doing ...
+
+ +-------------------+
+ -+- DO NOT EDIT! -+-
+ +-------------------+
+
+Wed Aug 20 17:45:07 GMT Daylight Time 2003
+
+--%>
+
+<%@ page language="java" errorPage="/expresso/error.jsp" %>
+<%@ page info="eForum Layout Design: A Tiles template" %>
+<%@ taglib uri="/WEB-INF/tld/expresso.tld" prefix="expresso" %>
+<%@ taglib uri="/WEB-INF/tld/struts-tiles.tld" prefix="tiles" %>
+<%@ taglib uri="/WEB-INF/tld/struts-logic.tld" prefix="purelogic" %>
+<%@ taglib uri="/WEB-INF/tld/struts-bean.tld" prefix="purebean" %>
+<%@ taglib uri="/WEB-INF/tld/struts-html.tld" prefix="purehtml" %>
+<%@ taglib uri="/WEB-INF/tld/c.tld" prefix="c" %>
+<%@ taglib uri="/WEB-INF/tld/c-rt.tld" prefix="c_rt" %>
+<%@ taglib uri="/WEB-INF/tld/fmt.tld" prefix="fmt" %>
+
+<!-- $Id: standardLayout.jsp,v 1.1 2005/06/18 10:07:37 ppilgrim Exp $ -->
+<html:html>
+<head>
+<title><tiles:getAsString name="page-title" /></title>
+
+<%--
+============================================================
+ Tiles Attributes
+============================================================
+
+`javascript'
+ specifies optional JavaScript that is inserted into the HTML
+ Head element
+
+`onload-javascript'
+ specifies optional JavaScript that is inserted into the HTML
+ Head element, specifically to handle webpage onload logic
+
+`bodytaginsert'
+ specifies optional content to insert into the HTML Body tag.
+ This attribute allows the `onload' and/or `unload' attribute
+ to be defined externally of the template.
+
+`header'
+ Specifies the header content of the page
+
+`body-content'
+ Specifies the body content of the page
+
+`footer'
+ Specifies the footer content of the page
+
+`search-content'
+ Specifies the search content of the page
+
+--%>
+
+
+<%-- Optional area to insert arbitary javascript --%>
+<tiles:insert attribute="javascript" ignore="true" />
+
+<%-- Optional area to insert arbitary onload javascript --%>
+<tiles:insert attribute="onload-javascript" ignore="true" />
+
+<%-- Include the stylesheets --%>
+<expresso:stylesheet />
+<expresso:stylesheet component="eforum" />
+
+<%-- Load Jim Salyer's open source DHTML Menu --%>
+<script type="text/javascript" src='<c:url value="/expresso/components/eforum/javascript/jimmenu-v5.3/includes/browser.jsp" />' >
+
+/***********************************************
+* Jim's DHTML Menu v5.3- © Jim Salyer (jsalyer at REMOVETHISmchsi.com)
+* Visit Dynamic Drive: http://www.dynamicdrive.com for script and instructions
+* This notice must stay intact for use
+***********************************************/
+
+</script>
+<%-- Load the DHTML Menu configuration --%>
+<script type="text/javascript" src='<c:url value="/expresso/components/eforum/javascript/menu-config.jsp" />'></script>
+<html:base/>
+
+</head>
+
+<%-- The tiles "bodytaginsert" is a hook to allow "onPageLoad()" javascript to be entered --%>
+<body class="eforum-portalBackground" marginwidth="0" marginheight="0" leftmargin="10" rightmargin="10" topmargin="10" bottommargin="10" <tiles:getAsString name="bodytaginsert" ignore="true" /> >
+
+ <%-- <tiles:insert attribute="bodytaginsert" ignore="true"/> --%>
+<table border="1" cellspacing="0" cellpadding="0" width="100%" >
+ <tr class="eforum-portalHeader" >
+ <td align="left" valign="top" >
+ <!-- Template: Header Page -->
+ <tiles:insert attribute="header" />
+ </td>
+ <td align="left" valign="top"> <!-- Reserved for future --> </td>
+ <td width="100%" align="left" valign="top"> <!-- Extendable Area --> </td>
+ <td align="right" valign="top" >
+ <!-- Template: Search Content Page -->
+ <tiles:insert attribute="search-content" />
+ </td>
+ </tr>
+ <tr>
+ <td colspan="4" height="24" >
+ <!-- Template: Menu Page -->
+ <tiles:insert attribute="menu" />
+ </td>
+ </tr>
+ <tr>
+</table>
+
+<br>
+<!-- Template: Body Content Page -->
+<tiles:insert attribute="body-content" />
+<br>
+<br>
+
+<table border="0" cellspacing="0" cellpadding="0" width="100%" >
+ <tr>
+ <td>
+ <!-- Template: Footer Page -->
+ <tiles:insert attribute="footer" />
+ </td>
+ </tr>
+</table>
+
+</body>
+</html:html>
+<!-- Template: End -->
More information about the cvs
mailing list