blob: 082a2f0ed3c102b6f9185323361e148f879dd307 [file] [log] [blame]
<!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:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:t="http://myfaces.apache.org/tomahawk"
xmlns:grv="http://myfaces.apache.org/groovy"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<head>
<title>Hello World</title>
</head>
<body>
<ui:composition template="/template.xhtml">
<ui:define name="body">
<h1>
<ui:insert name="title">Ext-Scripting Groovy Blog Example</ui:insert>
</h1>
<h:panelGroup styleClass="stdBoxBig" style="color:black;">
<h2>In this example you can blog simply by entering text in the fields below and send submit</h2>
<p>You can change the blogging artifacts on the fly, all the sources can be found under
<b>WEB-INF/java/org/apache/myfaces/javaloader/groovy/</b> in your deployment directory</p>
</h:panelGroup>
<h:form id="form">
<div class="left" style="margin-top: 3px;">
<h:panelGrid id="grid" columns="1" styleClass="stdBox">
<h:outputText id="title1" styleClass="title" value="#{blogView.title}"/>
<h:outputText id="title11" styleClass="title1" value="#{blogView.title1}"/>
<hr/>
<h:panelGrid columns="2" columnClasses="label, input">
<h:outputText value="First Name"/>
<h:inputText value="#{blogView.firstName}"/>
<h:outputText value="Last Name"/>
<h:inputText value="#{blogView.lastName}"/>
<h:outputText value="Topic of entry"/>
<h:inputText value="#{blogView.topic}"/>
</h:panelGrid>
<h:panelGrid columns="2" columnClasses="label, input">
<h:outputText styleClass="label" value="Content"/>
<h:inputText value="#{blogView.content}"/>
</h:panelGrid>
<hr/>
<h:commandButton styleClass="btn" action="#{blogView.addEntry}" value="Add Blog Entry">
<f:ajax execute="@form" render="content" />
</h:commandButton>
</h:panelGrid>
</div>
<h:panelGrid id="content" columns="1" styleClass="right">
<c:forEach items="#{blogService.blogEntries}" var="item">
<h:panelGrid columns="1" styleClass="messageBox">
<h:panelGroup styleClass="topic">
<h:outputLabel styleClass="label" value="Topic"/>
<h:outputText value="#{item.topic}"/>
</h:panelGroup>
<h:panelGroup styleClass="content">
<h:outputLabel styleClass="label" value="Content"/>
<h:outputFormat escape="false" value="#{item.content}"/>
</h:panelGroup>
</h:panelGrid>
<br/>
</c:forEach>
</h:panelGrid>
</h:form>
</ui:define>
</ui:composition>
</body>
</html>