Author: ilya_shaikovsky
Date: 2009-08-27 11:25:07 -0400 (Thu, 27 Aug 2009)
New Revision: 15349
Added:
root/examples/trunk/components/core-demo/src/main/webapp/index.jsp
root/examples/trunk/components/core-demo/src/main/webapp/welcome.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-7752
Added: root/examples/trunk/components/core-demo/src/main/webapp/index.jsp
===================================================================
--- root/examples/trunk/components/core-demo/src/main/webapp/index.jsp
(rev 0)
+++ root/examples/trunk/components/core-demo/src/main/webapp/index.jsp 2009-08-27 15:25:07
UTC (rev 15349)
@@ -0,0 +1,7 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head></head>
+ <body>
+ <jsp:forward page="/welcome.jsf" />
+ </body>
+</html>
\ No newline at end of file
Added: root/examples/trunk/components/core-demo/src/main/webapp/welcome.xhtml
===================================================================
--- root/examples/trunk/components/core-demo/src/main/webapp/welcome.xhtml
(rev 0)
+++ root/examples/trunk/components/core-demo/src/main/webapp/welcome.xhtml 2009-08-27
15:25:07 UTC (rev 15349)
@@ -0,0 +1,45 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html
xmlns="http://www.w3.org/1999/xhtml"
+
xmlns:h="http://java.sun.com/jsf/html"
+
xmlns:f="http://java.sun.com/jsf/core"
+
xmlns:ui="http://java.sun.com/jsf/facelets">
+<h:head>
+</h:head>
+<h:body>
+<center>
+<h1>Welcome To RichFaces 4.x Core Demo</h1>
+<ul>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/support.jsf">a4j:ajax</h:outputLink>
+</li>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/button.jsf">a4j:commandButton</h:outputLink>
+</li>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/link.jsf">a4j:commandLink</h:outputLink>
+</li>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/log.jsf">a4j:log</h:outputLink>
+</li>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/mediaOutput.jsf">a4j:mediaOutput</h:outputLink>
+</li>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/outputPanel.jsf">a4j:outputPanel</h:outputLink>
+</li>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/push.jsf">a4j:push</h:outputLink>
+</li>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/function.jsf">a4j:jsFunction</h:outputLink>
+</li>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/status.jsf">a4j:status</h:outputLink>
+</li>
+<li>
+<h:outputLink
value="#{facesContext.externalContext.requestContextPath}/dynamicExecute.jsf">Server
side execute/render</h:outputLink>
+</li>
+</ul>
+</center>
+</h:body>
+</html>
\ No newline at end of file