You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2006/09/09 01:10:39 UTC

svn commit: r441686 - /myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/titlepanejsfonly.jsp

Author: werpu
Date: Fri Sep  8 16:10:39 2006
New Revision: 441686

URL: http://svn.apache.org/viewvc?view=rev&rev=441686
Log:
added the title pane example

Added:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/titlepanejsfonly.jsp

Added: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/titlepanejsfonly.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/titlepanejsfonly.jsp?view=auto&rev=441686
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/titlepanejsfonly.jsp (added)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/titlepanejsfonly.jsp Fri Sep  8 16:10:39 2006
@@ -0,0 +1,66 @@
+<%@ page session="false" contentType="text/html;charset=utf-8"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
+<%@ taglib uri="http://myfaces.apache.org/sandbox" prefix="s"%>
+
+<html>
+	<head>
+		<meta HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=UTF-8" />
+		<title>MyFaces - the free JSF Implementation</title>
+
+		<link rel="stylesheet" type="text/css" href="css/basic.css" />
+		<style type="text/css">
+    html, body{	
+		width: 100%;	/* make the body expand to fill the visible window */
+		height: 100%;
+		overflow: hidden;	/* erase window level scrollbars */
+		padding: 0 0 0 0;
+		margin: 0 0 0 0;
+    }
+	.label {
+		background: grey;
+		height: 20px;
+		border-top: 1px solid black;
+		border-bottom: 1px solid black;
+	}
+	
+	.content {
+		background: #eeeeee;
+	}
+
+   </style>
+	</head>
+
+	<!--
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+//-->
+
+
+	<body>
+		<f:view>
+			<h:panelGroup style="width: 100%; height: 100%;">
+				<s:layoutingTitlePane id="titlepane" label="titlepane" containerNodeClass="content" labelNodeClass="label" >
+						<h:outputFormat value="bla bla bla bla bla bla "></h:outputFormat>
+						<h:outputFormat value="bla bla bla bla bla bla "></h:outputFormat>
+				</s:layoutingTitlePane>
+			</h:panelGroup>
+
+		</f:view>
+		<%@ include file="../inc/page_footer.jsp"%>
+	</body>
+</html>