cbateman | fe3af80 | 2009-03-27 19:38:31 +0000 | [diff] [blame] | 1 | <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%><%@taglib
|
| 2 | uri="http://java.sun.com/jsf/core" prefix="f"%><%@taglib
|
| 3 | uri="http://com.foo/test" prefix="p"%><%@ page language="java"
|
| 4 | contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
|
| 5 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
| 6 | <html>
|
| 7 | <head>
|
| 8 | <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
| 9 | <title>Insert title here</title>
|
| 10 | </head>
|
| 11 | <body>
|
| 12 |
|
| 13 | <f:view>
|
| 14 | <p:tag1 grandParentAttr1="grandParentValue1">
|
rsrinivasan | 35ea6b7 | 2009-04-28 22:38:26 +0000 | [diff] [blame^] | 15 | <p:tag2 parentAttr1="parentValue1">
|
cbateman | fe3af80 | 2009-03-27 19:38:31 +0000 | [diff] [blame] | 16 | <p:tag3>
|
rsrinivasan | 35ea6b7 | 2009-04-28 22:38:26 +0000 | [diff] [blame^] | 17 | <h:commandButton attr1="value1"></h:commandButton>
|
cbateman | fe3af80 | 2009-03-27 19:38:31 +0000 | [diff] [blame] | 18 | </p:tag3>
|
| 19 | </p:tag2>
|
| 20 | </p:tag1>
|
| 21 | </f:view>
|
| 22 | </body>
|
| 23 | </html> |